/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8F8F6;
    color:#2F2F35;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
VARIÁVEIS
========================= */

:root{

    --primary:#9B7A4E;
    --primary-light:#B79669;

    --dark:#2F2F35;
    --gray:#6B7280;

    --light:#F8F8F6;
    --white:#FFFFFF;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

/* =========================
CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
TIPOGRAFIA
========================= */

h1,h2,h3{
    font-family:'Poppins',sans-serif;
    font-weight:600;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--primary);
    letter-spacing:3px;
    font-size:.85rem;
    font-weight:600;
}

.section-title h2{
    margin-top:15px;
    font-size:2.7rem;
    line-height:1.2;
}

/* =========================
BOTÕES
========================= */

.btn-primary{

    background:var(--primary);
    color:white;

    padding:16px 32px;
    border-radius:50px;

    transition:.4s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{

    border:1px solid rgba(255,255,255,.3);

    color:white;

    padding:16px 32px;
    border-radius:50px;

    transition:.4s;
}

.btn-secondary:hover{
    background:white;
    color:var(--dark);
}

/* =========================
HEADER
========================= */

.header{

    position:fixed;

    width:100%;
    top:0;
    left:0;

    z-index:999;

    transition:.4s;
}

.header.scrolled{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:90px;
}

.logo img{
    height:65px;
}

.nav ul{

    display:flex;
    gap:40px;
}

.nav a{

    color:var(--dark);
    font-weight:500;

    transition:.3s;
}

.nav a:hover{
    color:var(--primary);
}

.btn-header{

    background:var(--primary);

    color:white;

    padding:14px 24px;

    border-radius:50px;

    transition:.4s;
}

.btn-header:hover{
    transform:translateY(-3px);
}

/* =========================
HERO
========================= */

.hero{

    min-height:100vh;

    background:url('assets/images/hero.jpg') center center/cover;

    position:relative;

    display:flex;
    align-items:center;
}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(20,20,20,.65),
        rgba(20,20,20,.55)
    );
}

.hero-content{

    position:relative;
    z-index:2;

    max-width:700px;

    color:white;
}

.subtitle{

    display:block;

    margin-bottom:20px;

    color:var(--primary-light);

    letter-spacing:3px;
}

.hero h1{

    font-size:3.5rem;

    line-height:1.1;

    margin-bottom:25px;
}

.hero p{

    font-size:1.15rem;

    line-height:1.8;

    margin-bottom:40px;

    color:rgba(255,255,255,.9);
}

.hero-buttons{

    display:flex;
    gap:20px;
}

/* =========================
SOBRE
========================= */

.sobre{

    padding:120px 0;
}

.sobre-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;

    align-items:center;
}

.sobre-image img{

    border-radius:20px;

    box-shadow:var(--shadow);
}

.section-tag{

    color:var(--primary);

    font-size:.85rem;

    letter-spacing:3px;

    font-weight:600;
}

.sobre-content h2{

    margin:20px 0;

    font-size:3rem;
}

.sobre-content p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:18px;
}

/* =========================
SERVIÇOS
========================= */

.servicos{

    padding:120px 0;

    background:white;
}

.servicos-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.card-servico{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.4s;
}

.card-servico:hover{

    transform:translateY(-10px);

    border-bottom:4px solid var(--primary);
}

.card-servico h3{

    margin-bottom:15px;

    font-size:1.3rem;
}

.card-servico p{

    color:var(--gray);

    line-height:1.8;
}

/* =========================
PROCESSO
========================= */

.processo{

    padding:120px 0;
}

.timeline{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.step{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

    text-align:center;
}

.step span{

    font-size:2rem;

    color:var(--primary);

    font-family:'Poppins';

    font-weight:700;
}

.step h3{

    margin:15px 0;
}

/* =========================
GALERIA
========================= */

.projetos{

    padding:120px 0;

    background:white;
}

.galeria{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:20px;
}

.galeria img{

    width:100%;

    height:350px;

    object-fit:cover;

    border-radius:20px;

    transition:.5s;
}

.galeria img:hover{

    transform:scale(1.04);
}

/* =========================
CTA
========================= */

.cta{

    padding:140px 0;

    text-align:center;

    background:var(--dark);

    color:white;
}

.cta h2{

    font-size:3rem;

    margin-bottom:20px;
}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    color:rgba(255,255,255,.8);
}

