:root {
  --ink: #081611;
  --forest-950: #071a13;
  --forest-900: #0b261b;
  --forest-800: #113c2a;
  --forest-700: #18583b;
  --forest-500: #2e8a5b;
  --gold-500: #cda85b;
  --gold-300: #e6cd8d;
  --cream: #f7f3e8;
  --paper: #fffdf7;
  --mist: #e5ede7;
  --line: rgba(205, 168, 91, .25);
  --shadow: 0 24px 70px rgba(3, 18, 12, .18);
  --radius: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  transform: translateY(-160%); padding: 10px 16px; border-radius: 10px;
  color: var(--forest-950); background: var(--gold-300); font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px;
  color: var(--gold-300); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #8a6a2e; }
.section { padding: 92px 0; }
.section.compact { padding: 62px 0; }
.section.dark { color: #fff; background: var(--forest-950); }
.section.mist { background: #edf2ee; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 48px; align-items: end; margin-bottom: 42px; }
.section-head h2, .editorial h2, .article h2, .page-hero h1, .hero h1 {
  margin: 0; font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; line-height: 1.04;
}
.section-head h2 { font-size: clamp(2.35rem, 5vw, 4.8rem); }
.section-head p { margin: 0; color: #52635a; font-size: 1.06rem; }
.dark .section-head p { color: #bdd0c5; }
.muted { color: #637168; }
.micro { font-size: .82rem; line-height: 1.45; }

.site-header {
  position: sticky; top: 0; z-index: 100; color: #fff;
  background: rgba(7, 26, 19, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 210px; }
.brand img { width: 54px; height: 54px; object-fit: contain; filter: drop-shadow(0 6px 18px rgba(0,0,0,.22)); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: Georgia, serif; font-size: 1.05rem; letter-spacing: .08em; }
.brand-copy span { margin-top: 7px; color: var(--gold-300); font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav > a { color: #dbe7df; font-size: .9rem; font-weight: 700; }
.main-nav > a:hover { color: var(--gold-300); }
.nav-cta { padding: 11px 16px; color: var(--forest-950) !important; background: var(--gold-300); border-radius: 999px; }
.nav-toggle { display: none; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 11px; padding: 8px 11px; }

.hero { position: relative; overflow: hidden; color: #fff; background: var(--forest-950); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 20%, rgba(205,168,91,.18), transparent 27%), linear-gradient(90deg, rgba(7,26,19,.98) 0%, rgba(7,26,19,.86) 48%, rgba(7,26,19,.35) 100%);
  z-index: 1;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .56; }
.hero-inner { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: 1.05fr .65fr; gap: 70px; align-items: center; padding: 88px 0 112px; }
.hero h1 { max-width: 820px; font-size: clamp(3.1rem, 7vw, 7.2rem); }
.hero h1 em { color: var(--gold-300); font-style: normal; }
.hero-lead { max-width: 680px; margin: 28px 0 34px; color: #d8e4dc; font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 12px 20px;
  border: 1px solid transparent; border-radius: 999px; font-weight: 850; cursor: pointer; transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--forest-950); background: var(--gold-300); box-shadow: 0 14px 30px rgba(205,168,91,.18); }
.button.secondary { color: #fff; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.28); }
.button.green { color: #fff; background: var(--forest-700); }
.button.ghost { color: var(--forest-800); background: transparent; border-color: #b9c9bf; }
.hero-note { margin-top: 28px; color: #adbbb2; font-size: .86rem; }
.hero-panel {
  align-self: end; margin-bottom: -44px; padding: 26px; border: 1px solid rgba(230,205,141,.24); border-radius: 26px;
  background: rgba(5, 22, 15, .78); box-shadow: var(--shadow); backdrop-filter: blur(16px);
}
.hero-panel h2 { margin: 0 0 16px; font-family: Georgia, serif; font-size: 1.55rem; }
.market-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.market-row:first-of-type { border-top: 0; }
.market-row strong { color: var(--gold-300); font-size: 1.05rem; }
.market-row small { grid-column: 1 / -1; color: #9eb1a6; }

.quick-strip { position: relative; z-index: 4; margin-top: -34px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.quick-item { padding: 24px; border-right: 1px solid #e3e8e4; }
.quick-item:last-child { border-right: 0; }
.quick-item b { display: block; margin-bottom: 4px; color: var(--forest-800); }
.quick-item span { color: #68756d; font-size: .89rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card { position: relative; overflow: hidden; min-height: 440px; color: #fff; border-radius: var(--radius); background: var(--forest-900); box-shadow: 0 16px 50px rgba(4, 26, 17, .12); }
.story-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.story-card:hover img { transform: scale(1.035); }
.story-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(3,17,11,.95)); }
.story-card .card-copy { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.story-card .kicker { color: var(--gold-300); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.story-card h3 { margin: 7px 0 5px; font-family: Georgia, serif; font-size: 1.58rem; line-height: 1.12; }
.story-card p { margin: 0; color: #d3dfd7; font-size: .9rem; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 68px; align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.media-frame { position: relative; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.media-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.media-frame::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(230,205,141,.52); border-radius: 19px; pointer-events: none; }
.editorial h2 { font-size: clamp(2.35rem, 4vw, 4.4rem); }
.editorial p { color: #536159; }
.check-list { display: grid; gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; margin-top: 2px; color: var(--forest-950); background: var(--gold-300); border-radius: 50%; font-size: .75rem; font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.1); }
.step { padding: 34px 26px; background: var(--forest-900); }
.step .number { color: var(--gold-300); font-family: Georgia, serif; font-size: 2.5rem; }
.step h3 { margin: 12px 0 8px; font-family: Georgia, serif; font-size: 1.35rem; }
.step p { margin: 0; color: #adbbb2; font-size: .92rem; }

.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.region-card { min-height: 160px; padding: 24px; border: 1px solid #dce4df; border-radius: 18px; background: #fff; transition: .2s ease; }
.region-card:hover { color: #fff; background: var(--forest-800); transform: translateY(-3px); box-shadow: 0 15px 38px rgba(11,38,27,.13); }
.region-card strong { display: block; margin-bottom: 9px; font-family: Georgia, serif; font-size: 1.25rem; }
.region-card span { color: #65746b; font-size: .88rem; }
.region-card:hover span { color: #d8e4dc; }

.calc-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: 1px; overflow: hidden; border: 1px solid #dce4df; border-radius: 26px; background: #dce4df; box-shadow: var(--shadow); }
.calc-copy { padding: 38px; color: #fff; background: var(--forest-900); }
.calc-copy h2 { margin: 0 0 15px; font-family: Georgia, serif; font-size: 2.35rem; line-height: 1.05; }
.calc-copy p { color: #c5d3ca; }
.calc-form { padding: 38px; background: #fff; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #30473a; font-size: .84rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid #cbd7cf; border-radius: 12px; color: var(--ink); background: #fff; }
.field textarea { min-height: 110px; resize: vertical; }
.result-box { margin-top: 20px; padding: 22px; border-left: 4px solid var(--gold-500); border-radius: 12px; background: #eef4ef; }
.result-box b { display: block; color: var(--forest-800); font-family: Georgia, serif; font-size: 1.75rem; }
.calc-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.calc-tab { padding: 9px 13px; border: 1px solid #bfd0c5; border-radius: 999px; color: var(--forest-800); background: #fff; font-weight: 800; cursor: pointer; }
.calc-tab[aria-selected="true"] { color: #fff; background: var(--forest-800); }
.calc-panel[hidden] { display: none; }

.network { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.network a { display: grid; place-items: center; min-height: 118px; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; color: #dbe7df; text-align: center; background: rgba(255,255,255,.035); font-size: .78rem; font-weight: 800; }
.network a:hover { border-color: var(--gold-500); color: var(--gold-300); }

.cta-band { overflow: hidden; padding: 0; color: #fff; background: var(--forest-900); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.cta-copy { display: grid; align-content: center; padding: 64px max(30px, calc((100vw - var(--max)) / 2)); padding-right: 58px; }
.cta-copy h2 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: 1; }
.cta-copy p { max-width: 590px; color: #c7d6cd; }
.cta-grid img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }

.page-hero { position: relative; overflow: hidden; padding: 120px 0 90px; color: #fff; background: var(--forest-950); }
.page-hero::after { content: ""; position: absolute; right: -9%; top: -55%; width: 48vw; height: 48vw; border: 1px solid rgba(205,168,91,.25); border-radius: 50%; box-shadow: 0 0 0 70px rgba(205,168,91,.04), 0 0 0 140px rgba(205,168,91,.025); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 920px; font-size: clamp(3rem, 6vw, 6rem); }
.page-hero p { max-width: 740px; margin: 24px 0 0; color: #c9d8cf; font-size: 1.15rem; }
.breadcrumbs { margin-bottom: 24px; color: #91a69a; font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs a { color: var(--gold-300); }

.article { padding: 72px 0 100px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; align-items: start; }
.article h2 { margin-top: 54px; font-size: clamp(2rem, 4vw, 3.2rem); }
.article h3 { margin: 34px 0 10px; font-family: Georgia, serif; font-size: 1.5rem; }
.article p, .article li { color: #47584e; }
.article figure { margin: 38px 0; }
.article figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; border-radius: 24px; box-shadow: var(--shadow); }
.article figcaption { margin-top: 10px; color: #718078; font-size: .78rem; }
.article blockquote { margin: 38px 0; padding: 24px 28px; border-left: 4px solid var(--gold-500); color: var(--forest-800); background: #eef4ef; font-family: Georgia, serif; font-size: 1.3rem; }
.sidebar { position: sticky; top: 100px; display: grid; gap: 16px; }
.side-card { padding: 22px; border: 1px solid #dce4df; border-radius: 17px; background: #fff; }
.side-card h3 { margin: 0 0 9px; font-size: 1.08rem; }
.side-card p { margin: 0 0 14px; font-size: .88rem; }

.table-wrap { overflow-x: auto; border: 1px solid #d6e0da; border-radius: 16px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 13px 14px; border-bottom: 1px solid #e1e7e3; text-align: right; white-space: nowrap; }
th:first-child, td:first-child { text-align: left; }
th { color: #fff; background: var(--forest-800); font-size: .78rem; }
td { font-size: .88rem; }
tr:last-child td { border-bottom: 0; }

.notice { padding: 20px 22px; border: 1px solid #ddc888; border-radius: 14px; background: #fff8dd; color: #5f501f; }
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid #dbe4de; border-radius: 14px; background: #fff; }
.faq summary { padding: 18px 20px; color: var(--forest-800); font-weight: 850; cursor: pointer; }
.faq details p { padding: 0 20px 18px; margin: 0; }
.form-status { margin-top: 14px; color: var(--forest-700); font-weight: 750; }

.site-footer { color: #b9c8bf; background: #04110c; }
.footer-main { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 48px; padding: 70px 0 48px; }
.footer-main h2, .footer-main h3 { color: #fff; }
.footer-logo { width: 220px; height: auto; margin-bottom: 18px; border-radius: 10px; }
.footer-main h2 { margin: 0 0 13px; font-family: Georgia, serif; font-size: 1.75rem; }
.footer-main h3 { margin: 0 0 14px; font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-main p { max-width: 390px; font-size: .9rem; }
.footer-links { display: grid; gap: 8px; font-size: .88rem; }
.footer-links a:hover { color: var(--gold-300); }
.footer-bottom { padding: 20px 0 30px; border-top: 1px solid rgba(255,255,255,.09); font-size: .75rem; }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 80; display: grid; place-items: center; width: 58px; height: 58px; color: #fff; background: #1a8d52; border-radius: 50%; box-shadow: 0 14px 35px rgba(4,35,19,.3); font-weight: 900; }
.cookie-banner { position: fixed; z-index: 120; left: 20px; right: 20px; bottom: 20px; display: none; grid-template-columns: 1fr auto; gap: 20px; align-items: center; max-width: 780px; margin: auto; padding: 18px 20px; border: 1px solid rgba(230,205,141,.3); border-radius: 16px; color: #fff; background: #071a13; box-shadow: var(--shadow); }
.cookie-banner.show { display: grid; }
.cookie-banner p { margin: 0; font-size: .84rem; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { padding: 8px 12px; border: 0; border-radius: 999px; color: var(--forest-950); background: var(--gold-300); font-weight: 800; cursor: pointer; }

@media (max-width: 1040px) {
  .main-nav { display: none; position: fixed; inset: 78px 0 0; padding: 32px 24px; align-content: start; background: var(--forest-950); }
  .nav-open .main-nav { display: grid; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { margin-bottom: 0; max-width: 620px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid #e3e8e4; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .region-grid { grid-template-columns: repeat(2, 1fr); }
  .network { grid-template-columns: repeat(4, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .section-head, .split, .split.reverse, .calc-shell, .cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-head { margin-bottom: 30px; }
  .hero-inner { padding: 72px 0 80px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  .hero-panel { padding: 20px; }
  .quick-strip { margin-top: -20px; }
  .quick-grid, .card-grid, .steps, .region-grid, .network, .footer-main, .sidebar, .field-grid { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid #e3e8e4; }
  .quick-item:last-child { border-bottom: 0; }
  .story-card { min-height: 390px; }
  .calc-copy, .calc-form { padding: 26px 22px; }
  .cta-copy { padding: 54px 24px; }
  .cta-grid img { min-height: 360px; }
  .network a { min-height: 82px; }
  .page-hero { padding: 86px 0 66px; }
  .article { padding-top: 52px; }
  .article-layout { gap: 38px; }
  .cookie-banner { grid-template-columns: 1fr; left: 12px; right: 12px; bottom: 12px; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
