/* ======================================================
   🎨 VARIÁVEIS
====================================================== */
:root{
    --blue:#0a2a66;
    --green:#3c8b1e;
    --text:#1f2933;
    --muted:#6b7280;
    --bg:#ffffff;
    --bg-light:#f5f7f9;

    --radius:16px;
    --font:'Poppins', sans-serif;
    --container:1100px;
}

/* ======================================================
   🔁 RESET / BASE (MOBILE FIRST)
====================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:var(--font);
    color:var(--text);
    background:var(--bg);
    line-height:1.6;
    font-size:16px;
}

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

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

/* ======================================================
   📦 CONTAINER
====================================================== */
.container{
    width:100%;
    padding:0 18px;
    margin:0 auto;
}

/* ======================================================
   🔝 HEADER (MOBILE)
====================================================== */
.header{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
}

.header-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    padding:16px 0;
}

.logo{
    max-height:56px;
}

.nav{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}

.nav a{
    font-size:14px;
    font-weight:500;
    color:var(--text);
}

/* ======================================================
   🚜 HERO (MOBILE)
====================================================== */
.hero{
    background:linear-gradient(135deg, var(--blue), var(--green));
    color:#fff;
    padding:64px 0;
    text-align:center;
}

.hero h1{
    font-size:28px;
    margin-bottom:16px;
}

.hero p{
    font-size:16px;
    margin-bottom:28px;
    color:#e5e7eb;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 26px;
    border-radius:30px;
    font-weight:600;
    font-size:15px;
}

.btn-primary{
    background:#fff;
    color:var(--blue);
}

.btn-secondary{
    background:var(--green);
    color:#fff;
}

/* ======================================================
   📄 SECTIONS (MOBILE)
====================================================== */
.section{
    padding:64px 0;
}

.bg-light{
    background:var(--bg-light);
}

.section h2{
    font-size:26px;
    margin-bottom:24px;
    text-align:center;
}

.section p{
    font-size:15px;
    color:var(--muted);
    margin-bottom:16px;
    text-align:center;
}

/* ======================================================
   🧩 GRID / CARDS (MOBILE)
====================================================== */
.grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    margin-top:32px;
}

.card{
    background:#fff;
    padding:26px;
    border-radius:var(--radius);
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    text-align:center;
}

.card h3{
    margin-bottom:10px;
    color:var(--blue);
    font-size:18px;
}

.card p{
    font-size:14px;
}

/* ======================================================
   ⭐ DIFERENCIAIS (MOBILE)
====================================================== */
.diferenciais{
    list-style:none;
    margin-top:24px;
}

.diferenciais li{
    font-size:15px;
    margin-bottom:12px;
    padding-left:20px;
    position:relative;
    color:var(--muted);
}

.diferenciais li::before{
    content:"•";
    position:absolute;
    left:0;
    color:var(--green);
}

/* ======================================================
   📣 CTA (MOBILE)
====================================================== */
.cta{
    background:var(--blue);
    color:#fff;
    padding:60px 0;
    text-align:center;
}

.cta h2{
    font-size:24px;
    margin-bottom:14px;
}

.cta p{
    margin-bottom:24px;
    color:#e5e7eb;
}

/* ======================================================
   🔚 FOOTER
====================================================== */
.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:26px 0;
    text-align:center;
    font-size:14px;
}

/* ======================================================
   📱📐 TABLET (≥ 768px)
====================================================== */
@media (min-width:768px){

    .header-content{
        flex-direction:row;
        justify-content:space-between;
    }

    .hero{
        text-align:left;
    }

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

    .hero p{
        font-size:17px;
        max-width:520px;
    }

    .section h2,
    .section p{
        text-align:left;
    }

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

    .card{
        text-align:left;
    }
}

/* ======================================================
   🖥️ DESKTOP (≥ 1024px)
====================================================== */
@media (min-width:1024px){

    .container{
        max-width:var(--container);
    }

    .hero{
        padding:90px 0;
    }

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

    .hero p{
        font-size:18px;
    }

    .section{
        padding:90px 0;
    }

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