* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #051b2f;
    --bg-mid: #0b3458;
    --accent: #ffd447;
    --accent-hover: #ffe27e;
    --text: #f4f8ff;
    --text-soft: #d8e6f7;
    --card-bg: rgba(5, 27, 47, 0.78);
    --border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--bg-dark);
    line-height: 1.65;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

section {
    position: relative;
    padding: 72px 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 27, 47, 0.7) 0%, rgba(5, 27, 47, 0.35) 100%);
}

.hero {
    min-height: 90vh;
    display: grid;
    place-items: center;
    text-align: center;
    background-image: url("https://magazine.zarpo.com.br/wp-content/uploads/2015/04/los-roques_zarpo.jpg");
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.logo {
    max-height: 62px;
    margin-bottom: 20px;
}

.kicker {
    letter-spacing: 0.18em;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-text {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: var(--text-soft);
    margin-bottom: 28px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #1d2530;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.video-section {
    background: linear-gradient(rgba(7, 36, 60, 0.78), rgba(7, 36, 60, 0.88)),
        url("https://www.cosasdeviajes.com/wp-content/uploads/sites/10/2024/08/caribe-venezolano.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
}

h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.7rem);
    margin-bottom: 14px;
}

.video-section p {
    color: var(--text-soft);
    margin-bottom: 24px;
}

.video-wrapper {
    width: min(420px, 92vw);
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.message-section {
    background-image: url("https://images.unsplash.com/photo-1681322103210-2f8170f86f35?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.message-card {
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: clamp(24px, 4vw, 42px);
    backdrop-filter: blur(2px);
}

.message-card h2 {
    margin-bottom: 18px;
    color: #fff;
}

.message-card p {
    margin-bottom: 16px;
    color: var(--text-soft);
}

.pricing-section {
    background: linear-gradient(rgba(7, 36, 60, 0.82), rgba(7, 36, 60, 0.9)),
        url("https://images.unsplash.com/photo-1603201667141-f8ea3634f8b3?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.pricing-card {
    max-width: 620px;
    margin: 24px auto 0;
    padding: clamp(22px, 4vw, 34px);
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card-bg);
}

.pricing-jet-image {
    margin: 0 auto 20px;
}

.label {
    color: var(--text-soft);
    margin-bottom: 8px;
}

.price {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.coupon,
.discount,
.deadline {
    margin-bottom: 12px;
    color: var(--text-soft);
}

.pix-line {
    color: var(--text-soft);
    margin-bottom: 6px;
}

.pix-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.btn-block {
    width: 100%;
    margin-top: 12px;
}

.footer {
    background: #041423;
    text-align: center;
    padding: 36px 0 44px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 12px;
}

.footer p {
    color: #b4c8de;
    margin-bottom: 6px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    section {
        padding: 52px 0;
    }

    .hero {
        min-height: 80vh;
    }
}
