:root {
  --bg: #ffffff;
  --text: #132019;
  --muted: #617068;
  --green: #1fb06d;
  --green-dark: #107548;
  --lime: #d9f85f;
  --yellow: #ffcc4d;
  --soft: #f6fbf6;
  --line: #e6eee7;
  --shadow: 0 24px 70px rgba(21, 80, 51, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.section-pad-small { padding: 48px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,238,231,.85);
}
.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.1rem;
}
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  box-shadow: 0 10px 26px rgba(255, 204, 77, .34);
}
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: .94rem;
  transition: .25s ease;
}
.nav-links a:hover { background: var(--soft); color: var(--green-dark); }
.menu-toggle { display: none; border: 0; background: var(--soft); border-radius: 14px; padding: 10px 13px; font-size: 1.2rem; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(217,248,95,.42), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(31,176,109,.16), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fbfffb 100%);
}
.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .6;
}
.hero-bg-one { width: 180px; height: 180px; background: var(--lime); left: -70px; top: 210px; }
.hero-bg-two { width: 240px; height: 240px; background: rgba(255,204,77,.35); right: -80px; bottom: 120px; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.25rem, 9vw, 7.5rem);
  line-height: .86;
  letter-spacing: -.08em;
  margin-bottom: 26px;
}
.hero-subtitle {
  font-size: clamp(1.22rem, 2.4vw, 1.75rem);
  color: var(--muted);
  line-height: 1.45;
  max-width: 650px;
  font-weight: 650;
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 18px 38px rgba(31, 176, 109, .28);
}
.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-dark);
}
.hero-contact-card {
  margin-top: 30px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 18px 22px;
}
.hero-contact-card span { color: var(--muted); font-weight: 800; font-size: .88rem; }
.hero-contact-card strong { font-size: 1.28rem; }

.hero-visual {
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(16,117,72,.22);
}
.orbit-a { width: 440px; height: 440px; animation: spin 22s linear infinite; }
.orbit-b { width: 315px; height: 315px; animation: spin 16s linear infinite reverse; }
.main-card {
  width: min(390px, 90vw);
  min-height: 340px;
  border-radius: 42px;
  padding: 38px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(230,238,231,.95);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.main-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  font-size: 2.6rem;
  margin-bottom: 28px;
}
.main-card h2 { font-size: 2.05rem; letter-spacing: -.05em; margin-bottom: 14px; }
.main-card p { color: var(--muted); line-height: 1.7; font-weight: 600; }
.floating-chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(21,80,51,.12);
  border-radius: 999px;
  padding: 13px 17px;
  font-weight: 900;
  color: var(--green-dark);
}
.chip-one { top: 62px; left: 34px; }
.chip-two { right: 4px; top: 160px; }
.chip-three { left: 18px; bottom: 92px; }

.intro-box {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
  border-radius: var(--radius);
  padding: 42px;
  background: linear-gradient(135deg, #f7fff8, #fff);
  border: 1px solid var(--line);
  box-shadow: 0 20px 56px rgba(21,80,51,.08);
}
.intro-box h2, .section-heading h2, .process-content h2, .cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: 0;
}
.intro-box p:not(.eyebrow) { color: var(--muted); line-height: 1.8; font-weight: 650; margin-bottom: 0; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-heading p:last-child { color: var(--muted); font-weight: 650; line-height: 1.7; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(21,80,51,.06);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(31,176,109,.32);
}
.card-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--soft);
  font-size: 1.8rem;
  margin-bottom: 22px;
}
.service-card h3 { font-size: 1.34rem; letter-spacing: -.03em; margin-bottom: 12px; }
.service-card p { color: var(--muted); line-height: 1.65; font-weight: 600; }
.service-card span {
  display: block;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 900;
}

.process { background: var(--soft); }
.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.process-content p:not(.eyebrow) { color: var(--muted); line-height: 1.75; font-weight: 650; margin-top: 22px; }
.timeline {
  display: grid;
  gap: 16px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(21,80,51,.06);
}
.timeline-item span {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 900;
}
.timeline-item h3 { margin-bottom: 6px; }
.timeline-item p { color: var(--muted); margin-bottom: 0; font-weight: 600; }

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  border-radius: 36px;
  padding: 44px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,248,95,.48), transparent 28%),
    linear-gradient(135deg, #102116, #174c31);
  color: #fff;
  box-shadow: 0 28px 70px rgba(16,33,22,.22);
}
.cta-box .eyebrow, .cta-box p { color: rgba(255,255,255,.78); }
.cta-box p { max-width: 620px; line-height: 1.75; font-weight: 650; margin-top: 18px; margin-bottom: 0; }
.cta-box .btn-secondary { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff; }

.footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer strong { font-size: 1.05rem; }
.footer p { color: var(--muted); margin: 6px 0 0; font-weight: 600; }
.footer a { color: var(--green-dark); font-weight: 900; }
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(37,211,102,.38);
}

body.js-ready .reveal { opacity: 0; transform: translateY(22px); transition: .8s ease; }
body.js-ready .reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid, .intro-box, .process-grid, .cta-box { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 480px; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .section-pad { padding: 70px 0; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual { min-height: 420px; }
  .orbit-a { width: 330px; height: 330px; }
  .orbit-b { width: 240px; height: 240px; }
  .floating-chip { font-size: .78rem; padding: 10px 12px; }
  .chip-one { left: 0; top: 58px; }
  .chip-two { right: 0; top: 138px; }
  .chip-three { left: 0; bottom: 58px; }
  .main-card { padding: 28px; min-height: 300px; }
  .timeline-item { grid-template-columns: 1fr; }
  .intro-box, .cta-box { padding: 30px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
