* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #092654;
    background: #f4f7fb;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.eyebrow {
    color: #ff7a00;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.logo {
    color: white;
    font-size: 28px;
    font-weight: 900;
}

.logo span,
h1 span,
h2 span {
    color: #ff7a00;
}


/* HERO */

.hero {
    min-height: 90vh;
    padding: 25px 8%;
    color: white;

    background:
        linear-gradient(110deg, rgba(3, 17, 42, .97), rgba(3, 17, 42, .55)),
        url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&w=1800&q=85");

    background-size: cover;
    background-position: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 850px;
    padding: 150px 0 100px;
}

.hero-content h1 {
    font-size: clamp(55px, 9vw, 110px);
    line-height: .92;
}

.hero-content > p:not(.eyebrow) {
    max-width: 600px;
    margin: 25px 0;

    color: #d1deeb;
    line-height: 1.7;
}

.cta {
    display: inline-block;

    padding: 19px 28px;
    border-radius: 13px;

    background: #ff7a00;
    color: white;

    font-size: 11px;
    font-weight: 900;
}

.pulse {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


/* SEÇÕES */

.section {
    padding: 90px 8%;
    text-align: center;
}

.section h2,
.offer h2,
.reviews h2 {
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1.05;
}


/* VÍDEO PRINCIPAL */

.videos {
    background: white;
    padding-top: 55px;
    padding-bottom: 55px;
}

.video-principal {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.video-principal video {
    display: block;
    width: 100%;
    max-height: 520px;

    margin: 0 auto;

    border-radius: 22px;
    background: #061a42;

    object-fit: contain;
}


/* OFERTA */

.offer {
    padding: 90px 8%;
    text-align: center;

    background: #061a42;
    color: white;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;

    margin: 35px 0;
}

.countdown div {
    min-width: 120px;
    padding: 20px;

    background: white;
    color: #092654;

    border-radius: 18px;
}

.countdown strong {
    display: block;
    color: #e60000;

    font-size: 45px;
    font-weight: 900;
}

.countdown small {
    color: #ff7a00;
    font-size: 9px;
    font-weight: 900;
}


/* VAGAS */

.vagas-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 16px 25px;

    background: white;
    border-radius: 16px;
}

.vagas-box span,
.vagas-box b {
    color: #092654;
    font-size: 11px;
    font-weight: 900;
}

.vagas-box strong {
    color: #ff0000;
    font-size: 42px;
    line-height: 1;

    animation: vagasPulse 1s infinite;
}

@keyframes vagasPulse {
    0%, 100% {
        transform: scale(1);
        color: #ff0000;
        text-shadow:
            0 0 2px #ff0000;
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
    }
}
/* DEPOIMENTO */

.depoimento {
    background: #f4f7fb;
}

.video-depoimento {
    width: 100%;
    max-width: 600px;

    margin: 35px auto 0;
}

.video-depoimento video {
    width: 100%;
    max-height: 500px;

    border-radius: 22px;
    background: #061a42;
}


/* UNIDADES */

.units {
    background: white;
}

.units-row {
    display: flex;
    gap: 20px;

    margin-top: 45px;

    overflow-x: auto;
    padding-bottom: 15px;

    scroll-snap-type: x mandatory;
}

.unit-card {
    position: relative;

    min-width: 280px;
    height: 380px;

    border: 0;
    border-radius: 24px;

    overflow: hidden;

    cursor: pointer;
    scroll-snap-align: start;

    background: #092654;
}

.unit-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.unit-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(3, 15, 37, .98),
        rgba(3, 15, 37, .05)
    );
}

.unit-card div {
    position: absolute;
    z-index: 2;

    left: 25px;
    bottom: 25px;

    color: white;
    text-align: left;
}

.unit-card small,
.unit-card span {
    color: #ff7a00;
    font-size: 10px;
    font-weight: 900;
}

.unit-card h3 {
    font-size: 30px;
    margin: 8px 0 12px;
}


/* AVALIAÇÕES */

.reviews {
    padding: 80px 8%;
    background: #edf2f8;
    text-align: center;
}

.reviews-grid {
    max-width: 1100px;
    margin: 45px auto 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    position: relative;

    padding: 28px;

    background: white;
    border: 1px solid #e5eaf1;
    border-radius: 22px;

    text-align: left;

    box-shadow: 0 12px 35px rgba(9, 38, 84, .08);

    overflow: hidden;

    transition: .3s ease;
}

.review-card:hover {
    transform: translateY(-6px);

    border-color: #ff7a00;

    box-shadow: 0 18px 45px rgba(9, 38, 84, .13);
}

.review-card::after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg, #ff7a00, #ffb000);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 18px;

    border-bottom: 1px solid #edf0f4;
}

.avatar {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #092654;
    color: white;

    font-size: 17px;
    font-weight: 900;
}

.review-user h3 {
    color: #092654;
    font-size: 15px;
    font-weight: 900;
}

.stars {
    margin-top: 5px;

    color: #ff9d00;

    font-size: 14px;
    letter-spacing: 1px;
}

.google {
    margin-left: auto;

    padding: 7px 10px;

    border-radius: 8px;

    background: #f1f4f8;
    color: #667085;

    font-size: 9px;
    font-weight: 900;
}

.review-card > p {
    margin-top: 20px;

    color: #526277;

    font-size: 15px;
    line-height: 1.6;
}


/* WHATSAPP */

.whatsapp-float {
    position: fixed;

    left: 20px;
    bottom: 20px;

    z-index: 100;

    border: 0;

    padding: 17px 20px;
    border-radius: 50px;

    background: #25d366;
    color: white;

    font-size: 10px;
    font-weight: 900;

    cursor: pointer;

    animation: pulse 1.8s infinite;
}


/* RODAPÉ */

footer {
    padding: 40px 8%;

    background: #041126;
    text-align: center;
}


/* CELULAR */

@media (max-width: 800px) {

    .section,
    .offer,
    .reviews {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: clamp(45px, 13vw, 70px);
    }

    .videos {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .video-principal video {
        max-height: 70vh;
        border-radius: 15px;
    }

    .countdown {
        gap: 7px;
    }

    .countdown div {
        min-width: 0;
        flex: 1;

        padding: 15px 5px;
    }

    .countdown strong {
        font-size: 26px;
    }

    .countdown small {
        font-size: 7px;
    }

    .vagas-box {
        gap: 7px;
        padding: 14px 15px;
    }

    .vagas-box span,
    .vagas-box b {
        font-size: 8px;
    }

    .vagas-box strong {
        font-size: 34px;
    }

    .video-depoimento {
        max-width: 100%;
    }

    .units-row {
        margin-top: 30px;
    }

    .unit-card {
        min-width: 250px;
        height: 330px;
    }

    .reviews {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card {
        padding: 22px;
    }

    .review-card > p {
        font-size: 14px;
    }

}
.hero-video {
    width: 100%;
    max-width: 850px;
    margin-top: 25px;
}

.hero-video video {
    display: block;
    width: 100%;
    max-height: 430px;
    border-radius: 18px;
    background: #061a42;
    object-fit: contain;
}

@media (max-width: 800px) {
    .hero-video {
        margin-top: 20px;
    }

    .hero-video video {
        max-height: 65vh;
        border-radius: 14px;
    }
}