/* style.css */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#f5f5f5;
  color:#111;
}

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

/* HEADER */

.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:rgba(0,0,0,0.96);
  border-bottom:1px solid rgba(212,175,55,0.25);
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-area img{
  width:150px;
  height:150px;
  object-fit:contain;
}

.logo-text h2{
  color:#d4af37;
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  font-weight:600;
}

.logo-text span{
  color:#ddd;
  font-size:10px;
  letter-spacing:1px;
}

.menu{
  display:flex;
  gap:34px;
}

.menu a{
  text-decoration:none;
  color:white;
  font-size:14px;
  transition:.3s;
}

.menu a:hover{
  color:#d4af37;
}

.whatsapp-btn{
  border:1px solid #d4af37;
  color:#d4af37;
  padding:14px 22px;
  border-radius:6px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.3s;
}

.whatsapp-btn:hover{
  background:#d4af37;
  color:black;
}

.mobile-menu-btn{
  display:none;
  color:white;
  font-size:28px;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  background:#000;
}

.mobile-menu a{
  padding:18px;
  color:white;
  text-decoration:none;
  border-top:1px solid rgba(255,255,255,.08);
}

/* HERO */

.hero{
  min-height:100vh;
  background:
  linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
  url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1800&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-left{
  width:100%;
  max-width:650px;
}

.hero-logo{
  width:180px;
  margin-bottom:20px;
}

.line{
  width:90px;
  height:2px;
  background:#d4af37;
  margin-bottom:30px;
}

.hero h1{
  color:#d4af37;
  font-family:'Cormorant Garamond', serif;
  font-size:72px;
  line-height:1;
  margin-bottom:24px;
}

.hero h3{
  color:white;
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  font-weight:400;
  margin-bottom:28px;
}

.hero p{
  color:#eee;
  font-size:22px;
  line-height:1.7;
  margin-bottom:35px;
}

.primary-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:#d4af37;
  color:#111;
  padding:18px 30px;
  text-decoration:none;
  border-radius:5px;
  font-weight:600;
  transition:.3s;
}

.primary-btn:hover{
  transform:translateY(-3px);
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-family:'Cormorant Garamond', serif;
  color:#9a6a13;
  font-size:54px;
  font-weight:600;
}

.title-line{
  width:70px;
  height:2px;
  background:#c79c37;
  margin:12px auto 0;
}

.left-align{
  text-align:left;
}

.left-align .title-line{
  margin-left:0;
}

/* AREAS */

.areas{
  padding:110px 0;
  background:#f7f7f7;
}

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

.card{
  background:white;
  padding:50px 35px;
  border-radius:10px;
  text-align:center;
  border:1px solid #ececec;
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card i{
  color:#b38322;
  font-size:48px;
  margin-bottom:26px;
}

.card h3{
  margin-bottom:16px;
  font-family:'Cormorant Garamond', serif;
  font-size:32px;
  color:#222;
}

.card p{
  color:#555;
  line-height:1.8;
}

/* SOBRE */

.sobre{
  padding:110px 0;
  background:white;
}

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

.sobre-image img{
  width:100%;
  border-radius:10px;
}

.sobre-content p{
  margin-bottom:24px;
  line-height:1.9;
  color:#333;
  font-size:18px;
}

/* CONTATO */

.contato{
  background:black;
  padding:90px 0;
}

.contato .section-title h2{
  color:#d4af37;
}

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

.contact-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  color:white;
}

.contact-card i{
  color:#d4af37;
  font-size:52px;
  margin-bottom:20px;
}

.contact-card h3{
  margin-bottom:16px;
  color:#d4af37;
  font-family:'Cormorant Garamond', serif;
  font-size:32px;
}

.contact-card p{
  color:#ddd;
  line-height:1.8;
  margin:0;
}

.onde-estamos{
  margin-top:60px;
  text-align:center;
}

.onde-estamos h3{
  margin-bottom:14px;
  color:#d4af37;
  font-family:'Cormorant Garamond', serif;
  font-size:42px;
}

.onde-estamos p{
  color:#ddd;
  line-height:1.8;
  margin-bottom:24px;
}

.map-wrap{
  position:relative;
  border:1px solid rgba(212,175,55,.35);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,.28);
}

.map-wrap iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

.map-link-overlay{
  position:absolute;
  inset:0;
  z-index:3;
}

/* FOOTER */

.footer{
  background:#050505;
  border-top:1px solid rgba(212,175,55,.2);
  text-align:center;
  padding:40px 20px;
}

.footer img{
  width:200px;
  margin-bottom:20px;
}

.footer p{
  color:#aaa;
}

/* FLOAT */

.scroll-top,
.whatsapp-float{
  position:fixed;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999;
  text-decoration:none;
  box-shadow:0 5px 18px rgba(0,0,0,.3);
}

.scroll-top{
  right:20px;
  bottom:90px;
  background:#111;
  color:white;
  opacity:0;
  pointer-events:none;
  transition:.3s;
}

.scroll-top.show{
  opacity:1;
  pointer-events:auto;
}

.whatsapp-float{
  right:20px;
  bottom:20px;
  background:#25d366;
  color:white;
  font-size:28px;
}

.scroll-top i{
  font-size:20px;
}

.scroll-top img,
.whatsapp-float img{
  width:30px;
  height:30px;
  display:block;
}

.scroll-top img{
  color:#fff;
}

/* RESPONSIVO */

@media(max-width:1100px){

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

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

}

@media(max-width:900px){

  .menu,
  .desktop-btn{
    display:none;
  }

  .mobile-menu-btn{
    display:block;
  }

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

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

}

@media(max-width:768px){

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

  .onde-estamos h3{
    font-size:34px;
  }

  .map-wrap iframe{
    height:300px;
  }

  .hero{
    padding-top:140px;
    padding-bottom:80px;
  }

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

  .hero h3{
    font-size:24px;
  }

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

  .section-title h2{
    font-size:42px;
  }

  .logo-text{
    display:none;
  }

}
