/* ======================================================
   🎨 VARIÁVEIS
====================================================== */
:root{
    --green-900:#0e3d17;
    --green-700:#1b5e20;
    --green-600:#2e7d32;

    --bg:#eef3f0;
    --surface:#ffffff;
    --surface-2:#f4f8f5;

    --text:#0f172a;
    --muted:#64748b;
    --border:rgba(15,23,42,.10);

    --radius:22px;
    --shadow:0 20px 50px rgba(0,0,0,.10);
    --shadow-sm:0 10px 25px rgba(0,0,0,.07);

    --font:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    --container:1160px;
}

/* ======================================================
   RESET
====================================================== */
*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:var(--font);
    color:var(--text);
    background:linear-gradient(135deg,#eaf1ed,#dfeee7);
    line-height:1.7;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:var(--green-700)}

/* ======================================================
   TIPOGRAFIA
====================================================== */
h1,h2,h3{font-weight:800;letter-spacing:-.02em}
h1{font-size:clamp(2rem,5vw,3.2rem)}
h2{font-size:clamp(1.5rem,4vw,2.2rem);margin-bottom:12px}
h3{font-size:1rem;margin-bottom:6px}
p{color:var(--muted)}

/* ======================================================
   LAYOUT
====================================================== */
.container{max-width:var(--container);margin:auto;padding:0 18px}
.section{padding:90px 0}
.section-alt{background:var(--surface-2)}

/* ======================================================
   TOPBAR
====================================================== */
.topbar{
    position:sticky;
    top:0;
    z-index:60;
    background:#fff;
    border-bottom:1px solid var(--border);
    padding-top:12px;
}

.topbar-inner{
    display:flex;
    flex-direction:column;
    gap:22px;
    padding:12px 0 22px;
}

/* BLOCO MARCA */
.brand{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:14px 18px;
    border-radius:18px;
    background:linear-gradient(135deg,#ffffff,#f4f8f5);
    box-shadow:var(--shadow-sm);
}
.brand-logo{
    width:60px;
    height:60px;
    border-radius:16px;
    border:1px solid var(--border);
    object-fit:cover;
}
.brand-name{
    font-size:1.4rem;
    font-weight:800;
    color:var(--green-700);
}

/* ======================================================
   BOTÕES AÇÃO
====================================================== */
.nav-actions{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:0 4px;
}

.nav-actions .btn{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:16px;
    padding:18px 22px;
    border-radius:22px;
    font-weight:700;
    font-size:1.1rem;
    color:#fff;
    width:100%;
    box-shadow:0 14px 32px rgba(0,0,0,.12);
    transition:.2s ease;
}

.nav-actions .btn i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(255,255,255,.18);
}

.nav-actions .btn:first-child{
    background:linear-gradient(135deg,var(--green-700),var(--green-900));
}
.nav-actions .btn:last-child{
    background:linear-gradient(135deg,#25D366,#128C7E);
}
.nav-actions .btn:active{
    transform:scale(.98);
}

/* ======================================================
   REDES SOCIAIS TOPO
====================================================== */
.social-top{
    display:flex;
    justify-content:center;
    gap:14px;
}
.social-top a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f4f8f5;
    border-radius:12px;
    box-shadow:var(--shadow-sm);
    transition:.2s;
}
.social-top a:hover{transform:scale(1.05)}

/* ======================================================
   HERO
====================================================== */
.hero{
    position:relative;
    padding:150px 0 100px;
    background:url("img/agro-bg.jpg") center/cover no-repeat;
    color:#fff;
}
.hero-overlay{
    position:absolute;inset:0;
    background:linear-gradient(120deg,rgba(0,0,0,.75),rgba(0,0,0,.45));
}
.hero-content{position:relative;z-index:2;max-width:720px}

.badge{
    display:inline-flex;gap:8px;
    padding:8px 14px;border-radius:999px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.3);
    font-weight:700;color:#d1fae5;font-size:.8rem;margin-bottom:12px;
}

.hero-highlight{margin:16px 0;color:#e2e8f0}
.trust{display:flex;flex-direction:column;gap:10px;margin-top:16px}
.trust-item{display:flex;gap:10px;align-items:center;font-weight:600}

/* ======================================================
   CONTATO
====================================================== */
.contact-header{margin-bottom:24px}
.contact-grid{display:grid;grid-template-columns:1fr;gap:26px}
.contact-info{display:flex;flex-direction:column;gap:22px}

.contact-card{
    display:flex;
    gap:16px;
    padding:22px;
    background:#fff;
    border-radius:var(--radius);
    border:1px solid var(--border);
    box-shadow:var(--shadow-sm);
}
.contact-card i{
    width:44px;height:44px;
    display:flex;align-items:center;justify-content:center;
    background:#f4f8f5;border-radius:14px;
}

/* ======================================================
   RODAPÉ
====================================================== */
.footer{
    text-align:center;
    padding:44px 18px;
    color:#fff;
    background:#0c2d13;
}

.footer-social{
    margin-top:16px;
    display:flex;
    justify-content:center;
    gap:16px;
}
.footer-social a{
    width:42px;height:42px;
    display:flex;align-items:center;justify-content:center;
    background:#fff;
    border-radius:12px;
    transition:.2s;
}
.footer-social a:hover{transform:scale(1.05)}

/* ======================================================
   FAB
====================================================== */
.fab{
    position:fixed;
    right:18px;
    bottom:18px;
    width:64px;height:64px;border-radius:20px;
    display:flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}
/* ======================================================
   MAPA — ESTILO PREMIUM
====================================================== */

.contact-map{
    display:flex;
    align-items:stretch;
}

.map-wrapper{
    width:100%;
    border-radius:24px; /* igual padrão moderno */
    overflow:hidden;
    background:#fff;
    padding:10px; /* moldura branca */
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border:1px solid var(--border);
}

/* remove cantos duros do iframe */
.map-wrapper iframe{
    width:100%;
    height:300px;
    border:0;
    border-radius:18px; /* cantos internos */
    filter:saturate(0.95) contrast(1.02);
}

/* ======================================================
   DESKTOP
====================================================== */
@media (min-width:768px){
    .topbar-inner{flex-direction:row;justify-content:space-between;align-items:center}
    .nav-actions{flex-direction:row;width:auto}
    .nav-actions .btn{width:auto}
    .contact-grid{grid-template-columns:1fr 1.3fr}
    .map-wrapper iframe{height:420px}
}
