:root {
  --green-950: #08271a;
  --green-900: #0a3522;
  --green-800: #0f5132;
  --green-700: #176b43;
  --green-100: #e9f5ee;
  --gold: #f2c14e;
  --gold-dark: #c9961f;
  --cream: #fffaf0;
  --ink: #16211a;
  --muted: #5d6c63;
  --line: #dbe7df;
  --white: #ffffff;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(10, 53, 34, 0.12);
  --shadow-sm: 0 8px 24px rgba(10, 53, 34, 0.09);
  --radius: 20px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 1000;
  background: var(--white); color: var(--green-900); padding: 10px 14px;
  border-radius: 10px; box-shadow: var(--shadow-sm); font-weight: 700;
}
.skip-link:focus { top: 12px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 82px 0; }
.section-sm { padding: 54px 0; }
.section-soft { background: linear-gradient(180deg, #f8fbf9 0%, #eef7f2 100%); }
.section-cream { background: var(--cream); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stack > * + * { margin-top: 18px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-700); font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; font-size: .78rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-dark); }
.section-title { margin: 10px 0 14px; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; letter-spacing: -.035em; }
.section-copy { color: var(--muted); font-size: 1.05rem; max-width: 720px; }
.center { text-align: center; }
.center .section-copy { margin-inline: auto; }

.topbar {
  background: var(--green-950); color: #d8eadf; font-size: .89rem;
}
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { text-decoration: none; }
.topbar-links { display: flex; gap: 18px; align-items: center; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,81,50,.08);
}
.navbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; min-width: 250px; }
.brand img { width: 48px; height: 48px; }
.brand-text strong { display: block; color: var(--green-900); font-size: 1rem; line-height: 1.15; }
.brand-text span { color: var(--muted); font-size: .78rem; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  text-decoration: none; color: #33463b; font-weight: 700; font-size: .92rem;
  padding: 10px 12px; border-radius: 10px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--green-100); color: var(--green-800); }
.menu-toggle { display: none; border: 0; background: var(--green-100); color: var(--green-900); width: 44px; height: 44px; border-radius: 12px; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block; content: ""; width: 21px; height: 2px; background: currentColor; margin: 5px auto; border-radius: 10px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: 12px; padding: 12px 18px;
  text-decoration: none; font-weight: 800; line-height: 1.2; transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-800); color: var(--white); box-shadow: 0 10px 25px rgba(15,81,50,.2); }
.btn-primary:hover { background: var(--green-700); }
.btn-gold { background: var(--gold); color: var(--green-950); box-shadow: 0 10px 24px rgba(201,150,31,.24); }
.btn-outline { border-color: rgba(255,255,255,.42); color: white; background: rgba(255,255,255,.06); }
.btn-outline-dark { border-color: var(--green-800); color: var(--green-800); background: white; }
.btn-sm { padding: 9px 13px; font-size: .88rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  color: white; background: var(--green-900) url('../images/hero-pattern.svg') center/cover no-repeat;
  overflow: hidden; position: relative;
}
.hero-inner { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 48px; min-height: 650px; padding: 72px 0; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.055em; margin: 12px 0 22px; max-width: 780px; }
.hero p { color: #d9e7df; font-size: 1.13rem; max-width: 700px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; font-weight: 700; font-size: .85rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.hero-badge { display: flex; gap: 8px; align-items: center; color: #e9f5ee; font-size: .92rem; }
.hero-badge::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; background: rgba(242,193,78,.17); color: var(--gold); border-radius: 50%; font-weight: 900; }
.hero-card {
  background: rgba(255,255,255,.97); color: var(--ink); border-radius: 26px; padding: 28px;
  box-shadow: 0 35px 90px rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.4);
}
.hero-card h2 { margin: 0 0 8px; color: var(--green-900); font-size: 1.55rem; }
.hero-card p { color: var(--muted); font-size: .95rem; margin-top: 0; }
.quick-list { display: grid; gap: 12px; margin: 20px 0 0; }
.quick-item { display: flex; align-items: center; gap: 13px; padding: 14px; background: #f7faf8; border: 1px solid var(--line); border-radius: 14px; }
.quick-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--green-100); color: var(--green-800); font-size: 1.2rem; flex: 0 0 auto; }
.quick-item strong { display: block; }
.quick-item span { color: var(--muted); font-size: .85rem; }

.page-hero { background: linear-gradient(130deg, var(--green-950), var(--green-800)); color: white; padding: 88px 0 74px; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); line-height: 1.05; letter-spacing: -.045em; margin: 10px 0 18px; }
.page-hero p { color: #d7e8df; max-width: 760px; font-size: 1.1rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: #c6dacd; font-size: .88rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

.card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); height: 100%;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); transition: .22s ease; }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: var(--green-100); color: var(--green-800); font-size: 1.45rem; margin-bottom: 18px; }
.card h3 { margin: 0 0 10px; font-size: 1.3rem; color: var(--green-950); }
.card p { color: var(--muted); margin-bottom: 0; }
.card-link { display: inline-flex; margin-top: 18px; color: var(--green-700); font-weight: 800; text-decoration: none; }
.card-link::after { content: "→"; margin-left: 8px; }

