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

body{
    font-family:Poppins,sans-serif;
    background:#F8FAFC;
    color:#1E293B;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    height:90px;
    background:#fff;
    display:flex;
    align-items:center;
    border-bottom:1px solid #eee;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#22C55E;
}

nav a{

    position:relative;

    font-weight:500;

    color:#334155;

    transition:.3s;

}

nav a:hover{

    color:#22C55E;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#22C55E;

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 34px;

    border-radius:12px;

    background:linear-gradient(135deg,#22C55E,#16A34A);

    color:white;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(34,197,94,.35);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(34,197,94,.45);

}

.hero{

    padding:180px 0 120px;

    background:#F8FAFC;

}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.badge{
    background:#DCFCE7;
    color:#166534;
    padding:10px 20px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:25px;
}

.hero h1{

    font-size:64px;

    line-height:72px;

    font-weight:700;

    margin-bottom:25px;

}

.hero p{
    font-size:20px;
    margin-bottom:35px;
    color:#64748B;
}

.hero img{
    width:100%;
}
.hero-card{

    background:white;

    border-radius:25px;

    padding:40px;

    box-shadow:0 25px 60px rgba(15,61,145,.12);

    border:1px solid #EDF2F7;

}

.rating{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

    font-weight:600;

}

.check-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:35px;

}

.check-list div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#353355;

}

.check-list i{

    color:#22C55E;

    font-size:20px;

}

.family{

    width:100%;

    border-radius:18px;

}

