/* =========================================================
   CRED+ — CSS COMPLETO
========================================================= */

:root {
    --verde: #00d84a;
    --verde-escuro: #00a83a;
    --verde-claro: #63f397;
    --azul: #062b90;
    --azul-escuro: #031633;
    --texto: #17324d;
    --cinza: #64748b;
    --fundo: #f5faf7;
    --branco: #ffffff;
    --borda: #dce8e2;
    --sombra: 0 18px 45px rgba(3, 22, 51, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--texto);
    background: var(--branco);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container,
.quick-stats-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

section {
    scroll-margin-top: 30px;
}

/* =========================================================
   BOTÕES
========================================================= */

.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 27px;
    border-radius: 14px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.button,
.btn-primary {
    color: var(--azul-escuro);
    background: var(--verde);
    border: 2px solid var(--verde);
}

.button:hover,
.btn-primary:hover {
    color: var(--branco);
    background: var(--verde-escuro);
    border-color: var(--verde-escuro);
    box-shadow: 0 12px 30px rgba(0, 216, 74, 0.28);
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 27px;
    color: var(--branco);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    font-weight: 800;
    backdrop-filter: blur(8px);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* =========================================================
   BARRA SUPERIOR
========================================================= */

.topbar {
    display: none;
}

/* =========================================================
   MENU
========================================================= */

.header {
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 50;
    width: 100%;
    background: transparent;
}

.header .nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 10px 14px;
    background: rgba(8, 26, 55, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.logo-link,
.header .nav > a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 235px;
    min-height: 70px;
    padding: 6px 18px;
    background: var(--branco);
    border-radius: 18px;
}

.logo {
    width: 180px;
    max-height: 62px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu > a:not(.button):not(.btn) {
    position: relative;
    color: var(--branco);
    font-size: 15px;
    font-weight: 800;
}

.menu > a:not(.button):not(.btn)::after {
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    content: "";
    background: var(--verde);
    transition: width 0.2s ease;
}

.menu > a:not(.button):not(.btn):hover::after {
    width: 100%;
}

.menu .button,
.menu .btn {
    min-height: 50px;
    padding: 12px 23px;
    color: var(--branco);
}

.menu-button,
.menu-toggle {
    display: none;
    padding: 4px 10px;
    color: var(--branco);
    background: transparent;
    border: 0;
    font-size: 30px;
}

/* =========================================================
   VÍDEO PRINCIPAL
========================================================= */

.video-hero {
    position: relative;
    min-height: 860px;
    background: var(--azul-escuro);
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-dark-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(2, 17, 40, 0.97) 0%,
            rgba(3, 23, 52, 0.91) 32%,
            rgba(3, 23, 52, 0.68) 58%,
            rgba(3, 23, 52, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.28)
        );
}

.video-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 860px;
    padding-top: 155px;
    padding-bottom: 70px;
}

.video-hero-copy {
    width: 100%;
    max-width: 760px;
}

.video-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 11px 19px;
    color: #eaff69;
    background: rgba(3, 22, 51, 0.45);
    border: 1px solid rgba(234, 255, 105, 0.42);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.video-eyebrow span {
    width: 10px;
    height: 10px;
    background: #eaff69;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(234, 255, 105, 0.8);
}

.video-hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    color: var(--branco);
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.video-hero h1 em {
    display: block;
    color: #28c778;
    font-style: normal;
}

.video-lead {
    max-width: 710px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.8;
}

.video-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.video-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

/* =========================================================
   ESTATÍSTICAS
========================================================= */

.quick-stats-section {
    position: relative;
    z-index: 5;
    padding: 30px 0;
    background:
        linear-gradient(
            90deg,
            #f4fbf7,
            #ffffff,
            #f8fced
        );
    border-bottom: 1px solid var(--borda);
}

.quick-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 26px 20px;
    background: var(--branco);
    border: 1px solid #cddde8;
    border-radius: 35px;
    box-shadow: 0 16px 40px rgba(3, 22, 51, 0.07);
}

.quick-stat-item {
    min-height: 80px;
    padding: 6px 20px;
    text-align: center;
    border-right: 1px solid #d6e1e8;
}

.quick-stat-item:last-child {
    border-right: 0;
}

.quick-stat-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--azul-escuro);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
}

