:root {
  --green-950: #052b12;
  --green-900: #074018;
  --green-800: #0b5a22;
  --green-700: #087d30;
  --green-600: #02a836;
  --green-500: #12c849;
  --green-100: #e8f8ee;
  --green-50: #f4fff7;
  --white: #ffffff;
  --soft: #f6faf7;
  --ink: #142018;
  --muted: #607166;
  --line: rgba(5, 43, 18, 0.14);
  --shadow: 0 24px 60px rgba(5, 43, 18, 0.14);
  --shadow-soft: 0 12px 32px rgba(5, 43, 18, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1240px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 235px; height: 66px; object-fit: contain; object-position: left center; }
.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.menu a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 800;
  font-size: 0.95rem;
}
.menu a:hover { background: var(--green-100); color: var(--green-700); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(2, 168, 54, 0.22);
}
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 8px;
  background: var(--green-900);
}
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(18, 200, 73, .16), transparent 35%),
    radial-gradient(circle at 88% 22%, rgba(5, 43, 18, .17), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5fff8 58%, #e7faed 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5,43,18,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,43,18,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: -3;
}
.decor { position: absolute; border-radius: 50%; filter: blur(6px); z-index: -2; }
.decor-one { width: 420px; height: 420px; right: -160px; top: 80px; background: rgba(18,200,73,.16); }
.decor-two { width: 260px; height: 260px; left: -110px; bottom: 70px; background: rgba(5,43,18,.12); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  align-items: center;
  gap: 56px;
}
.kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 13px;
  margin-bottom: 16px;
  border: 1px solid rgba(2, 168, 54, .25);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--green-800);
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.kicker.light { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.28); }
h1, h2, h3 { color: var(--green-950); line-height: 1.08; }
h1 { font-size: clamp(2.65rem, 7vw, 6.2rem); letter-spacing: -0.06em; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -0.045em; margin-bottom: 18px; }
h3 { font-size: 1.18rem; margin-bottom: 10px; }
.lead { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.32rem); color: #385040; margin-bottom: 28px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.btn { min-height: 52px; padding: 14px 22px; }
.btn.primary { color: var(--white); background: linear-gradient(135deg, var(--green-800), var(--green-500)); box-shadow: 0 14px 28px rgba(2,168,54,.22); }
.btn.secondary { color: var(--green-900); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.btn.white { color: var(--green-900); background: var(--white); box-shadow: 0 16px 28px rgba(0,0,0,.12); }
.btn.large { width: fit-content; padding-inline: 30px; }
.quick-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 780px; }
.quick-info article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 8px 28px rgba(5,43,18,.07);
}
.quick-info strong { display: block; color: var(--green-950); font-size: .96rem; }
.quick-info span { display: block; color: var(--muted); font-weight: 700; }
.hero-logo { position: relative; }
.logo-frame {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.logo-frame img { width: 100%; min-height: 260px; object-fit: contain; }
.mini-card {
  width: min(310px, 90%);
  margin: -26px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: var(--green-950);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.mini-card span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--green-500); font-weight: 900; }
.mini-card p { font-weight: 800; }

.section-title { max-width: 820px; margin-bottom: 36px; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title p:not(.kicker) { color: var(--muted); font-size: 1.05rem; }
.attention-grid, .services-grid, .steps { display: grid; gap: 22px; }
.attention-grid { grid-template-columns: repeat(3, 1fr); }
.attention-card, .service-card, .steps article, .faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.attention-card { padding: 30px; }
.icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 18px; background: var(--green-100); font-size: 1.7rem; }
.attention-card p, .service-card p, .steps p, .faq p { color: var(--muted); }
.services { background: linear-gradient(180deg, var(--soft), #ffffff); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { padding: 28px; position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--green-800), var(--green-500)); }
.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
}
.service-card.wide { grid-column: span 3; }
.focus { background: var(--green-950); color: var(--white); position: relative; overflow: hidden; }
.focus::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(18,200,73,.18); right: -180px; top: -160px; }
.focus-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 30px; position: relative; }
.focus h2, .focus h3 { color: var(--white); }
.focus-panel, .list-panel { border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-xl); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); box-shadow: 0 22px 52px rgba(0,0,0,.16); }
.focus-panel { padding: 36px; }
.focus-panel p:not(.kicker) { color: rgba(255,255,255,.80); margin-bottom: 24px; }
.list-panel { padding: 32px; }
.list-panel ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; list-style: none; }
.list-panel li {
  padding: 14px 14px 14px 42px;
  border-radius: 16px;
  background: rgba(255,255,255,.09);
  position: relative;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.list-panel li::before { content: "✓"; position: absolute; left: 14px; top: 14px; color: var(--green-500); font-weight: 900; }
.steps { grid-template-columns: repeat(3, 1fr); }
.steps article { padding: 30px; }
.steps b { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px; border-radius: 18px; background: linear-gradient(135deg, var(--green-800), var(--green-500)); color: var(--white); font-size: 1.2rem; }
.faq { background: #ffffff; }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; align-items: start; }
.accordion { display: grid; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: var(--white); color: var(--green-950); font-weight: 900; font-size: 1rem; text-align: left; cursor: pointer; }
.faq-item button span { font-size: 1.4rem; color: var(--green-700); }
.faq-item div { display: none; padding: 0 22px 22px; }
.faq-item.open div { display: block; }
.faq-item.open button span { transform: rotate(45deg); }
.contact { background: linear-gradient(135deg, #f4fff7 0%, #ffffff 100%); }
.contact-card {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 26px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(18,200,73,.18), transparent 34%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-card h2 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,.84); }
.contact-box { padding: 22px; border-radius: 22px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); }
.contact-box p + p { margin-top: 10px; }
.contact-box a { font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.footer { background: #031d0c; color: rgba(255,255,255,.78); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 30px; }
.footer img { width: 230px; padding: 10px; border-radius: 18px; background: #ffffff; margin-bottom: 16px; }
.footer h3 { color: #ffffff; margin-bottom: 14px; }
.footer a { display: block; margin: 8px 0; }
.footer a:hover { color: var(--green-500); }
.copy { width: min(var(--max), calc(100% - 40px)); margin: 30px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; }
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  padding: 15px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #128c3c, #12c849);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.top-btn {
  position: fixed;
  right: 22px;
  bottom: 82px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
}
.top-btn.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 980px) {
  .nav { min-height: 78px; }
  .brand img { width: 198px; height: 58px; }
  .menu-btn { display: block; }
  .menu {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }
  .menu.open { display: flex; }
  .menu a { padding: 13px 16px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding-top: 38px; }
  .hero-grid, .focus-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .quick-info, .attention-grid, .services-grid, .steps { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: span 1; }
  .list-panel ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, var(--max)); }
  .section { padding: 66px 0; }
  .brand img { width: 172px; height: 54px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(2.35rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(1.85rem, 10vw, 2.65rem); }
  .actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .quick-info article, .attention-card, .service-card, .steps article { padding: 22px; }
  .logo-frame { padding: 18px; border-radius: 24px; }
  .logo-frame img { min-height: 170px; }
  .focus-panel, .list-panel, .contact-card { padding: 24px; border-radius: 24px; }
  .whatsapp-float { left: 14px; right: 14px; text-align: center; justify-content: center; display: flex; }
  .top-btn { bottom: 84px; }
}