@keyframes upDown{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}
.btn-whatsapp{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-left:15px;

    color:#25D366;

    border:2px solid #25D366;

    padding:15px 30px;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.btn-whatsapp:hover{

    background:#25D366;

    color:white;

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

.stats{

    padding:90px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:white;

    padding:45px;

    border-radius:24px;

    box-shadow:0 20px 40px rgba(15,61,145,.08);

    transition:.4s;

    cursor:pointer;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.stat-card i{

    font-size:42px;

    color:#22C55E;

    margin-bottom:20px;

}

.stat-card h2{

    font-size:42px;

    color:#0F3D91;

    margin-bottom:10px;

}

.stat-card p{

    color:#64748B;

}
/*=========================
OPERADORAS
=========================*/

.operators{

    padding:120px 0;

    background:#fff;

}

.operators-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.operator-card{

    height:140px;

    background:white;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #ffffff;

}

.operator-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.operator-card img{

    max-width:160px;

    max-height:70px;

    object-fit:contain;

}

/*==================================
HEADER PREMIUM
==================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    box-shadow:0 4px 25px rgba(0,0,0,.05);

}

.header .container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:30px;

    font-weight:700;

    text-decoration:none;

    color:#0F3D91;

}

.logo i{

    color:#16C784;

}

.logo span{

    color:#16C784;

}

.navbar{

    display:flex;

    gap:35px;

}

.navbar a{

    text-decoration:none;

    color:#334155;

    font-weight:500;

    position:relative;

    transition:.3s;

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    border-radius:10px;

    background:#16C784;

    transition:.3s;

}

.navbar a:hover{

    color:#16C784;

}

.navbar a:hover::after{

    width:100%;

}

.header-buttons{

    display:flex;

    gap:15px;

}

.btn-header{

    background:#16C784;

    color:white;

    padding:14px 28px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-header:hover{

    transform:translateY(-3px);

}

.btn-whatsapp-header{

    border:2px solid #16C784;

    color:#16C784;

    text-decoration:none;

    padding:12px 25px;

    border-radius:12px;

    transition:.3s;

}

.btn-whatsapp-header:hover{

    background:#16C784;

    color:white;

}
/*=========================
BENEFÍCIOS
=========================*/

.benefits{

    padding:120px 0;

    background:#F8FAFC;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.benefit-card{

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #5e5e5e;

}

.benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.benefit-card i{

    font-size:48px;

    color:#16C784;

    margin-bottom:25px;

}

.benefit-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:#0F3D91;

}

.benefit-card p{

    color:#64748B;

    line-height:1.7;

}
/*=========================
DEPOIMENTOS
=========================*/

.testimonials{

    padding:120px 0;

    background:#ffffff;

}

.testimonials-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.testimonial-card{

    background:#F8FAFC;

    border-radius:22px;

    padding:35px;

    transition:.35s;

    border:1px solid #0e0d0d;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.stars{

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#475569;

    line-height:1.8;

    margin-bottom:30px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

}

.client h4{

    color:#0F3D91;

    margin-bottom:4px;

}

.client span{

    color:#64748B;

    font-size:14px;

}
/*=========================
FORMULÁRIO
=========================*/

.lead-form{

    padding:120px 0;

    background:#fafafa;

}

.form-box{

    max-width:700px;

    margin:auto;

    background:white;

    padding:50px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.progress{

    width:100%;

    height:10px;

    background:#E5E7EB;

    border-radius:20px;

    margin:40px 0;

}

.progress-bar{

    width:20%;

    height:100%;

    background:#16C784;

    border-radius:20px;

    transition:.4s;

}

.step{

    display:none;

}

.step.active{

    display:block;

}

.step h3{

    margin-bottom:30px;

    font-size:30px;

}

.option{

    width:100%;

    padding:18px;

    margin-bottom:15px;

    background:white;

    border:2px solid #000000;

    border-radius:14px;

    cursor:pointer;

    transition:.3s;

    font-size:17px;

}

.option:hover{

    background:#16C784;

    color:white;

    border-color:#16C784;

}

.step input{

    width:100%;

    height:60px;

    padding:20px;

    border-radius:12px;

    border:1px solid #000000;

    margin-bottom:25px;

}
.step select{

    width:100%;

    height:60px;

    border:1px solid #dddddd;

    border-radius:12px;

    padding:15px;

    margin-bottom:25px;

    font-size:16px;

}
.idade-group {
    margin-bottom: 18px;
}

.idade-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.idade-group select {
    width: 100%;
    height: 58px;
    padding: 0 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font: inherit;
    outline: none;
}

.idade-group select:focus {
    border-color: #16c784;
    box-shadow: 0 0 0 4px rgba(22, 199, 132, 0.12);
}
/* =========================================
   HEADER PREMIUM
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.header-content {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    color: #0f172a;
    font-size: 27px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    margin-left: 4px;
    color: #22c55e;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: #22c55e;
    transition: 0.25s;
}

.main-nav a:hover {
    color: #0f172a;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.22);
    transition: 0.25s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(34, 197, 94, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.corretor-area-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    color: #0f3d91;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.25s;
}

.corretor-area-button:hover {
    border-color: #0f3d91;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 61, 145, 0.14);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #ffffff;
    color: #0f172a;
    font-size: 19px;
    cursor: pointer;
}

/* =========================================
   HERO PREMIUM
========================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 110px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(34, 197, 94, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(37, 99, 235, 0.14),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.hero-decoration-one {
    top: 80px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: rgba(37, 99, 235, 0.08);
}

.hero-decoration-two {
    bottom: -160px;
    left: -130px;
    width: 360px;
    height: 360px;
    background: rgba(34, 197, 94, 0.08);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: 80px;
}

.hero-copy {
    max-width: 690px;
}

.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 25px;
    padding: 10px 16px;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: rgba(240, 253, 244, 0.92);
    color: #166534;
    font-size: 13px;
    font-weight: 600;
}

.hero-badge-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: #0f172a;
    font-size: clamp(48px, 5.4vw, 74px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(135deg, #2563eb, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 640px;
    margin-bottom: 34px;
    color: #64748b;
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-actions .btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0 24px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 19px 40px rgba(37, 99, 235, 0.3);
}

.hero-actions .btn-whatsapp {
    border: 1px solid #bbf7d0;
    background: #ffffff;
    color: #16a34a;
}

.hero-actions .btn-whatsapp:hover {
    border-color: #22c55e;
    background: #f0fdf4;
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.hero-trust div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.hero-trust i {
    color: #22c55e;
}

.hero-visual {
    position: relative;
    max-width: 540px;
    margin-left: auto;
}

.hero-card-main {
    position: relative;
    z-index: 2;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(16px);
}

.hero-card-top,
.hero-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-card-top {
    margin-bottom: 20px;
}

.hero-card-label,
.hero-card-bottom span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 12px;
}

.hero-rating {
    color: #f59e0b;
    letter-spacing: 2px;
}

.hero-card-top > strong {
    color: #0f172a;
    font-size: 34px;
}

.hero-card-main .family {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-card-bottom {
    margin-top: 20px;
    padding: 17px 18px;
    border-radius: 15px;
    background: #f8fafc;
}

.hero-card-bottom strong {
    color: #0f172a;
    font-size: 14px;
}

.hero-card-bottom i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #dcfce7;
    color: #16a34a;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 225px;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(14px);
}

.floating-card i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: #dbeafe;
    color: #2563eb;
    font-size: 18px;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    margin-bottom: 3px;
    color: #0f172a;
    font-size: 13px;
}

.floating-card span {
    color: #64748b;
    font-size: 11px;
}

.floating-card-top {
    top: 70px;
    left: -95px;
}

.floating-card-bottom {
    right: -80px;
    bottom: 65px;
}

@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 820px;
    }

    .hero-visual {
        width: 100%;
        max-width: 620px;
        margin: 20px auto 0;
    }

    .floating-card-top {
        left: -25px;
    }

    .floating-card-bottom {
        right: -25px;
    }
}

@media (max-width: 850px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .header-content {
        gap: 12px;
    }

    .header-actions {
        margin-left: auto;
    }

    .corretor-area-button {
        min-height: 44px;
        padding: 0 14px;
        font-size: 13px;
    }

    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .hero {
        padding: 78px 0 85px;
    }

    .hero h1 {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .corretor-area-button {
        width: 44px;
        min-width: 44px;
        padding: 0;
        font-size: 0;
    }

    .corretor-area-button i {
        font-size: 17px;
    }
}

@media (max-width: 620px) {
    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .hero-card-main {
        padding: 17px;
    }

    .hero-card-main .family {
        height: 280px;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-top: 14px;
    }
}
/* =========================================
   CORREÇÃO DO VISUAL DO HERO
========================================= */

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    padding: 20px;
}

.hero-card-main {
    position: relative;
    z-index: 2;
    padding: 24px;
    overflow: visible;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
}

/* Área da imagem */
.hero-card-main .family {
    width: 100%;
    height: 315px;
    padding: 18px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    background: #ffffff;
}

/* Avaliação superior */
.hero-card-top {
    min-height: 65px;
    margin-bottom: 10px;
}

.hero-card-top > strong {
    color: #0f172a;
    font-size: 34px;
    font-weight: 800;
}

/* Parte inferior */
.hero-card-bottom {
    min-height: 82px;
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f8fafc;
}

.hero-card-bottom > div {
    flex: 1;
}

.hero-card-bottom i {
    position: static;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
}

/* Cards flutuantes */
.floating-card {
    min-width: 215px;
    max-width: 240px;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

.floating-card-top {
    top: 100px;
    left: -75px;
}

.floating-card-bottom {
    right: -55px;
    bottom: 78px;
}

/* Evita que os cards fiquem exageradamente sobrepostos */
.floating-card strong {
    font-size: 13px;
}

.floating-card span {
    font-size: 11px;
    line-height: 1.4;
}

/* =========================================
   AJUSTES EM TELAS MENORES
========================================= */

@media (max-width: 1200px) {
    .floating-card-top {
        left: -20px;
    }

    .floating-card-bottom {
        right: -20px;
    }
}

@media (max-width: 620px) {
    .hero-visual {
        padding: 0;
    }

    .hero-card-main .family {
        height: 250px;
    }

    .floating-card {
        position: static;
        max-width: none;
        width: 100%;
        margin-top: 14px;
    }
}
/* =========================================
   POSIÇÃO SEGURA DOS CARDS DO HERO
========================================= */

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    padding: 0;
}

.hero-card-main {
    position: relative;
    z-index: 1;
}

/* Cards menores e sem sair da área da imagem */
.floating-card {
    z-index: 3;
    min-width: 190px;
    max-width: 215px;
    padding: 12px 14px;
}

/* Card de atendimento no canto superior esquerdo */
.floating-card-top {
    top: 75px;
    left: 9px;
}

/* Card de operadoras no canto inferior direito */
.floating-card-bottom {
    right: 25px;
    bottom: 105px;
}

/* Evita que eles bloqueiem cliques ou seleção */
.floating-card {
    pointer-events: none;
}
/* =========================================
   COMO FUNCIONA
========================================= */

.how-it-works {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 80%,
            rgba(34, 197, 94, 0.08),
            transparent 30%
        ),
        #ffffff;
}

.how-it-works .section-header {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.how-it-works .section-header span {
    color: #22c55e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.how-it-works .section-header h2 {
    margin: 14px 0;
    color: #0f172a;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.how-it-works .section-header p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.how-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.how-grid::before {
    content: "";
    position: absolute;
    top: 62px;
    left: 17%;
    right: 17%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(34, 197, 94, 0.15),
        #22c55e,
        rgba(37, 99, 235, 0.28)
    );
}

.how-card {
    position: relative;
    z-index: 2;
    min-height: 320px;
    padding: 34px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
    transition: 0.3s;
}

.how-card:hover {
    transform: translateY(-8px);
    border-color: #bbf7d0;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.11);
}

.how-number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: #e2e8f0;
    font-size: 38px;
    font-weight: 800;
}