.quick-stat-item span {
    color: var(--cinza);
    font-size: 15px;
    font-weight: 700;
}

/* =========================================================
   SEÇÃO DE VANTAGENS E CARROSSEL
========================================================= */

.advantages-section {
    position: relative;
    padding: 95px 0 80px;
    background:
        radial-gradient(
            circle at 14% 40%,
            rgba(0, 216, 74, 0.07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f7fbf9
        );
    overflow: hidden;
}

.advantages-heading {
    margin-bottom: 55px;
    text-align: center;
}

.advantages-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 9px 17px;
    color: #00835a;
    background: #effbf7;
    border: 1px solid #b9e5d4;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.advantages-label span {
    width: 10px;
    height: 10px;
    background: #aee62d;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(174, 230, 45, 0.75);
}

.advantages-heading h2 {
    max-width: 940px;
    margin: 0 auto 20px;
    color: var(--azul-escuro);
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.advantages-heading h2 strong {
    display: block;
    color: #28b86d;
}

.advantages-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--cinza);
    font-size: 18px;
}

.advantages-carousel-wrapper {
    position: relative;
    width: 100%;
}

.advantages-carousel {
    display: flex;
    gap: 24px;
    padding: 12px max(30px, calc((100vw - 1180px) / 2));
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.advantages-carousel::-webkit-scrollbar {
    display: none;
}

.advantage-card {
    flex: 0 0 355px;
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: 26px;
    box-shadow: 0 16px 45px rgba(3, 22, 51, 0.1);
    scroll-snap-align: center;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.advantage-card:hover {
    box-shadow: 0 25px 55px rgba(3, 22, 51, 0.17);
    transform: translateY(-7px);
}

.advantage-visual {
    position: relative;
    display: grid;
    min-height: 295px;
    place-items: center;
    overflow: hidden;
}

.advantage-visual::before {
    position: absolute;
    width: 280px;
    height: 280px;
    content: "";
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.visual-green {
    color: #017644;
    background:
        linear-gradient(
            145deg,
            #b7f4d0,
            #dffbed
        );
}

.visual-blue {
    color: #0757ba;
    background:
        linear-gradient(
            145deg,
            #b9d5ff,
            #e3efff
        );
}

.visual-light {
    color: #0d6bbc;
    background:
        linear-gradient(
            145deg,
            #bfe9ff,
            #e7f7ff
        );
}

.visual-purple {
    color: #2844a5;
    background:
        linear-gradient(
            145deg,
            #cad8ff,
            #e9eeff
        );
}

.visual-dark {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #0a4aa5,
            #031f59
        );
}

.advantage-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 160px;
    height: 160px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.58)
        );
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 46px;
    box-shadow:
        0 24px 45px rgba(3, 22, 51, 0.18),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    place-items: center;
    transform: rotate(-4deg);
}

