/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    color:#333;
    background:#ffffff;
    line-height:1.7;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* TOPO */

.topo{
    background:#111111;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.topo .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    max-height:120px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav a{
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

nav a:hover{
    color:#c9a34e;
}

/* HERO */

.hero{
    background:#111111;
    color:#ffffff;
    padding:50px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.hero h1{
    font-family:'Merriweather', serif;
    font-size:48px;
    margin-bottom:20px;
    color:#ffffff;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-foto{
    text-align:center;
}

.hero-foto img{
    width:100%;
    max-width:420px;
    border-radius:10px;
    border:4px solid #c9a34e;
}

/* BOTÕES */

.btn{
    display:inline-block;
    background:#c9a34e;
    color:#111111;
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#b08d3f;
}

/* SOBRE */

.sobre{
    padding:80px 0;
}

.sobre h2{
    text-align:center;
    margin-bottom:30px;
    font-family:'Merriweather', serif;
    color:#111111;
}

.sobre p{
    margin-bottom:20px;
    text-align:justify;
}
.sobre .container{
    max-width:900px;
}

/* ÁREAS */

.areas{
    background:#f5f5f5;
    padding:80px 0;
}

.areas h2{
    text-align:center;
    margin-bottom:50px;
    font-family:'Merriweather', serif;
    color:#111111;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#ffffff;
    text-decoration:none;
    color:#111111;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:20px;
    text-align:center;
    font-size:18px;
}

/* RODAPÉ */

footer{
    background:#0a0a0a;
    color:#ffffff;
    padding:40px 0;
    text-align:center;
}

footer h3{
    margin-bottom:15px;
    color:#c9a34e;
}

footer p{
    margin-bottom:12px;
}

footer a{
    color:#c9a34e;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;

    background:#25D366;
    color:#ffffff;

    text-decoration:none;

    padding:15px 22px;

    border-radius:50px;

    font-weight:700;

    box-shadow:0 4px 15px rgba(0,0,0,.25);

    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.05);
}

/* RESPONSIVO */

@media(max-width:991px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

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

}

@media(max-width:768px){

    .topo .container{
        flex-direction:column;
        gap:20px;
    }

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

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

    .cards{
        grid-template-columns:1fr;
    }

}

@media(max-width:480px){

    .hero{
        padding:60px 0;
    }

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

    nav ul{
        gap:10px;
    }

    nav a{
        font-size:13px;
    }

}
/* Página ativa */

nav a.ativo{
    color:#c9a34e;
    font-weight:600;
}

/* Fade de carregamento */

body{
    opacity:0;
    transition:opacity .4s ease;
}

body.loaded{
    opacity:1;
}
/* PÁGINAS INTERNAS */

.hero-interna{
    padding:70px 0;
    text-align:center;
}

.hero-interna h1{
    font-size:48px;
    margin-bottom:15px;
}

.pagina-interna{
    padding:80px 0;
}

.imagem-area{
    text-align:center;
    margin-bottom:40px;
}

.imagem-area img{
    width:100%;
    max-width:700px;
    border-radius:10px;
}

.conteudo-area{
    max-width:900px;
    margin:auto;
}

.conteudo-area p{
    margin-bottom:20px;
    text-align:justify;
}
