/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 72vh;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 130px;
}

/* --- HERO VIDEO --- */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 10, 24, 0.4), rgba(2, 10, 24, 0.88));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--main-white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #22d3ee;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 5vw, 3.9rem);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 14px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 760px;
    margin: 0 auto;
    color: #dbe7ff;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-actions .btn-contact {
    padding: 12px 22px;
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-pill);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    font-weight: 600;
    backdrop-filter: blur(2px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* --- ÁREA DAS OFERTAS (Overlap / Efeito de Subida) --- */
.ofertas-preview {
    position: relative;
    z-index: 10;
    background-color: var(--main-white); 
    margin-top: -36px; /* Mantém conexão com a hero sem esconder a próxima seção */
    border-radius: 40px 40px 0 0;
    padding: 78px 5%;
    text-align: center;
    box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: #d7e6ff;
}

.scroll-hint .arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid #d7e6ff;
    border-bottom: 2px solid #d7e6ff;
    transform: rotate(45deg);
    animation: hintBounce 1.5s infinite;
}

@keyframes hintBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(4px, 4px); }
}

.tagline {
    color: var(--accent-teal-green);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.destaque-texto-h2 {
    color: #0e2b61;
    background-color: #f4f7ff;
    display: inline-block;
    padding: 15px 26px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 31, 63, 0.12);
    border: 1px solid #e4ebfb;
    font-size: clamp(1.25rem, 3.2vw, 2.05rem);
    font-weight: 800;
    margin-bottom: 42px;
}

/* --- CONTAINER DOS CARDS --- */
.pista-cards {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

/* --- ESTRUTURA DO CARD --- */
.card-oferta {
    background: #ffffff;
    width: 320px;
    border-radius: 20px;
    border: 1px solid #dae4fb;
    padding-bottom: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    flex: 0 1 320px; 
}

.card-oferta:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 38px rgba(16, 44, 93, 0.12);
    border-color: #b8ccff;
}

.card-highlight {
    border: 1px solid #8db0ff;
    box-shadow: 0 10px 26px rgba(43, 111, 255, 0.15);
}

.card-header-destaque {
    background: linear-gradient(180deg, #f7f9ff, #edf2ff);
    width: 100%;
    padding: 22px 15px;
    border-bottom: 1px solid #dae4fb;
    text-align: center;
}

.tag-plano {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #0f2552;
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.card-header-destaque h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #0f2552;
    font-weight: 800;
}

.descricao-plano {
    margin-top: 7px;
    color: #52688d;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.card-body {
    padding-top: 6px;
}

.card-price {
    text-align: center;
}

.currency {
    display: block;
    margin-top: 12px;
    font-size: 0.82rem;
    color: #5f7398;
    font-weight: 600;
}

.amount {
    font-size: 2rem;
    font-weight: 900;
    color: #1d4fd6;
    margin: 6px 0 2px;
}

.period {
    display: block;
    font-size: 0.85rem;
    color: #61759a;
    margin-bottom: 8px;
}

.recursos-lista {
    list-style: none;
    padding: 0;
    margin: 10px 25px 30px 25px;
    flex-grow: 1;
}

.recursos-lista li {
    padding: 12px 0;
    border-bottom: 1px solid #edf1fa;
    color: #52688a;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-card-contratar {
    align-self: center; 
    background: linear-gradient(120deg, #2b6fff, #26d6e9);
    color: var(--main-white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: transform 0.22s ease, filter 0.22s ease;
    width: fit-content;
}

.btn-card-contratar:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .hero-section {
        min-height: 75vh;
        padding-top: 118px;
    }

    .hero-content p {
        max-width: 92%;
    }

    .destaque-texto-h2 {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .tagline {
        font-size: 0.72rem;
        letter-spacing: 1.4px;
    }

    .destaque-texto-h2 {
        font-size: 1.45rem;
        line-height: 1.3;
        font-weight: 800;
        margin-bottom: 28px;
    }

    .card-header-destaque h3 {
        font-size: 1.05rem;
    }

    .descricao-plano {
        font-size: 0.76rem;
    }

    .recursos-lista li {
        font-size: 0.88rem;
        line-height: 1.45;
    }
}