.visual-dark .advantage-icon {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.advantage-icon svg {
    width: 90px;
    height: 90px;
}

.advantage-check {
    position: absolute;
    right: 45px;
    bottom: 35px;
    z-index: 3;
    display: grid;
    width: 62px;
    height: 62px;
    color: var(--branco);
    background:
        linear-gradient(
            145deg,
            #4be672,
            #12ae42
        );
    border: 5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 12px 25px rgba(0, 130, 50, 0.28);
    font-size: 31px;
    font-weight: 900;
    place-items: center;
}

.advantage-content {
    min-height: 225px;
    padding: 28px;
}

.advantage-content > span {
    display: inline-block;
    margin-bottom: 11px;
    color: var(--verde-escuro);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.advantage-content h3 {
    margin-bottom: 12px;
    color: var(--azul-escuro);
    font-size: 23px;
    line-height: 1.2;
}

.advantage-content p {
    color: var(--cinza);
    font-size: 15px;
}

.carousel-button {
    position: absolute;
    top: 140px;
    z-index: 10;
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--azul-escuro);
    background: var(--branco);
    border: 1px solid #b8c9d7;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(3, 22, 51, 0.16);
    font-size: 33px;
    line-height: 1;
    place-items: center;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.carousel-button:hover {
    color: var(--branco);
    background: var(--azul);
    border-color: var(--azul);
    transform: scale(1.06);
}

.carousel-previous {
    left: 25px;
}

.carousel-next {
    right: 25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: #c5d2da;
    border: 0;
    border-radius: 999px;
    transition:
        width 0.2s ease,
        background 0.2s ease;
}

.carousel-dot.active {
    width: 32px;
    background: var(--verde);
}

/* =========================================================
   SEÇÕES GERAIS
========================================================= */

.section {
    padding: 95px 0;
}

.section-white {
    background: var(--branco);
}

.section-soft {
    background: var(--fundo);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--verde-escuro);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dot {
    width: 9px;
    height: 9px;
    background: var(--verde);
    border-radius: 50%;
}

.section-heading h2 {
    margin-bottom: 16px;
    color: var(--azul-escuro);
    font-size: clamp(33px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.section-heading p {
    color: var(--cinza);
    font-size: 18px;
}

.gradient-text {
    color: var(--verde-escuro);
}

/* =========================================================
   PRODUTOS
========================================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-item {
    position: relative;
    min-height: 285px;
    padding: 32px;
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: 24px;
    box-shadow: 0 15px 38px rgba(3, 22, 51, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-item:hover {
    border-color: rgba(0, 216, 74, 0.7);
    box-shadow: 0 22px 50px rgba(3, 22, 51, 0.14);
    transform: translateY(-7px);
}

.product-number {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 23px;
    color: var(--azul);
    background: rgba(0, 216, 74, 0.13);
    border-radius: 14px;
    font-weight: 900;
    place-items: center;
}

.product-item h3 {
    margin-bottom: 14px;
    color: var(--azul-escuro);
    font-size: 23px;
}

.product-item p {
    margin-bottom: 19px;
    color: var(--cinza);
}

.product-link {
    color: var(--verde-escuro);
    font-weight: 800;
}

.product-link:hover {
    color: var(--azul);
}

/* =========================================================
   CONVÊNIOS
========================================================= */

.convenios-section {
    color: var(--branco);
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 216, 74, 0.18),
            transparent 35%
        ),
        var(--azul-escuro);
}

.convenios-section .section-heading h2 {
    color: var(--branco);
}

.convenios-section .section-heading p {
    color: rgba(255, 255, 255, 0.74);
}

.convenios-section .eyebrow {
    color: var(--verde-claro);
}

.convenios-section .gradient-text {
    color: var(--verde-claro);
}

.convenios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.convenio-card {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 145px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.convenio-card:hover {
    background: rgba(0, 216, 74, 0.14);
    transform: translateY(-5px);
}

.convenio-icon {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    color: var(--azul-escuro);
    background: var(--verde);
    border-radius: 15px;
    font-weight: 900;
    place-items: center;
}

.convenio-card h3 {
    margin-bottom: 4px;
    color: var(--branco);
    font-size: 18px;
}

.convenio-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.convenios-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 19px;
}

/* =========================================================
   COMO FUNCIONA
========================================================= */

.journey-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-item {
    display: flex;
    gap: 18px;
    padding: 27px;
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(3, 22, 51, 0.06);
}

.step-box {
    display: grid;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    color: var(--azul-escuro);
    background: var(--verde);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
    place-items: center;
}

.journey-item h3 {
    margin-bottom: 7px;
    color: var(--azul-escuro);
    font-size: 20px;
}

.journey-item p {
    color: var(--cinza);
}

/* =========================================================
   SIMULAÇÃO
========================================================= */

.sim-section {
    color: var(--branco);
    background:
        radial-gradient(
            circle at top left,
            rgba(0, 216, 74, 0.2),
            transparent 35%
        ),
        var(--azul);
}

.sim-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 65px;
    align-items: center;
}

.sim-section .section-heading h2 {
    color: var(--branco);
}

.sim-section .section-heading p {
    color: rgba(255, 255, 255, 0.77);
}

.sim-section .eyebrow {
    color: var(--verde-claro);
}

.benefits {
    display: grid;
    gap: 13px;
    margin-top: 25px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255, 255, 255, 0.86);
}

.benefit i {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    color: var(--azul-escuro);
    background: var(--verde);
    border-radius: 50%;
    font-style: normal;
    font-weight: 900;
    place-items: center;
}

