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

:root{
    --primary:#9C4F25;
    --primary-light:#C67A44;
    --text:#1f2937;
    --muted:#5b6474;
    --bg:#f6f8fc;
    --white:#ffffff;
    --radius:22px;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,sans-serif;
    background:var(--bg);
    color:var(--text);
    padding-top:88px;
}

.wrap{
    width:min(1180px,92%);
    margin:auto;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:88px;
    background:rgba(255,255,255,.90);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,.06);
    z-index:1000;
}

.navbar-container{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.navbar-brand{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.navbar-logo{
    height:80px;
    width:auto;
    display:block;
    object-fit:contain;
    transition:.3s;
}

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

.navbar-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:36px;
    list-style:none;
    margin:0;
    padding:0;
    flex:1;
}

.navbar-menu li{
    position:relative;
}

.navbar-menu a{
    text-decoration:none;
    color:var(--text);
    font-size:15px;
    font-weight:600;
    transition:.25s;
}

.navbar-menu a:hover,
.navbar-menu a.active{
    color:var(--primary);
}

.dropdown>a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-menu{
    position:absolute;
    top:42px;
    left:0;
    width:240px;
    list-style:none;
    padding:10px 0;
    border-radius:16px;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:12px 18px;
}

.btn-primary,
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 26px;
    border-radius:999px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    transition:.25s;
}

.btn-primary:hover,
.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(156,79,37,.25);
}

.whatsapp-connect{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:1001;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 20px;
    border-radius:999px;
    background:#25d366;
    color:#fff;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 12px 28px rgba(37,211,102,.35);
    transition:transform .25s, box-shadow .25s;
}

.whatsapp-connect:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 32px rgba(37,211,102,.45);
}

.whatsapp-connect svg{
    width:22px;
    height:22px;
    fill:currentColor;
}

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    padding:110px 0;
}

.blob{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    filter:blur(90px);
    z-index:0;
}

.b1{left:-140px;top:-100px;background:#9c4f2525;}
.b2{right:-140px;bottom:-100px;background:#c67a4425;}

.hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:#f3e7df;
    color:var(--primary);
}

h1{
    font-size:66px;
    line-height:1.05;
    margin:22px 0;
}

h1 span{
    color:var(--primary);
}

p{
    font-size:20px;
    color:var(--muted);
}

.actions{
    display:flex;
    gap:18px;
    margin:34px 0;
}

.outline{
    padding:13px 24px;
    border-radius:999px;
    border:2px solid var(--primary);
    color:var(--primary);
    text-decoration:none;
    font-weight:700;
}

.trust{
    display:flex;
    gap:30px;
}

.trust div{
    display:flex;
    flex-direction:column;
}

.dashboard .window{
    background:#fff;
    padding:28px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.topbar{
    display:flex;
    gap:8px;
    margin-bottom:18px;
}

.topbar span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ddd;
}

.metric{
    display:flex;
    justify-content:space-between;
    background:#f8fbff;
    padding:14px;
    border-radius:12px;
    margin-top:12px;
}

.section{
    padding:90px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
}

.about-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.timeline-item{
    display:flex;
    justify-content:space-between;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

@media(max-width:900px){

    body{
        padding-top:80px;
    }

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

    .navbar-menu,
    .btn-primary{
        display:none;
    }

    .navbar-logo{
        height:52px;
    }

    h1{
        font-size:42px;
    }

    .trust{
        flex-wrap:wrap;
    }

    .whatsapp-connect{
        right:16px;
        bottom:16px;
        padding:14px;
    }

    .whatsapp-connect span{
        display:none;
    }
}