.how-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 19px;
    background: linear-gradient(135deg, #dcfce7, #dbeafe);
    color: #16a34a;
    font-size: 26px;
}

.how-card:nth-child(2) .how-icon {
    color: #2563eb;
}

.how-card:nth-child(3) .how-icon {
    color: #0f766e;
}

.how-card h3 {
    margin-bottom: 14px;
    color: #0f172a;
    font-size: 21px;
}

.how-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}

.how-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 40px;
    padding: 24px 28px;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
}

.how-cta div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #166534;
    font-weight: 700;
}

.how-cta i {
    font-size: 21px;
}

.how-cta .btn {
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

    .how-grid::before {
        display: none;
    }
}

@media (max-width: 650px) {
    .how-it-works {
        padding: 85px 0;
    }

    .how-card {
        min-height: auto;
        padding: 27px;
    }

    .how-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .how-cta .btn {
        width: 100%;
        text-align: center;
    }
}
/* =========================================
   NÚMEROS DA EMPRESA
========================================= */

.company-numbers {
    padding: 20px 0 100px;
    background: #ffffff;
}

.numbers-box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    background: linear-gradient(135deg, #0f172a, #123b73);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.16);
}

.number-item {
    position: relative;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
}

.number-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.number-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.1);
    color: #4ade80;
    font-size: 23px;
}