.form-card {
    padding: 35px;
    color: var(--texto);
    background: var(--branco);
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.form-card h3 {
    margin-bottom: 5px;
    color: var(--azul-escuro);
    font-size: 27px;
}

.form-card > p {
    margin-bottom: 24px;
    color: var(--cinza);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--azul-escuro);
    font-size: 14px;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 51px;
    padding: 12px 14px;
    color: var(--texto);
    background: #f7faf9;
    border: 1px solid #cbd9d2;
    border-radius: 11px;
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 4px rgba(0, 216, 74, 0.12);
}

.hp {
    position: absolute;
    left: -9999px;
}

.consent {
    display: flex;
    grid-column: 1 / -1;
    gap: 10px;
    align-items: flex-start;
    color: var(--cinza);
    font-size: 13px;
}

.consent input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-card .btn {
    width: 100%;
}

.flash {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 10px;
}

.flash.success {
    color: #07652a;
    background: #dff9e8;
    border: 1px solid #8ce2aa;
}

.flash.error {
    color: #8d1b1b;
    background: #ffe5e5;
    border: 1px solid #ffb2b2;
}

/* =========================================================
   PERGUNTAS FREQUENTES
========================================================= */

.faq-grid {
    display: grid;
    max-width: 880px;
    margin: 0 auto;
    gap: 14px;
}

.faq-item {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: 17px;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    padding: 22px 55px 22px 23px;
    color: var(--azul-escuro);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 17px;
    right: 22px;
    color: var(--verde-escuro);
    content: "+";
    font-size: 29px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 23px 23px;
    color: var(--cinza);
}

/* =========================================================
   RODAPÉ
========================================================= */

.footer {
    padding: 65px 0 25px;
    color: rgba(255, 255, 255, 0.78);
    background: #020e22;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 190px;
    padding: 8px 14px;
    background: var(--branco);
    border-radius: 13px;
}

.footer h4 {
    margin-bottom: 16px;
    color: var(--branco);
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--verde);
}

