:root{
  --main-color: #89C87E;
  --black: #141414;
  --bg: #0C0C0C;
  --border: 0.1rem solid rgba(255,255,255,0.14);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
}

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

body{ background-color: var(--bg); color:#fff; }

section{ padding: 3rem 2rem; margin: 0 auto; max-width: 1200px; }

/* HEADER */
.header{
  position: fixed; top:0; left:0; right:0; z-index: 99;
  border-bottom: var(--border); background-color: var(--bg);
  backdrop-filter: blur(6px);
}
.header section{
  display:flex; align-items:center; justify-content:space-between;
  padding: 1.2rem 0;
}
.logo img{ height:78px; display:block; }

.navbar a{ margin: 0 1.2rem; font-size:1.8rem; color:#fff; }
.navbar a:hover{ color: var(--main-color); border-bottom: 0.1rem solid var(--main-color); padding-bottom: .4rem; }

.icons a{ margin-left:1rem; display:inline-flex; }
.icons img{ width:26px; height:26px; opacity:.9; transition: transform .2s ease; }
.icons img:hover{ transform: scale(1.15); }

/* HERO */
.home-container{
  min-height: 88vh;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(137,200,126,.15), transparent 60%),
    radial-gradient(800px 400px at 10% 20%, rgba(137,200,126,.12), transparent 60%),
    linear-gradient(180deg, #0C0C0C 0%, #0a0a0a 60%, #0C0C0C 100%);
}
.hero{ display:flex; align-items:center; min-height: 88vh; }
.content{ max-width: 70rem; }
.content h1{ font-size: 6rem; line-height: 1.05; font-weight: 800; }
.content h1 span{ color: var(--main-color); }
.content p{ margin: 1.6rem 0 2.2rem; font-size: 2rem; font-weight: 300; line-height: 1.6; color:#e8e8e8; }
.btn{
  background: var(--main-color); color:#0b0b0b; padding: 1.2rem 2.4rem; font-size: 1.7rem;
  border-radius: 999px; display:inline-block; font-weight:700; letter-spacing:.4px;
}
.btn:hover{ filter: brightness(1.05); transform: translateY(-1px); }

/* TITLES */
.title{ font-size: 4rem; color: var(--main-color); text-align:center; text-transform: uppercase; margin: 4rem 0 3rem; letter-spacing:.8px; }
.title span{ color:#fff; }

/* SOBRE NÓS */
.about .row{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  background-color: var(--black);
  border-radius: 18px;
  overflow: hidden;
}
.about .container-image{
  flex: 1 1 300px;
  min-width: 280px;
}
.about .container-image img{
  width:100%; height:100%; max-height:420px; object-fit: cover; display:block;
}
.about .content{
  flex: 2 1 400px;
  min-width: 340px;
  padding: 2rem 2.4rem;
}
.about .content h3{
  font-size: 3rem;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}
.about .content p{
  font-size: 1.8rem;
  line-height:1.7;
  color:#eaeaea;
}

/* SERVIÇOS */
.box-container{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr)); gap:1.6rem;
}
.services .box{
  text-align:center; border: var(--border); padding: 3rem 2rem; border-radius: 16px; background: #111;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.services .box:hover{ transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.35); background:#151515; }
.services .box img{ height: 64px; margin-bottom: 1.2rem; }
.services .box h3{ font-size: 2.2rem; margin-bottom: .6rem; }
.services .box p{ font-size: 1.6rem; color:#dcdcdc; line-height:1.6; }

/* CONTATO */
.address{ display:block; }
.contact-grid{ display:grid; grid-template-columns: 1.1fr 1fr; gap:1.6rem; }
.contact-card, .map-card{ border: var(--border); background:#111; border-radius:16px; padding:2rem; }
.contact-card h3{ font-size:2.4rem; margin-bottom:1rem; color:#fff; }
.contact-card ul{ list-style:none; margin-bottom:1.6rem; }
.contact-card li{ font-size:1.8rem; margin: .6rem 0; color:#eaeaea; }
.map-card iframe{ border-radius: 12px; min-height: 320px; }

/* FOOTER */
.footer{ text-align:center; padding-top: 1rem; padding-bottom: 4rem; }
.footer .share{ padding: 1rem 0 1.6rem; }
.footer .share a{ margin: 0 .4rem; display:inline-flex; }
.footer .share img{ margin: 0.3rem; border-radius: 50%; padding: 1rem; background:#0f0f0f; }
.footer .share img:hover{ background-color: var(--main-color); }
.copy{ color:#cfcfcf; font-size:1.4rem; margin-top: .6rem; }

/* RESPONSIVE */
@media (max-width: 980px){
  .content h1{ font-size: 4.6rem; }
  .about .row{ flex-direction: column; }
  .contact-grid{ grid-template-columns: 1fr; }
}