/* =========================
CONTATO
========================= */

.contato{

    padding:120px 0;

    text-align:center;
}

.contato-info{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;
}

.contato-info a{

    color:var(--dark);

    font-size:1.1rem;

    font-weight:600;
}

/* =========================
FOOTER
========================= */

.footer{

    background:white;

    border-top:1px solid #eee;

    padding:40px 0;

    text-align:center;
}

.footer img{

    height:70px;

    margin:auto;

    margin-bottom:20px;
}

.footer p{

    color:var(--gray);
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:991px){

    .nav{
        display:none;
    }

    .hero h1{
        font-size:3rem;
    }

    .sobre-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:2rem;
    }

    .cta h2{
        font-size:2.2rem;
    }

}

@media(max-width:768px){

    .hero{

        text-align:center;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .sobre-content h2{
        font-size:2.2rem;
    }

}

/* =========================
REVEAL EFFECT
========================= */

.card-servico,
.step,
.galeria img,
.sobre-grid,
.cta,
.contato{

    opacity:0;

    transform:translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;
}

.show{

    opacity:1 !important;

    transform:translateY(0) !important;
}

/* =========================
WHATSAPP FLOAT
========================= */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:9999;

    box-shadow:
    0 10px 30px rgba(37,211,102,.4);

    transition:.3s;
}

.whatsapp-float:hover{

    transform:scale(1.1);
}

/* =========================
EQUIPE
========================= */

.equipe{

    padding:120px 0;

    background:#fff;
}

.equipe-card{

    max-width:700px;

    margin:auto;

    background:white;

    padding:50px;

    border-radius:20px;

    box-shadow:var(--shadow);

    text-align:center;
}

.equipe-card h3{

    font-size:2rem;

    margin-bottom:10px;

    color:var(--primary);
}

.equipe-card h4{

    margin-bottom:30px;

    color:var(--dark);
}

.equipe-card ul{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.equipe-card li{

    color:var(--gray);

    font-size:1.05rem;
}

/* =========================
LOCALIZAÇÃO
========================= */

.localizacao{

    padding:120px 0;

    background:#F8F8F6;
}

.contato-card{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:30px;
}

.contato-item h3{

    margin-bottom:8px;

    color:var(--primary);
}

.contato-item a{

    color:var(--dark);

    font-weight:500;

    transition:.3s;
}

.contato-item a:hover{

    color:var(--primary);
}

.contato-item p{

    color:var(--gray);

    line-height:1.7;
}

.mapa{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.mapa iframe{

    width:100%;

    height:100%;

    min-height:500px;

    border:none;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:991px){

    .localizacao-grid{

        grid-template-columns:1fr;
    }

    .mapa iframe{

        min-height:400px;
    }

}

/* =========================
DIFERENCIAIS
========================= */

.diferenciais{

    padding:120px 0;

    background:#fff;
}

.diferenciais-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.diferencial-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.4s;
}

.diferencial-card:hover{

    transform:translateY(-8px);
}

.diferencial-card h3{

    margin-bottom:15px;

    color:var(--primary);
}

.diferencial-card p{

    color:var(--gray);

    line-height:1.8;
}

/* =========================
NÚMEROS
========================= */

.numeros{

    background:var(--dark);

    color:white;

    padding:100px 0;
}

.numeros .container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:40px;

    text-align:center;
}

.numero h2{

    color:var(--primary-light);

    font-size:3rem;

    margin-bottom:10px;
}

.numero p{

    color:rgba(255,255,255,.8);
}

/* =========================
FAQ
========================= */

.faq{

    padding:120px 0;

    background:#fff;
}

.faq-container{

    max-width:900px;

    margin:auto;
}

.faq details{

    background:#fff;

    margin-bottom:20px;

    padding:25px 30px;

    border-radius:15px;

    box-shadow:var(--shadow);

    cursor:pointer;
}

.faq summary{

    font-family:'Poppins';

    font-weight:600;

    list-style:none;
}

.faq summary::-webkit-details-marker{

    display:none;
}

.faq p{

    margin-top:15px;

    color:var(--gray);

    line-height:1.8;
}