.footer-note {
    margin-top: 45px;
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 70;
    display: grid;
    width: 65px;
    height: 65px;
    color: var(--azul);
    background: var(--verde);
    border: 4px solid var(--branco);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-size: 24px;
    font-weight: 900;
    place-items: center;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
    .header {
        top: 14px;
    }

    .header .nav {
        min-height: 76px;
        border-radius: 19px;
    }

    .logo-link,
    .header .nav > a:first-child {
        width: 175px;
        min-height: 56px;
        padding: 5px 12px;
    }

    .logo {
        width: 145px;
        max-height: 49px;
    }

    .menu-button,
    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px;
        background: rgba(3, 22, 51, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 17px;
        box-shadow: var(--sombra);
    }

    .menu.open,
    .menu.active {
        display: flex;
    }

    .menu > a:not(.button):not(.btn) {
        padding: 13px 10px;
    }

    .menu > a:not(.button):not(.btn)::after {
        display: none;
    }

    .menu .button,
    .menu .btn {
        margin-top: 8px;
    }

    .video-hero,
    .video-hero-content {
        min-height: 780px;
    }

    .video-hero-content {
        padding-top: 135px;
    }

    .quick-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-stat-item:nth-child(2) {
        border-right: 0;
    }

    .quick-stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid #d6e1e8;
    }

    .products-grid,
    .convenios-grid,
    .journey-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .sim-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 650px) {
    .container,
    .quick-stats-container {
        width: min(100% - 26px, 1180px);
    }

    .header {
        top: 10px;
    }

    .header .nav {
        min-height: 70px;
        padding: 7px 9px;
    }

    .logo-link,
    .header .nav > a:first-child {
        width: 145px;
        min-height: 52px;
    }

    .logo {
        width: 122px;
    }

    .video-hero,
    .video-hero-content {
        min-height: 760px;
    }

    .video-hero-content {
        align-items: flex-start;
        padding-top: 145px;
        padding-bottom: 45px;
    }

    .video-eyebrow {
        padding: 9px 13px;
        font-size: 11px;
    }

    .video-hero h1 {
        margin-bottom: 21px;
        font-size: 43px;
    }

    .video-lead {
        font-size: 17px;
        line-height: 1.65;
    }

    .video-actions {
        flex-direction: column;
    }

    .video-actions .button,
    .video-actions .secondary-button {
        width: 100%;
    }

    .video-trust {
        flex-direction: column;
        gap: 7px;
    }

    .quick-stats-container {
        grid-template-columns: 1fr;
        padding: 15px;
        border-radius: 25px;
    }

    .quick-stat-item,
    .quick-stat-item:nth-child(2) {
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid #d6e1e8;
    }

    .quick-stat-item:last-child {
        border-bottom: 0;
    }

    .advantages-section {
        padding: 70px 0 60px;
    }

    .advantages-heading {
        margin-bottom: 35px;
    }

    .advantages-heading h2 {
        font-size: 39px;
    }

    .advantages-heading p {
        font-size: 16px;
    }

    .advantages-carousel {
        gap: 16px;
        padding-right: 22px;
        padding-left: 22px;
    }

    .advantage-card {
        flex-basis: calc(100vw - 50px);
    }

    .advantage-visual {
        min-height: 260px;
    }

    .advantage-icon {
        width: 140px;
        height: 140px;
    }

    .advantage-icon svg {
        width: 78px;
        height: 78px;
    }

    .carousel-button {
        display: none;
    }

    .section {
        padding: 68px 0;
    }

    .products-grid,
    .convenios-grid,
    .journey-list,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .convenios-action {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-card {
        padding: 24px 18px;
    }

    .field.full,
    .consent {
        grid-column: auto;
    }

    .footer-grid {
        gap: 35px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 58px;
        height: 58px;
    }
}

/* =========================================================
   REDUÇÃO GERAL DO TAMANHO DO SITE
========================================================= */

.container,
.quick-stats-container {
    width: min(1400px, calc(100% - 50px));
}

.video-hero,
.video-hero-content {
    min-height: 700px;
}

.video-hero h1 {
    max-width: 650px;
    font-size: clamp(40px, 3.8vw, 58px);
}

.video-lead {
    max-width: 610px;
    font-size: 17px;
}

.section {
    padding: 65px 0;
}

.quick-stats-section {
    padding: 15px 0;
}

.quick-stats-container {
    padding: 15px;
}

.quick-stat-item {
    min-height: 58px;
}

.quick-stat-item strong {
    font-size: 26px;
}

.quick-stat-item span {
    font-size: 13px;
}

.advantages-section {
    padding: 65px 0 50px;
}

.advantages-heading {
    margin-bottom: 34px;
}

.advantages-heading h2 {
    max-width: 800px;
    font-size: clamp(32px, 3.3vw, 48px);
}

.advantage-card {
    flex-basis: 280px;
}

.advantage-visual {
    min-height: 210px;
}

.advantage-icon {
    width: 110px;
    height: 110px;
    border-radius: 32px;
}

.advantage-icon svg {
    width: 60px;
    height: 60px;
}

.advantage-check {
    right: 30px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    font-size: 22px;
}

.advantage-content {
    min-height: 180px;
    padding: 21px;
}

.advantage-content h3 {
    font-size: 18px;
}

.carousel-button {
    top: 94px;
    width: 46px;
    height: 46px;
}

.section-heading h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.product-item {
    min-height: 225px;
    padding: 24px;
}

.convenio-card {
    min-height: 110px;
    padding: 18px;
}

.journey-item {
    padding: 20px;
}

.form-card {
    padding: 27px;
}

@media (max-width: 650px) {
    .container,
    .quick-stats-container {
        width: min(100% - 24px, 1320px);
    }

    .video-hero,
    .video-hero-content {
        min-height: 660px;
    }

    .video-hero h1 {
        font-size: 35px;
    }

    .advantages-heading h2 {
        font-size: 31px;
    }

    .advantage-card {
        flex-basis: calc(100vw - 45px);
    }
}

/* =========================================================
   LOGO COM MAIOR DESTAQUE
========================================================= */

.logo-link,
.header .nav > a:first-child {
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        inset 0 0 0 1px rgba(3, 22, 51, 0.08),
        0 5px 18px rgba(0, 0, 0, 0.08);
}

.logo {
    width: 225px;
    height: 64px;
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
    filter: none;
    transform: none;
}

@media (max-width: 950px) {
    .logo {
        width: 165px;
        height: 50px;
        max-height: 50px;
        transform: none;
    }
}

@media (max-width: 650px) {
    .logo {
        width: 135px;
        height: 44px;
        max-height: 44px;
        transform: none;
    }
}