.number-item strong {
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
}

.number-item span {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .numbers-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .number-item:nth-child(2)::after {
        display: none;
    }

    .number-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 560px) {
    .company-numbers {
        padding-bottom: 80px;
    }

    .numbers-box {
        grid-template-columns: 1fr;
    }

    .number-item {
        min-height: 185px;
    }

    .number-item::after {
        display: none;
    }

    .number-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}
/* =========================================
   FAQ
========================================= */

.faq-section {
    padding: 110px 0;
    background: #f8fafc;
}

.faq-section .section-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.faq-question {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    border: none;
    background: transparent;
    color: #0f172a;
    text-align: left;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.faq-question i {
    color: #22c55e;
    transition: 0.25s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #64748b;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

@media (max-width: 620px) {
    .faq-section {
        padding: 85px 0;
    }

    .faq-question {
        min-height: 68px;
        padding: 0 18px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 18px 20px;
    }
}
/* =========================================
   CTA FINAL
========================================= */

.final-cta {
    padding: 100px 0;
    background: #ffffff;
}

.final-cta-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: 60px;
    padding: 55px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(74, 222, 128, 0.2),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0f172a 0%,
            #123b73 100%
        );
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.final-cta-box::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
}

.final-cta-content,
.final-cta-actions {
    position: relative;
    z-index: 2;
}

.final-cta-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #4ade80;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.final-cta h2 {
    max-width: 720px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.final-cta p {
    max-width: 680px;
    margin-bottom: 25px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
}

.final-cta-benefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.final-cta-benefits div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
}

.final-cta-benefits i {
    color: #4ade80;
}

.final-cta-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
}

.final-cta-primary,
.final-cta-whatsapp {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s;
}

.final-cta-primary {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 15px 34px rgba(34, 197, 94, 0.25);
}

.final-cta-primary:hover {
    background: #16a34a;
    transform: translateY(-3px);
}

.final-cta-whatsapp {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.final-cta-whatsapp:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

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

.whatsapp-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1500;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 19px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
    transition: 0.25s;
}

.whatsapp-floating i {
    font-size: 25px;
}

.whatsapp-floating:hover {
    background: #1ebe5d;
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(37, 211, 102, 0.45);
}

@media (max-width: 900px) {
    .final-cta-box {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 42px;
    }

    .final-cta-actions {
        max-width: 420px;
    }
}

