:root {
  --paper: #f5f2eb;
  --paper-2: #ece8df;
  --surface: #fffdf9;
  --surface-soft: #faf8f3;
  --ink: #1d2a32;
  --ink-soft: #536169;
  --line: #ddd8ce;
  --sage: #3f6f68;
  --sage-deep: #284e4a;
  --sage-pale: #dce9e5;
  --photo: #326570;
  --photo-pale: #dcebed;
  --company: #a46343;
  --company-pale: #f1e3da;
  --gold: #ba8a52;
  --danger: #9a3e3e;
  --success: #2e6c52;
  --shadow-sm: 0 12px 32px rgba(32, 42, 48, .07);
  --shadow-lg: 0 28px 80px rgba(32, 42, 48, .12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: radial-gradient(rgba(29,42,50,.12) .6px, transparent .6px);
  background-size: 16px 16px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 999;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-surface { background: var(--surface); border-block: 1px solid var(--line); }
.section-dark { background: var(--ink); color: #f8f5ef; }
.section-photo { background: linear-gradient(135deg, #eef5f5, #dbe9e8); }
.section-company { background: linear-gradient(135deg, #f8f0e9, #efdfd3); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 235, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221,216,206,.7);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.08rem; letter-spacing: -.02em; }
.brand img { border-radius: 10px; }
.brand strong { color: var(--sage); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { text-decoration: none; color: var(--ink-soft); font-weight: 650; font-size: .93rem; }
.site-nav > a:not(.button):hover { color: var(--ink); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--surface); padding: .55rem .8rem; border-radius: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: .55rem .95rem; font-size: .88rem; }
.button-dark { background: var(--ink); color: white; box-shadow: 0 10px 28px rgba(29,42,50,.16); }
.button-dark:hover { box-shadow: 0 16px 38px rgba(29,42,50,.22); }
.button-photo { background: var(--photo); color: white; }
.button-company { background: var(--company); color: white; }
.button-light { background: var(--surface); color: var(--ink); border-color: var(--line); }
.button-ghost { background: transparent; border-color: currentColor; color: inherit; }
.button-block { width: 100%; }
.link-button { border: 0; padding: 0; background: transparent; color: inherit; text-align: left; text-decoration: underline; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--sage);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.display {
  margin: 0;
  max-width: 1000px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.display-medium { font-size: clamp(2.7rem, 5.6vw, 5.2rem); }
.lead { max-width: 730px; color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.65; }
.section-title { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.15rem, 4.4vw, 4rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 500; }
.section-intro { max-width: 720px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 52px; }
.kicker { color: var(--sage); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }

.hero { padding: 92px 0 82px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 72px; align-items: center; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-note { display: flex; gap: 16px; align-items: center; margin-top: 36px; color: var(--ink-soft); font-size: .92rem; }
.hero-note strong { color: var(--ink); }
.hero-visual {
  min-height: 520px;
  border-radius: var(--radius-lg);
  position: relative;
  background: linear-gradient(145deg, #dce8e5, #f7f4ed 60%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(50,101,112,.18); top: -70px; right: -80px; }
.hero-visual::after { content: ""; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(29,42,50,.12); border-radius: 50%; bottom: -80px; left: -60px; }
.visual-card { position: absolute; background: rgba(255,253,249,.9); border: 1px solid rgba(221,216,206,.9); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.visual-card strong { display: block; font-size: 1.25rem; margin-bottom: 6px; }
.visual-card span { color: var(--ink-soft); font-size: .9rem; }
.visual-card-a { left: 34px; top: 52px; width: 230px; }
.visual-card-b { right: 30px; top: 205px; width: 245px; }
.visual-card-c { left: 60px; bottom: 46px; width: 270px; }
.visual-orbit { position: absolute; inset: 110px 70px; border: 1px dashed rgba(63,111,104,.35); border-radius: 50%; }
.visual-center { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 98px; height: 98px; display: grid; place-items: center; border-radius: 28px; background: var(--ink); color: white; font-weight: 850; letter-spacing: .03em; box-shadow: 0 25px 50px rgba(29,42,50,.22); }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,253,249,.65); }
.trust-items { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: 42px; flex-wrap: wrap; color: var(--ink-soft); font-size: .88rem; font-weight: 700; letter-spacing: .02em; }
.trust-items span::before { content: "•"; color: var(--gold); margin-right: 10px; }

.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.path-card { position: relative; min-height: 520px; padding: 48px; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); }
.path-card h2 { max-width: 520px; margin: 16px 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.04em; font-weight: 500; }
.path-card p { max-width: 550px; font-size: 1.05rem; color: var(--ink-soft); }
.path-card ul { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; gap: 10px; }
.path-card li::before { content: "✓"; margin-right: 9px; font-weight: 900; }
.path-photo { background: linear-gradient(145deg, #e8f1f0, #d7e7e8); }
.path-company { background: linear-gradient(145deg, #f7ede5, #eedbcf); }
.path-photo li::before { color: var(--photo); }
.path-company li::before { color: var(--company); }
.path-index { position: absolute; right: 34px; top: 24px; font-family: Georgia, serif; font-size: 5rem; color: rgba(29,42,50,.08); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.card h3 { margin: 16px 0 10px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--ink-soft); }
.card-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--sage-pale); color: var(--sage-deep); font-weight: 850; }
.card-photo .card-number { background: var(--photo-pale); color: var(--photo); }
.card-company .card-number { background: var(--company-pale); color: var(--company); }

.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; left: -24px; bottom: 34px; max-width: 250px; background: var(--ink); color: white; border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow-lg); }
.about-badge span { display: block; color: #c5d6d2; font-size: .82rem; margin-top: 4px; }
.about-copy p { color: var(--ink-soft); font-size: 1.06rem; }
.about-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 30px; }
.about-point { border-top: 1px solid var(--line); padding-top: 14px; }
.about-point strong { display: block; margin-bottom: 4px; }
.about-point span { color: var(--ink-soft); font-size: .9rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; counter-reset: process; }
.process-step { counter-increment: process; border-top: 1px solid rgba(255,255,255,.25); padding-top: 20px; }
.process-step::before { content: "0" counter(process); display: block; color: #a7c1bc; font-size: .82rem; font-weight: 800; letter-spacing: .1em; margin-bottom: 40px; }
.process-step h3 { margin: 0 0 10px; font-size: 1.15rem; }
.process-step p { margin: 0; color: #cbd2d5; }

.page-hero { padding: 84px 0 70px; }
.page-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: end; gap: 60px; }
.hero-stat-panel { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; background: var(--surface); box-shadow: var(--shadow-sm); }
.hero-stat-panel strong { display: block; font-family: Georgia, serif; font-size: 3.2rem; line-height: 1; font-weight: 500; }
.hero-stat-panel p { color: var(--ink-soft); margin-bottom: 0; }
.hero-stat-panel .mini-divider { height: 1px; background: var(--line); margin: 24px 0; }

.problem-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.problem-item { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); padding: 22px; border-radius: 16px; }
.problem-item b { display: grid; place-items: center; min-width: 34px; height: 34px; border-radius: 10px; background: var(--paper-2); }
.problem-item p { margin: 0; color: var(--ink-soft); }

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 1100px) { .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.offer-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.offer-card.featured { border-color: rgba(50,101,112,.55); box-shadow: 0 26px 65px rgba(50,101,112,.13); }
.offer-tag { align-self: flex-start; padding: .4rem .75rem; border-radius: 999px; background: var(--photo-pale); color: var(--photo); font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; }
.offer-card h3 { font-family: Georgia, serif; font-size: 2.2rem; line-height: 1.05; font-weight: 500; letter-spacing: -.03em; margin: 22px 0 12px; }
.offer-card > p { color: var(--ink-soft); }
.offer-card ul { padding: 0; list-style: none; display: grid; gap: 12px; margin: 22px 0 30px; }
.offer-card li { padding-left: 25px; position: relative; }
.offer-card li::before { content: "✓"; position: absolute; left: 0; color: var(--photo); font-weight: 900; }
.offer-card .button { margin-top: auto; }

.calculator-wrap { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); gap: 48px; align-items: start; }
.calculator-copy { position: sticky; top: 110px; }
.calculator-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-lg); }
.progress { display: flex; gap: 8px; margin-bottom: 30px; }
.progress span { height: 5px; flex: 1; border-radius: 999px; background: var(--paper-2); }
.progress span.active { background: var(--sage); }
.form-step[hidden] { display: none; }
.form-heading { margin: 0 0 8px; font-size: 1.5rem; }
.form-intro { color: var(--ink-soft); margin: 0 0 28px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 750; font-size: .91rem; }
.field small { color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 12px; padding: .78rem .9rem; background: white; color: var(--ink); outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 4px rgba(63,111,104,.12); }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: .88rem; margin: 18px 0; }
.checkbox-field input { margin-top: 4px; }
.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.form-error { padding: 12px 14px; border-radius: 10px; background: #f8e2e2; color: var(--danger); margin-bottom: 18px; }
.form-success { padding: 12px 14px; border-radius: 10px; background: #e1f0e8; color: var(--success); margin-bottom: 18px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.result-teaser { background: var(--paper); border: 1px dashed var(--line); border-radius: 16px; padding: 22px; margin: 20px 0; }
.result-teaser strong { display: block; font-size: 1.2rem; }
.result-panel { border-radius: 20px; background: var(--ink); color: white; padding: 30px; }
.result-panel h3 { margin-top: 0; }
.result-metrics { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 24px 0; }
.result-metric { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 16px; }
.result-metric span { display: block; color: #c7d1d3; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.result-metric strong { display: block; margin-top: 7px; font-size: 1.35rem; }
.result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.result-actions .button-light { color: var(--ink); }
.calc-disclaimer { font-size: .8rem; color: var(--ink-soft); margin-top: 18px; }

.gate-box { margin-top: 34px; padding: 28px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line); overflow: visible; }
.pricing-output { margin-top: 24px; display: grid; gap: 14px; overflow: visible; }
.price-row { padding: 20px; border-radius: 14px; border: 1px solid var(--line); background: white; overflow: visible; height: auto; min-height: 0; }
.price-row strong { display: block; font-size: 1.08rem; }
.price-row b { display: block; color: var(--photo); font-size: 1.25rem; margin: 8px 0; }
.price-row p { color: var(--ink-soft); margin: 0; overflow-wrap: anywhere; word-break: break-word; white-space: normal; }

.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.quote-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.quote-points { display: grid; gap: 18px; margin-top: 28px; }
.quote-point { display: flex; gap: 14px; align-items: flex-start; }
.quote-point b { color: var(--company); }
.quote-point p { margin: 0; color: var(--ink-soft); }

.cta-band { padding: 70px 0; }
.cta-inner { border-radius: var(--radius-lg); padding: 56px; background: var(--ink); color: white; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.2rem,4vw,3.8rem); line-height: 1.05; font-weight: 500; max-width: 680px; }
.cta-inner p { color: #cbd3d5; max-width: 620px; }

.legal { padding: 76px 0; }
.legal h1 { font-family: Georgia, serif; font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 500; line-height: 1; }
.legal h2 { margin-top: 42px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal-note { border-left: 4px solid var(--gold); background: var(--surface); padding: 18px 22px; border-radius: 0 12px 12px 0; }

.site-footer { padding: 68px 0 24px; background: #e9e4da; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p { max-width: 460px; color: var(--ink-soft); }
.footer-grid a { text-decoration: none; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: .82rem; }
.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 42; background: #226b4b; color: white; text-decoration: none; padding: .75rem 1rem; border-radius: 999px; font-weight: 800; box-shadow: 0 14px 40px rgba(34,107,75,.28); }
.consent-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 100; max-width: 920px; margin: auto; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 20px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.consent-banner[hidden] { display: none; }
.consent-banner p { margin: 3px 0 0; color: var(--ink-soft); font-size: .9rem; }
.consent-actions { display: flex; gap: 9px; flex-shrink: 0; }

.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-nav { position: fixed; left: 20px; right: 20px; top: 88px; display: none; flex-direction: column; align-items: stretch; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-lg); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .page-hero-grid, .about-grid, .calculator-wrap, .quote-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .path-grid, .offer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .calculator-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .shell, .narrow { width: min(calc(100% - 26px), var(--shell)); }
  .section { padding: 70px 0; }
  .hero { padding: 60px 0; }
  .display { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  .hero-visual { min-height: 410px; }
  .visual-card { padding: 16px; }
  .visual-card-a { left: 16px; top: 28px; width: 205px; }
  .visual-card-b { right: 14px; top: 185px; width: 205px; }
  .visual-card-c { left: 24px; bottom: 24px; width: 230px; }
  .visual-center { width: 78px; height: 78px; border-radius: 22px; }
  .section-heading { display: block; }
  .path-card { padding: 32px 24px; min-height: auto; }
  .card-grid, .process-grid, .problem-list, .field-grid, .result-metrics, .about-points { grid-template-columns: 1fr; }
  .calculator-card, .quote-panel, .offer-card { padding: 26px 20px; }
  .cta-inner { padding: 38px 26px; display: block; }
  .cta-inner .button { margin-top: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .consent-banner { flex-direction: column; align-items: stretch; bottom: 12px; left: 12px; right: 12px; }
  .consent-actions { justify-content: stretch; }
  .consent-actions .button { flex: 1; }
  .floating-whatsapp { bottom: 14px; right: 14px; }
}
