* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f6f2;
    color: #222;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* ==========================
   HEADER
========================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    width: 100%;
    height: 140px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul {
    display: flex;
    gap: 60px;
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
}

.navbar a.active {
    color: #b08d57;
}

/* ==========================
   HERO
========================== */

.hero {
    grid-template-columns:42% 58%;
    height: 100vh;
    display: grid;
    overflow: hidden;
}

.hero-left{
    position:relative;
    display:flex;
    align-items:center;
    padding-top:0;
}

.hero-content{
    transform:translateY(-40px);
}

.hero-left::after {
    content: '';

    position: absolute;

    top: 0;
    right: -200px;

    width: 260px;
    height: 100%;

    background: linear-gradient(to right,
            rgba(248, 246, 242, 1),
            rgba(248, 246, 242, .85),
            rgba(248, 246, 242, 0));

    z-index: 10;
}

.hero h1 span{
    color:#c29a53;
    font-size:0.92em;
}

.hero-content{
    width:100%;
    max-width:650px;
    margin-left:60px;

    position:relative;
    z-index:20;

    margin-top:-120px;
    
}

.hero-left{
    align-items:center;
    padding-top:120px;
}

.hero-logo{
    margin-top:0;
}

.hero-logo img {
    width: 260px;
    margin-bottom: 35px;
    margin-left: -30px;
}

.hero-mini {
    color: #b08d57;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1px;
}

.hero h1 span {
    color:#c29a53;
}

.hero-line {
    width: 55px;
    height: 2px;
    background: #b08d57;
    margin: 30px 0;
}

.hero p {
    max-width: 420px;

    color: #5c5c5c;
    font-size: 20px;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 16px;
}

.btn-gold,
.btn-outline {
    width: 220px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.btn-gold {
    background: #b08d57;
    color: white;
}

.btn-outline {
    border: 1px solid #b08d57;
    color: #222;
}

.hero-right {
    height: 100vh;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

/* ==========================
   TITULOS
========================== */

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header span {
    color: #b08d57;
    font-size: 13px;
    letter-spacing: 2px;
}

.section-header h2 {
    margin-top: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 500;
}

/* ==========================
   AREAS
========================== */

.areas {
    padding: 120px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.area-card {
    background: white;
    border: 1px solid #ece7df;
    padding: 40px 25px;
    text-align: center;
    transition: .3s;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.area-icon {
    font-size: 42px;
    margin-bottom: 25px;
}

.area-card h3 {
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
}

.area-card p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================
   EQUIPE
========================== */

.equipe {
    padding: 120px 0;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.team-card {
    background: white;
    display: grid;
    grid-template-columns: 320px 1fr;
    border: 1px solid #ece7df;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
}

.gold-divider {
    width: 40px;
    height: 2px;
    background: #b08d57;
    margin: 25px 0;
}

.team-info p {
    color: #666;
}

/* ==========================
   CONTATO
========================== */

.contato {
    padding: 120px 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 300px 1fr 400px;
    gap: 30px;
}

.contact-left span {
    color: #b08d57;
    font-size: 13px;
    letter-spacing: 2px;
}

.contact-left h2 {
    margin: 15px 0 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    line-height: 1.1;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ddd;
    background: white;
    padding: 18px;
    font-size: 15px;
}

.contact-form button {
    background: #b08d57;
    color: white;
    border: none;
    padding: 18px;
    cursor: pointer;
    font-weight: 600;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

/* ==========================
   FOOTER
========================== */

footer {
    background: #171717;
    color: white;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-grid img {
    height: 90px;
}

.footer-grid h4 {
    margin-bottom: 20px;
    color: #b08d57;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li,
.footer-grid p {
    margin-bottom: 10px;
    color: #cfcfcf;
}

/* ==========================
   WHATSAPP
========================== */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 999;
}

nav ul {
    gap: 55px;
}

nav a {
    font-size: 15px;
    font-weight: 600;
}

/* ==========================
   RESPONSIVO
========================== */

@media(max-width:1200px) {

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        height: 450px;
    }

    .hero-left {
        padding: 140px 30px 60px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 42px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        grid-template-columns: 1fr;
    }

    .team-info {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

@media (min-width: 1600px){

    .hero-content{
        max-width:620px;
        transform:translateY(-60px);
    }

    .hero h1{
        font-size:78px;
    }

    .hero-logo img{
        width:320px;
    }

    .hero p{
        font-size:20px;
    }
}

@media (min-width:1600px){

    .hero{
        grid-template-columns:40% 60%;
    }

    .hero-content{
        margin-left:80px;
    }

    .hero h1{
        font-size:78px;
    }

    .hero-logo img{
        width:280px;
    }
}