
:root {
  --verde-escuro:#004d2a;
  --verde:#007a35;
  --verde-vivo:#18a845;
  --verde-claro:#eaf7ef;
  --amarelo:#ffe600;
  --texto:#163123;
  --muted:#5d6b63;
  --branco:#ffffff;
  --sombra:0 18px 45px rgba(0,77,42,.14);
  --radius:22px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--texto);
  background:#f7fbf8;
  line-height:1.55;
}

a {
  color:inherit;
  text-decoration:none;
}

img {
  max-width:100%;
  display:block;
}

.container {
  max-width:1180px;
  margin:0 auto;
  padding:0 22px;
}

.top-info {
  background:linear-gradient(90deg,#003c21,#006937);
  color:#fff;
  font-size:14px;
}

.top-info .container {
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.header {
  background:#fff;
  position:sticky;
  top:0;
  z-index:99;
  box-shadow:0 8px 28px rgba(0,0,0,.08);
}

.header-inner {
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.logo img {
  width:120px;
  height:auto;
}

.menu {
  display:flex;
  gap:24px;
  align-items:center;
  font-size:15px;
  font-weight:800;
  color:#064424;
}

.menu a:hover {
  color:var(--verde-vivo);
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:12px;
  padding:14px 20px;
  font-weight:900;
  transition:.2s;
  border:0;
  cursor:pointer;
}

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

.btn-whatsapp {
  background:#0aa83b;
  color:#fff;
  box-shadow:0 12px 25px rgba(10,168,59,.22);
}

.btn-outline {
  background:#fff;
  color:#064424;
  border:2px solid #087536;
}

.hero {
  background:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.94) 36%,rgba(255,255,255,.55) 52%,rgba(255,255,255,.06) 72%),
    url('../img/fachada-principal.jpg') right center/contain no-repeat,
    #f7fbf8;
  min-height:445px;
  display:flex;
  align-items:center;
  border-bottom:1px solid #e3eee7;
}

.hero-content {
  width:52%;
  padding:58px 0 54px;
}

.badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#e9fff0;
  color:#006b32;
  border:1px solid #b8e9c8;
  border-radius:999px;
  padding:10px 15px;
  font-weight:900;
  font-size:14px;
  margin-bottom:18px;
}

.hero h1 {
  font-size:54px;
  line-height:1.02;
  color:#004d2a;
  margin:0 0 20px;
  letter-spacing:-1.5px;
}

.hero p {
  font-size:18px;
  color:#25372d;
  margin:0 0 28px;
  max-width:560px;
}

.hero-actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.benefits {
  background:linear-gradient(90deg,#003e22,#007a3a);
  color:#fff;
}

.benefits-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}

.benefit {
  padding:26px 26px;
  display:flex;
  gap:16px;
  align-items:center;
  border-right:1px solid rgba(255,255,255,.15);
}

.benefit:last-child {
  border-right:0;
}

.benefit-icon {
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.benefit strong {
  display:block;
  font-size:17px;
}

.benefit span {
  font-size:14px;
  color:#d9f9e5;
}

.section {
  padding:58px 0;
}

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

.section-title h2 {
  color:#004d2a;
  font-size:34px;
  margin:0 0 8px;
}

.section-title p {
  color:var(--muted);
  margin:0;
  font-size:17px;
}

.services-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.service-card {
  background:#fff;
  border:1px solid #e3eee7;
  border-radius:14px;
  padding:24px 16px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,.04);
}

.service-card .ico {
  font-size:42px;
  color:#007a35;
  margin-bottom:12px;
}

.service-card h3 {
  margin:0 0 8px;
  font-size:16px;
  color:#064424;
}

.service-card p {
  margin:0;
  font-size:13px;
  color:#5f6b64;
}

.content-row {
  display:grid;
  grid-template-columns:360px 1fr;
  gap:26px;
  align-items:stretch;
}

.contact-box {
  background:linear-gradient(155deg,#004d2a,#007a35);
  color:#fff;
  border-radius:18px;
  padding:28px;
  box-shadow:var(--sombra);
}

.contact-box h2 {
  margin:0 0 18px;
  font-size:26px;
}

.contact-item {
  display:flex;
  gap:14px;
  margin:18px 0;
  align-items:flex-start;
}

.contact-item span {
  width:42px;
  height:42px;
  background:rgba(255,255,255,.16);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
}

.contact-box .btn {
  width:100%;
  margin-top:14px;
  background:#20c85a;
  color:#fff;
  font-size:18px;
}

.gallery-box {
  background:#fff;
  border-radius:18px;
  padding:22px;
  border:1px solid #e3eee7;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.gallery-box h2 {
  color:#004d2a;
  margin:0 0 16px;
}

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

.gallery-grid img {
  height:170px;
  width:100%;
  object-fit:cover;
  border-radius:12px;
}

.regions {
  background:#eaf7ef;
  border-radius:18px;
  padding:28px;
  text-align:center;
  border:1px solid #d9eee0;
}

.regions h2 {
  color:#004d2a;
  margin:0 0 12px;
}

.region-list {
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  justify-content:center;
  color:#335344;
  font-size:15px;
}

.region-list a {
  font-weight:700;
}

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

.trust-card {
  background:#fff;
  border-radius:18px;
  padding:22px;
  border:1px solid #e3eee7;
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}

.trust-card h3 {
  color:#004d2a;
  margin:0 0 8px;
}

.footer {
  background:linear-gradient(90deg,#003e22,#006b35);
  color:#fff;
  padding:42px 0 18px;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:28px;
}

.footer-logo img {
  width:140px;
  margin-bottom:12px;
}

.footer p,.footer li,.footer a {
  color:#e1f8e9;
  font-size:14px;
}

.footer h3 {
  margin-top:0;
}

.footer ul {
  list-style:none;
  padding:0;
  margin:0;
}

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.16);
  margin-top:26px;
  padding-top:16px;
  text-align:center;
  font-size:13px;
  color:#d8f5e3;
}

.float-whatsapp {
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:100;
  background:#16b74b;
  color:#fff;
  padding:15px 18px;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  font-weight:900;
}

.page-hero {
  background:linear-gradient(135deg,#004d2a,#007a35);
  color:#fff;
  padding:70px 0;
}

.page-hero h1 {
  font-size:44px;
  margin:0 0 14px;
}

.page-content {
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border-radius:18px;
  padding:32px;
  box-shadow:var(--sombra);
}

.page-content h2 {
  color:#004d2a;
}

@media(max-width:980px){
  .top-info .container {
    flex-direction:column;
    padding-top:8px;
    padding-bottom:8px;
    text-align:center;
  }

  .menu {
    display:none;
  }

  .hero {
    background:
      linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.96) 48%,rgba(255,255,255,.2) 100%),
      url('../img/fachada-principal.jpg') center bottom/cover no-repeat;
    min-height:680px;
    align-items:flex-start;
  }

  .hero-content {
    width:100%;
    padding-top:44px;
  }

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

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

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

  .content-row {
    grid-template-columns:1fr;
  }

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

@media(max-width:560px){
  .header-inner {
    min-height:78px;
  }

  .logo img {
    width:190px;
  }

  .header .btn-whatsapp {
    display:none;
  }

  .hero {
    min-height:640px;
  }

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

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

  .benefits-grid,
  .services-grid,
  .trust-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns:1fr;
  }

  .section {
    padding:42px 0;
  }
}