@media (max-width: 620px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta-box {
        padding: 30px 24px;
        border-radius: 23px;
    }

    .final-cta-benefits {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .whatsapp-floating {
        right: 16px;
        bottom: 16px;
        width: 58px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-floating span {
        display: none;
    }
}
/* =========================================
   RODAPÉ
========================================= */

.site-footer {
    padding: 80px 0 25px;
    background: #0f172a;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 55px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1px;
}

.footer-logo span {
    margin-left: 4px;
    color: #22c55e;
}

.footer-brand p {
    max-width: 360px;
    margin-bottom: 24px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
}

.footer-socials{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none;
    transition: 0.25s;
}

.footer-socials a:hover {
    border-color: #22c55e;
    background: #22c55e;
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 16px;
}

.footer-column a,
.footer-column span {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: 0.25s;
}

.footer-column a:hover {
    color: #4ade80;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    width: 18px;
    margin-top: 4px;
    color: #4ade80;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
    color: #64748b;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    text-decoration: none;
    transition: 0.25s;
}

.footer-bottom a:hover {
    color: #ffffff;
}

@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .site-footer {
        padding-top: 65px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 10px;
    }
}
/* =========================================
   LGPD E PRIVACIDADE
========================================= */

.privacy-consent {
    margin: 22px 0;
}

.privacy-consent label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
}

.privacy-consent input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #22c55e;
}

.privacy-consent a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.privacy-consent a:hover {
    text-decoration: underline;
}

.privacy-section {
    padding: 90px 0;
    background: #f8fafc;
}

.privacy-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 38px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.privacy-box > span {
    display: inline-block;
    margin-bottom: 12px;
    color: #22c55e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.privacy-box h2 {
    margin-bottom: 20px;
    color: #0f172a;
    font-size: 32px;
}

.privacy-box p {
    color: #64748b;
    line-height: 1.8;
}

.privacy-box p + p {
    margin-top: 14px;
}

@media (max-width: 620px) {
    .privacy-section {
        padding: 70px 0;
    }

    .privacy-box {
        padding: 26px 22px;
    }

    .privacy-box h2 {
        font-size: 27px;
    }
}
/* =========================================
   ANIMAÇÕES AO ROLAR
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================
   QUEM SOMOS
========================================= */

.about-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    align-items: center;
    gap: 80px;
}

.about-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #22c55e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-content h2 {
    max-width: 700px;
    margin-bottom: 22px;
    color: #0f172a;
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.about-content > p {
    max-width: 680px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 28px 0;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
}

.about-points i {
    color: #22c55e;
}

.about-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 13px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.22);
    transition: 0.25s;
}

.about-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 19px 40px rgba(37, 99, 235, 0.3);
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-card {
    min-height: 220px;
    padding: 26px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    transition: 0.25s;
}

.about-card-main {
    grid-column: 1 / -1;
    min-height: 210px;
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: #bbf7d0;
}

.about-card-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 22px;
}

.about-card:nth-child(2) .about-card-icon {
    background: #dbeafe;
    color: #2563eb;
}

.about-card:nth-child(3) .about-card-icon {
    background: #fef3c7;
    color: #d97706;
}

.about-card h3 {
    margin-bottom: 11px;
    color: #0f172a;
    font-size: 19px;
}

.about-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 950px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        max-width: 700px;
    }
}

@media (max-width: 620px) {
    .about-section {
        padding: 85px 0;
    }

    .about-visual {
        grid-template-columns: 1fr;
    }

    .about-card-main {
        grid-column: auto;
    }

    .about-card {
        min-height: auto;
    }
}
/*==================================
TELA DE SUCESSO
===================================*/

.success-screen{

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.75);

    backdrop-filter:blur(8px);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.success-screen.show{

    display:flex;

}

.success-box{

    width:min(520px,92%);

    background:#fff;

    border-radius:26px;

    padding:55px;

    text-align:center;

    animation:popup .35s ease;

}

.success-icon{

    font-size:72px;

    color:#22c55e;

    margin-bottom:20px;

}

.success-box h2{

    color:#0f172a;

    margin-bottom:18px;

    font-size:34px;

}

.success-box p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:35px;

}

@keyframes popup{

from{

opacity:0;

transform:scale(.8);

}

to{

opacity:1;

transform:scale(1);

}

}
.logo{
    display:flex;
    align-items:center;
}

.logo-img{
    width:65px;
    height:auto;
    display:block;
    transition:.3s;
}

.logo-img:hover{
    transform:scale(1.03);
}