/* =========================
   SULAÇAÕ CONSULTING STYLES
========================= */

:root{
    --primary:#0F5132;
    --primary-dark:#0b3d26;
    --accent:#52B788;
    --light:#F8F9FA;
    --text:#1e1e1e;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat', sans-serif;
}

body{
    display:flex;
    min-height:100vh;
    background:#ffffff;
    color:var(--text);
}

/* =========================
   SIDEBAR
========================= */

.sidebar{
    width:260px;
    background:var(--primary);
    color:white;
    padding:50px 30px;
    display:flex;
    flex-direction:column;
    position:fixed;
    height:100vh;
    left:0;
    top:0;
}

.sidebar img{
    width:160px;
    margin-bottom:60px;
}

.sidebar a{
    color:white;
    text-decoration:none;
    margin-bottom:22px;
    font-weight:600;
    transition:all .3s ease;
    position:relative;
}

/* Hover effect */
.sidebar a:hover{
    color:var(--accent);
    transform:translateX(5px);
}

/* Active link highlight */
.sidebar a.active{
    color:var(--accent);
}

/* =========================
   MAIN CONTENT
========================= */

.main{
    margin-left:260px;
    flex:1;
    padding:100px 90px;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    margin-bottom:80px;
}

.hero h1{
    font-size:2.8rem;
    margin-bottom:25px;
    color:var(--primary);
    line-height:1.2;
}

.hero p{
    max-width:720px;
    font-size:1.05rem;
    margin-bottom:35px;
    line-height:1.7;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:14px 30px;
    background:var(--primary);
    color:white;
    text-decoration:none;
    border-radius:4px;
    font-weight:600;
    transition:.3s ease;
}

.btn:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

/* =========================
   SECTIONS
========================= */

.section{
    margin-top:110px;
}

.section h2{
    font-size:1.8rem;
    margin-bottom:30px;
    color:var(--primary);
}

/* =========================
   SERVICES GRID
========================= */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
    margin-top:40px;
}

.card{
    background:var(--light);
    padding:35px;
    border-radius:8px;
    transition:all .3s ease;
}

.card h3{
    margin-bottom:15px;
    color:var(--primary);
}

.card p{
    font-size:.95rem;
    line-height:1.6;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}

/* =========================
   FOOTER
========================= */

.footer{
    margin-top:140px;
    padding-top:40px;
    border-top:1px solid #e0e0e0;
    font-size:.85rem;
    color:#666;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

    body{
        flex-direction:column;
    }

    .sidebar{
        position:relative;
        width:100%;
        height:auto;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        padding:25px 30px;
    }

    .sidebar img{
        margin-bottom:0;
        width:130px;
    }

    .sidebar a{
        margin:0 15px;
    }

    .main{
        margin-left:0;
        padding:60px 30px;
    }

    .hero h1{
        font-size:2.2rem;
    }
}
/* =========================
   CONTACT FORM
========================= */

.contact-form{
    max-width:600px;
    margin-top:30px;
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    padding:14px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:4px;
    font-size:.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:var(--accent);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 992px){

    .sidebar{
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .sidebar img{
        width: 120px;
        margin-bottom: 20px;
    }

    .sidebar a{
        margin: 10px 0;
    }

    .main{
        margin-left: 0;
        width: 100%;
    }

    .hero{
        padding: 80px 20px;
    }

    .section{
        padding: 60px 20px;
    }

}