.feature-panel { background: var(--green-950); color: white; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.feature-panel-inner { display: grid; grid-template-columns: 1fr 1fr; }
.feature-copy { padding: 46px; }
.feature-copy p { color: #d7e7de; }
.feature-visual { min-height: 390px; background: linear-gradient(145deg, rgba(242,193,78,.22), rgba(15,81,50,.1)), url('../images/hero-pattern.svg') center/cover; display: grid; place-items: center; }
.visual-emblem { width: 210px; height: 210px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: grid; place-items: center; font-size: 4.2rem; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before { content: "✓"; flex: 0 0 auto; width: 23px; height: 23px; display: grid; place-items: center; background: var(--green-100); color: var(--green-800); border-radius: 50%; font-weight: 900; margin-top: 2px; }
.feature-copy .check-list li::before { background: rgba(242,193,78,.16); color: var(--gold); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: white; text-align: center; }
.stat strong { display: block; font-size: 2rem; color: var(--green-800); line-height: 1; margin-bottom: 8px; }
.stat span { color: var(--muted); font-size: .9rem; }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-item { position: relative; padding: 26px 22px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.process-item::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--green-800); color: white; font-weight: 900; margin-bottom: 18px; }
.process-item h3 { margin: 0 0 7px; }
.process-item p { color: var(--muted); margin: 0; font-size: .94rem; }

.package-card { overflow: hidden; padding: 0; }
.package-head { padding: 26px; background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: white; }
.package-head .tag { display: inline-block; background: rgba(242,193,78,.18); color: var(--gold); padding: 5px 9px; border-radius: 999px; font-size: .76rem; font-weight: 800; }
.package-head h3 { color: white; margin-top: 14px; }
.package-body { padding: 26px; }
.package-note { font-size: .84rem; color: var(--muted); margin-top: 16px; }

.notice { padding: 18px 20px; border-left: 4px solid var(--gold-dark); background: #fff8df; border-radius: 0 12px 12px 0; color: #5f4a13; }

.cta-band { background: linear-gradient(120deg, var(--green-950), var(--green-700)); color: white; border-radius: 26px; padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.cta-band p { margin: 0; color: #d6e7dd; max-width: 720px; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.contact-card { background: var(--green-950); color: white; border-radius: 24px; padding: 32px; position: sticky; top: 110px; }
.contact-card h2 { margin-top: 0; }
.contact-card p { color: #d4e5dc; }
.contact-list { display: grid; gap: 14px; margin-top: 25px; }
.contact-item { display: flex; gap: 13px; align-items: flex-start; }
.contact-item a { color: white; text-decoration: none; }
.contact-item small { display: block; color: #a9c4b5; }
.contact-item .quick-icon { background: rgba(255,255,255,.09); color: var(--gold); }

.form-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #26392e; font-size: .92rem; }
input, select, textarea {
  width: 100%; border: 1px solid #cddbd2; border-radius: 11px; padding: 12px 13px; background: #fbfdfc; color: var(--ink); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(23,107,67,.1); }
textarea { min-height: 135px; resize: vertical; }
.form-note { color: var(--muted); font-size: .84rem; }
.honeypot { position: absolute; left: -9999px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.form-status { margin-top: 14px; font-weight: 700; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--green-700); }

.map-wrap { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); min-height: 390px; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; min-height: 390px; border: 0; display: block; }

.faq { display: grid; gap: 12px; max-width: 850px; margin: 30px auto 0; }
details { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: white; }
summary { cursor: pointer; font-weight: 850; color: var(--green-950); }
details p { color: var(--muted); margin: 12px 0 0; }

.footer { background: var(--green-950); color: #d2e2d9; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .75fr 1fr; gap: 34px; }
.footer .brand { min-width: 0; }
.footer .brand-text strong { color: white; }
.footer .brand-text span { color: #abc1b4; }
.footer h3 { color: white; font-size: 1rem; margin: 0 0 14px; }
.footer p { color: #abc1b4; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { color: #d2e2d9; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #98b1a3; font-size: .86rem; }

.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%; background: #25d366; color: white;
  text-decoration: none; font-size: 1.65rem; box-shadow: 0 15px 30px rgba(0,0,0,.2); border: 3px solid white;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }

.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-weight: 750; font-size: .86rem; }

.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-left: 56px; }
.timeline-dot { position: absolute; left: 0; top: 3px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--green-800); color: white; font-weight: 900; border: 5px solid white; box-shadow: 0 0 0 1px var(--line); }
.timeline-item h3 { margin: 0 0 6px; }
.timeline-item p { color: var(--muted); margin: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 980px) {
  .hero-inner, .feature-panel-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .hero-card { max-width: 660px; }
  .grid-4, .stats, .process { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { position: static; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch;
    background: white; padding: 12px; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 13px; }
  .desktop-cta { display: none; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 24px, 1120px); }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-links { display: none; }
  .brand { min-width: 0; }
  .brand-text span { display: none; }
  .brand img { width: 42px; height: 42px; }
  .section { padding: 62px 0; }
  .hero-inner { padding: 58px 0; gap: 30px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .hero-card, .feature-copy, .form-card, .contact-card { padding: 23px; }
  .grid-2, .grid-3, .grid-4, .stats, .process, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 28px; flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .feature-visual { min-height: 290px; }
  .visual-emblem { width: 170px; height: 170px; }
  .whatsapp-float { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}
