:root {
  --green-950: #0d2d2a;
  --green-900: #153f3a;
  --green-800: #20534c;
  --green-100: #dde7e1;
  --green-050: #edf3ef;
  --ivory: #f5f1e8;
  --paper: #fbf9f4;
  --gold: #b58a28;
  --gold-dark: #8f6a16;
  --earth: #a96f4b;
  --graphite: #282d2c;
  --muted: #65706c;
  --line: rgba(21,63,58,.16);
  --white: #fff;
  --shadow: 0 24px 70px rgba(13,45,42,.13);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(181,138,40,.65); outline-offset: 4px; }

.skip-link {
  position: fixed; z-index: 1000; top: 10px; left: 10px;
  transform: translateY(-150%); background: var(--white); padding: .75rem 1rem;
  border-radius: 8px; color: var(--green-950); font-weight: 700;
}
.skip-link:focus { transform: none; }

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

.utility-bar { background: var(--green-950); color: rgba(255,255,255,.82); font-size: 14px; }
.utility-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.utility-inner p { margin: 0; }
.utility-inner a { color: var(--white); text-decoration: none; font-weight: 700; }

.site-header {
  position: sticky; z-index: 100; top: 0; background: rgba(251,249,244,.92);
  border-bottom: 1px solid transparent; backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 36px rgba(13,45,42,.08); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 194px; flex: 0 0 auto; }
.brand img { width: 100%; height: 62px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { text-decoration: none; font-size: 15px; font-weight: 600; position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gold); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; padding: 10px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--green-900); transition: transform .2s, opacity .2s; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: .78rem 1.25rem; border: 1px solid transparent;
  border-radius: 999px; text-decoration: none; font-weight: 700; line-height: 1.2;
  cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: .65rem 1rem; font-size: 14px; }
.button-primary { background: var(--green-900); color: var(--white); }
.button-primary:hover { background: var(--green-800); }
.button-outline { border-color: rgba(21,63,58,.45); color: var(--green-900); background: transparent; }
.button-outline:hover { background: var(--green-050); border-color: var(--green-900); }
.button-gold { background: var(--gold); color: var(--green-950); }
.button-gold:hover { background: #c49a35; }
.button-light { background: var(--paper); color: var(--green-950); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; color: var(--green-800); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow span { color: var(--gold-dark); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.eyebrow.light { color: rgba(255,255,255,.82); }
.eyebrow.light span { color: #e7c46f; }

h1, h2, h3 { margin: 0; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; line-height: 1.04; font-weight: 600; text-wrap: balance; }
h1 { font-size: clamp(3.2rem, 6.5vw, 6.25rem); letter-spacing: -.045em; }
h1 em { color: var(--green-800); font-style: normal; }
h2 { font-size: clamp(2.45rem, 4.4vw, 4.6rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.55rem, 2.3vw, 2.35rem); letter-spacing: -.02em; }
p { margin: 0 0 1rem; }

.hero { position: relative; overflow: hidden; background: var(--ivory); padding: 78px 0 96px; }
.hero-lines { position: absolute; inset: auto -2% -7% 42%; height: 75%; background: url('../images/contour-lines.svg') center/cover no-repeat; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(460px, .96fr); gap: 72px; align-items: center; position: relative; }
.hero-lead { margin-top: 28px; max-width: 720px; font-size: 21px; color: #46514d; }
.hero-location { color: var(--green-800); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 22px; }
.text-link { color: var(--green-900); font-size: 15px; font-weight: 700; text-underline-offset: 5px; }
.hero-visual { min-height: 620px; position: relative; }
.photo-card { position: absolute; margin: 0; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,45,42,.78)); pointer-events: none; }
.photo-card figcaption { position: absolute; z-index: 2; left: 24px; right: 20px; bottom: 22px; color: var(--white); font-size: 15px; }
.photo-card figcaption span { display: block; margin-bottom: 2px; color: #e8c96e; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.photo-rural { left: 0; top: 0; width: 69%; height: 68%; border-radius: 140px 20px 20px 20px; }
.photo-business { right: 0; bottom: 0; width: 63%; height: 59%; border-radius: 20px 20px 120px 20px; border: 7px solid var(--ivory); }
.hero-stamp { position: absolute; z-index: 3; left: 46%; top: 46%; width: 132px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--green-950); background: var(--gold); box-shadow: 0 20px 50px rgba(13,45,42,.18); transform: rotate(-7deg); }
.hero-stamp strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; line-height: 1; }
.hero-stamp span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.trust-strip { background: var(--green-900); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { position: relative; min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 24px 28px 24px 52px; border-left: 1px solid rgba(255,255,255,.14); }
.trust-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.trust-number { position: absolute; left: 18px; top: 24px; color: #d7b65e; font-family: ui-monospace, monospace; font-size: 12px; }
.trust-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 600; }
.trust-grid small { color: rgba(255,255,255,.68); font-size: 14px; }

.section-heading { max-width: 850px; margin-bottom: 50px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { margin-top: 22px; color: var(--muted); font-size: 19px; }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1.1fr .75fr; gap: 70px; align-items: end; }
.section-heading.split > p { margin: 0 0 8px; }

.services-intro { background: var(--paper); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.area-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.area-image { position: relative; height: 300px; overflow: hidden; }
.area-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(13,45,42,.42)); }
.area-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.area-card:hover .area-image img { transform: scale(1.025); }
.area-tag { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 7px 12px; border-radius: 999px; background: rgba(251,249,244,.92); color: var(--green-900); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.area-content { padding: 36px; }
.area-kicker { margin: 0 0 10px; color: var(--gold-dark); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.area-content h3 { margin-bottom: 20px; }
.area-content > p:not(.area-kicker) { color: var(--muted); }
.check-list { display: grid; gap: 10px; padding: 0; margin: 24px 0 30px; list-style: none; }
.check-list li { position: relative; padding-left: 25px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 12px; height: 1px; background: var(--gold); box-shadow: 5px -4px 0 -1px var(--gold); transform: rotate(-35deg); }

.situations { background: var(--green-950); color: rgba(255,255,255,.78); }
.situations-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.situations h2 { color: var(--white); }
.situations-copy > p:not(.eyebrow) { margin: 24px 0 32px; font-size: 19px; }
.tabs { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); overflow: hidden; }
.tab-list { display: grid; grid-template-columns: 1fr 1fr; padding: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.tab-list button { border: 0; border-radius: 999px; padding: 13px 18px; color: rgba(255,255,255,.66); background: transparent; font-weight: 700; cursor: pointer; }
.tab-list button[aria-selected="true"] { color: var(--green-950); background: var(--gold); }
.tab-panel { padding: 18px 30px 30px; }
.tab-panel ul { margin: 0; padding: 0; list-style: none; }
.tab-panel li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.tab-panel li:last-child { border-bottom: 0; }
.tab-panel li span { color: #e2c16d; font-family: ui-monospace, monospace; font-size: 12px; padding-top: 5px; }

.process { background: var(--ivory); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-grid li { position: relative; padding: 34px 24px 0 0; }
.process-grid li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.process-grid li > span { display: block; margin-bottom: 40px; color: var(--gold-dark); font-family: ui-monospace, monospace; font-size: 13px; }
.process-grid h3 { min-height: 96px; font-size: 28px; }
.process-grid p { margin-top: 12px; color: var(--muted); font-size: 15px; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.about-visual { position: relative; min-height: 590px; }
.about-shape { position: absolute; inset: 0; overflow: hidden; display: grid; place-items: center; padding: 90px; background: var(--green-900) url('../images/contour-lines.svg') center/cover no-repeat; border-radius: 160px 28px 28px 28px; }
.about-shape::after { content: ""; position: absolute; right: -90px; bottom: -120px; width: 290px; height: 290px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.about-shape img { position: relative; z-index: 2; width: 85%; filter: saturate(.95) brightness(1.18); }
.about-coordinates { position: absolute; z-index: 2; left: 38px; bottom: 35px; color: rgba(255,255,255,.62); font-family: ui-monospace, monospace; font-size: 12px; line-height: 1.4; }
.about-copy > p:not(.eyebrow) { margin-top: 24px; color: var(--muted); font-size: 18px; }
.about-points { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.about-points div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.about-points strong { color: var(--green-900); }
.about-points span { color: var(--muted); font-size: 15px; }

.content-section { background: var(--green-050); }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.content-card { min-height: 360px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.content-top { display: flex; justify-content: space-between; margin-bottom: 55px; }
.content-top span { color: var(--green-900); font-weight: 700; }
.content-top small { color: var(--gold-dark); font-family: ui-monospace, monospace; text-transform: uppercase; letter-spacing: .08em; }
.content-card h3 { font-size: 29px; }
.content-card p { color: var(--muted); margin-top: 18px; }
.content-card a { margin-top: auto; color: var(--green-900); font-weight: 700; text-underline-offset: 5px; }

.final-cta { background: var(--paper); }
.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; padding: 72px; border-radius: var(--radius-lg); color: rgba(255,255,255,.78); background: var(--green-950); }
.cta-panel::after { content: ""; position: absolute; inset: 0 0 0 45%; background: url('../images/contour-lines.svg') center/cover no-repeat; opacity: .35; pointer-events: none; }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { color: var(--white); }
.cta-panel > div > p:not(.eyebrow) { max-width: 650px; margin-top: 22px; font-size: 19px; }
.contact-data { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.contact-data > * { display: flex; flex-direction: column; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.18); text-decoration: none; }
.contact-data strong { color: var(--white); }
.contact-data span { font-size: 13px; color: rgba(255,255,255,.57); }
.cta-actions { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.cta-actions .button { width: 100%; }
.cta-actions p { margin: 12px 0 0; text-align: center; font-size: 14px; color: rgba(255,255,255,.62); }

.site-footer { padding: 70px 0 24px; background: var(--ivory); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .9fr 1.1fr; gap: 54px; }
.footer-brand img { width: 220px; height: 90px; object-fit: contain; margin-bottom: 16px; }
.footer-grid h2 { margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid p, .footer-grid a { display: block; margin: 0 0 9px; color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-grid a:hover { color: var(--green-900); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom button { border: 0; background: none; color: var(--green-900); text-decoration: underline; cursor: pointer; }

.whatsapp-float { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 9px; padding: 12px 16px; border-radius: 999px; background: #20c86a; color: #062e19; text-decoration: none; box-shadow: 0 12px 35px rgba(6,46,25,.25); font-weight: 800; }
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }

.cookie-banner[hidden] { display: none !important; }
.cookie-banner { position: fixed; z-index: 150; left: 22px; right: 22px; bottom: 22px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; max-width: 1100px; margin-inline: auto; padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; color: rgba(255,255,255,.78); background: rgba(13,45,42,.97); box-shadow: 0 20px 70px rgba(0,0,0,.3); }
.cookie-banner h2 { color: var(--white); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 18px; }
.cookie-banner p { margin: 5px 0 0; font-size: 14px; }
.cookie-banner a { color: var(--white); text-underline-offset: 4px; }
.cookie-banner .button-outline { color: var(--white); border-color: rgba(255,255,255,.45); }
.cookie-actions { display: flex; gap: 10px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr .83fr; gap: 38px; }
  .hero-visual { min-height: 520px; }
  .hero-stamp { width: 110px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 38px; }
  .process-grid li:nth-child(4) { border-left: 0; padding-left: 0; }
  .about-grid { gap: 55px; }
  .contact-data { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-bar { display: none; }
  .brand { width: 168px; }
  .brand img { height: 52px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .main-nav { position: fixed; inset: var(--header-height) 14px auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  body.menu-open { overflow: hidden; }
  .main-nav > a:not(.button) { padding: 13px 10px; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .nav-cta { display: inline-flex; margin-top: 12px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 82px 0; }
  .hero { padding: 58px 0 74px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 560px; max-width: 650px; width: 100%; margin: 20px auto 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.14); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
  .area-grid { grid-template-columns: 1fr; }
  .situations-grid, .about-grid, .cta-panel { grid-template-columns: 1fr; gap: 50px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(3), .process-grid li:nth-child(5) { border-left: 0; padding-left: 0; }
  .process-grid li:nth-child(4) { border-left: 1px solid var(--line); padding-left: 24px; }
  .process-grid h3 { min-height: 0; }
  .about-visual { min-height: 460px; max-width: 620px; width: 100%; }
  .section-heading.split { grid-template-columns: 1fr; gap: 15px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-card { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 22px), var(--container)); }
  .section { padding: 66px 0; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.15rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.25rem); }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 465px; }
  .photo-rural { width: 82%; height: 61%; border-radius: 90px 16px 16px 16px; }
  .photo-business { width: 75%; height: 54%; border-radius: 16px 16px 80px 16px; }
  .hero-stamp { left: 53%; top: 43%; width: 96px; }
  .hero-stamp strong { font-size: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 102px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
  .area-image { height: 230px; }
  .area-content { padding: 28px 22px; }
  .situations-grid { gap: 40px; }
  .tab-panel { padding: 12px 20px 24px; }
  .tab-panel li { grid-template-columns: 32px 1fr; }
  .process-grid { grid-template-columns: 1fr; border-top: 0; }
  .process-grid li, .process-grid li + li, .process-grid li:nth-child(4) { padding: 24px 0; border-left: 0; border-top: 1px solid var(--line); }
  .process-grid li > span { margin-bottom: 16px; }
  .about-visual { min-height: 350px; }
  .about-shape { padding: 48px; border-radius: 90px 20px 20px 20px; }
  .about-points div { grid-template-columns: 1fr; gap: 4px; }
  .cta-panel { padding: 36px 24px; border-radius: 24px; }
  .contact-data { margin-top: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Internal pages */
.main-nav > a.is-active:not(.button)::after { right: 0; }
.page-hero { position: relative; overflow: hidden; padding: 82px 0 92px; background: var(--ivory); }
.page-hero-lines { position: absolute; inset: 20% -5% -20% 48%; background: url('../images/contour-lines.svg') center/cover no-repeat; opacity: .75; }
.page-hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .75fr; gap: 84px; align-items: center; }
.page-hero-copy h1 { font-size: clamp(3.4rem, 6vw, 6rem); }
.page-hero-lead { max-width: 720px; margin: 28px 0 0; color: #46514d; font-size: 21px; }
.page-hero-media { position: relative; height: 520px; margin: 0; overflow: hidden; border-radius: 150px 24px 24px 24px; background: var(--green-100); box-shadow: var(--shadow); }
.page-hero-media::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 60%,rgba(13,45,42,.62)); }
.page-hero-media img { width:100%; height:100%; object-fit:cover; }
.page-hero-media figcaption { position:absolute; z-index:2; left:28px; bottom:24px; color:white; font-weight:700; }
.page-hero-media figcaption span { display:block; color:#e8c96e; font-size:12px; text-transform:uppercase; letter-spacing:.1em; }
.intro-section { background: var(--paper); }
.service-link-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-link-card { min-height:300px; display:flex; flex-direction:column; padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:var(--white); text-decoration:none; transition:transform .2s, box-shadow .2s, border-color .2s; }
.service-link-card:hover { transform:translateY(-4px); border-color:rgba(181,138,40,.55); box-shadow:var(--shadow); }
.service-link-card > span { color:var(--gold-dark); font-family:ui-monospace,monospace; font-size:13px; }
.service-link-card h3 { margin:38px 0 16px; font-size:30px; }
.service-link-card p { color:var(--muted); }
.service-link-card strong { margin-top:auto; color:var(--green-900); font-size:14px; }
.dark-section { padding:100px 0; color:rgba(255,255,255,.78); background:var(--green-950); }
.dark-section h2 { color:white; }
.two-column { display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:start; }
.two-column > div > p:not(.eyebrow) { margin-top:24px; font-size:19px; }
.light-list { display:grid; grid-template-columns:1fr 1fr; gap:0 30px; padding:0; margin:0; list-style:none; border-top:1px solid rgba(255,255,255,.15); }
.light-list li { padding:18px 0 18px 25px; border-bottom:1px solid rgba(255,255,255,.15); position:relative; }
.light-list li::before { content:""; position:absolute; left:0; top:28px; width:12px; height:1px; background:#e2c16d; }
.page-process { display:grid; grid-template-columns:repeat(5,1fr); padding:0; margin:0; list-style:none; border-top:1px solid var(--line); }
.page-process li { padding:34px 22px 0; border-left:1px solid var(--line); }
.page-process li:first-child { border-left:0; padding-left:0; }
.page-process span { color:var(--gold-dark); font-family:ui-monospace,monospace; font-size:13px; }
.page-process h3 { margin-top:34px; min-height:92px; font-size:27px; }
.page-process p { color:var(--muted); font-size:15px; }
.situation-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; padding:0; margin:0; list-style:none; }
.situation-grid li { min-height:95px; display:flex; align-items:center; padding:22px 22px 22px 48px; position:relative; border:1px solid var(--line); border-radius:18px; background:var(--white); }
.situation-grid li::before { content:""; position:absolute; left:22px; width:10px; height:10px; border:2px solid var(--gold); border-radius:50%; }
.detail-section { background:var(--green-050); }
.content-stack { max-width:1000px; margin-inline:auto; }
.content-block { display:grid; grid-template-columns:80px 1fr; gap:34px; padding:48px 0; border-top:1px solid var(--line); }
.content-block:first-child { border-top:0; padding-top:0; }
.content-number { color:var(--gold-dark); font-family:ui-monospace,monospace; font-size:13px; padding-top:12px; }
.content-block h2 { font-size:clamp(2rem,3.6vw,3.7rem); }
.content-block p { max-width:820px; margin-top:20px; color:var(--muted); font-size:18px; }
.detail-list { display:grid; grid-template-columns:1fr 1fr; gap:10px 28px; padding:0; margin:24px 0 0; list-style:none; }
.detail-list li { position:relative; padding-left:24px; }
.detail-list li::before { content:""; position:absolute; left:0; top:.72em; width:12px; height:1px; background:var(--gold); }
.panel-section { background:var(--ivory); }
.document-panel { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; padding:58px; border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--white); }
.document-panel > div > p:not(.eyebrow) { margin-top:20px; color:var(--muted); }
.document-list { display:grid; grid-template-columns:1fr 1fr; gap:0 28px; padding:0; margin:0; list-style:none; border-top:1px solid var(--line); }
.document-list li { padding:15px 0 15px 24px; border-bottom:1px solid var(--line); position:relative; }
.document-list li::before { content:""; position:absolute; left:0; top:25px; width:10px; height:1px; background:var(--gold); }
.faq-section { background:var(--paper); }
.faq-grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:80px; align-items:start; }
.faq-list { border-top:1px solid var(--line); }
.faq-list details { border-bottom:1px solid var(--line); }
.faq-list summary { display:flex; justify-content:space-between; gap:20px; padding:22px 0; color:var(--green-950); font-weight:700; cursor:pointer; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary span { flex:0 0 auto; color:var(--gold-dark); font-size:24px; transition:transform .2s; }
.faq-list details[open] summary span { transform:rotate(45deg); }
.faq-list details div { padding:0 45px 22px 0; color:var(--muted); }
.location-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; }
.location-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.location-cards div { padding:24px; border:1px solid rgba(255,255,255,.15); border-radius:18px; }
.location-cards strong { color:white; }
.location-cards p { margin-top:8px; font-size:15px; }
.article-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.article-card { min-height:320px; display:flex; flex-direction:column; padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:var(--white); }
.article-card > span { color:var(--gold-dark); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.08em; }
.article-card h2 { margin-top:42px; font-size:30px; }
.article-card p { color:var(--muted); margin-top:18px; }
.article-card a { margin-top:auto; color:var(--green-900); font-weight:700; }
.contact-section { background:var(--paper); }
.contact-page-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:46px; align-items:start; }
.contact-options { display:grid; gap:16px; }
.contact-option { padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:var(--white); }
.contact-option > span { color:var(--gold-dark); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.contact-option h2 { margin:22px 0 14px; font-size:32px; }
.contact-option p { color:var(--muted); }
.contact-form-card { padding:42px; border-radius:var(--radius-lg); background:var(--green-950); color:rgba(255,255,255,.75); }
.contact-form-card h2 { color:white; }
.contact-form-card > p:not(.eyebrow) { margin:18px 0 28px; }
.contact-form-card form { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-form-card label { display:grid; gap:7px; color:white; font-weight:600; font-size:14px; }
.contact-form-card input,.contact-form-card select,.contact-form-card textarea { width:100%; padding:13px 14px; border:1px solid rgba(255,255,255,.2); border-radius:12px; color:var(--graphite); background:var(--paper); }
.contact-form-card input:focus,.contact-form-card select:focus,.contact-form-card textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,138,40,.22); outline: 0; }
.contact-form-card .full { grid-column:1/-1; }
.contact-form-card .consent { grid-template-columns:auto 1fr; align-items:start; color:rgba(255,255,255,.72); font-weight:400; }
.contact-form-card .consent input { width:18px; margin-top:4px; }
.contact-form-card .consent a { color: var(--white); text-underline-offset: 4px; }
.contact-info-grid { display:grid; grid-template-columns:1.2fr repeat(4,1fr); gap:20px; align-items:start; }
.contact-info-grid > a,.contact-info-grid > div:not(:first-child) { display:flex; flex-direction:column; padding-top:16px; border-top:1px solid rgba(255,255,255,.18); text-decoration:none; }
.contact-info-grid strong { color:white; }
.contact-info-grid span { font-size:14px; }
.legal-hero { padding:86px 0; background:var(--ivory); }
.legal-hero p:last-child { max-width:760px; margin-top:25px; color:var(--muted); font-size:20px; }
.legal-layout { display:grid; grid-template-columns:260px 1fr; gap:70px; align-items:start; }
.legal-layout aside { position:sticky; top:120px; display:grid; gap:8px; padding:24px; border:1px solid var(--line); border-radius:18px; }
.legal-layout aside strong { margin-bottom:10px; }
.legal-layout aside a { color:var(--muted); font-size:14px; text-decoration:none; }
.legal-layout aside a:hover { color:var(--green-900); }
.legal-content article { padding:0 0 38px; margin-bottom:38px; border-bottom:1px solid var(--line); }
.legal-content h2 { font-size:32px; }
.legal-content p { margin-top:18px; color:var(--muted); font-size:18px; }
.status-page { min-height:70vh; display:grid; place-items:center; padding:80px 0; background:var(--ivory); }
.status-card { max-width:850px; text-align:center; padding:70px; border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--paper); box-shadow:var(--shadow); }
.status-card > span { display:block; margin-bottom:24px; color:var(--gold-dark); font-family:ui-monospace,monospace; font-size:46px; }
.status-card .eyebrow { justify-content:center; }
.status-card h1 { font-size:clamp(3rem,6vw,5.5rem); }
.status-card > p:not(.eyebrow) { max-width:650px; margin:28px auto; color:var(--muted); font-size:19px; }
.status-card .hero-actions { justify-content:center; }
.footer-bottom > div { display:flex; gap:20px; align-items:center; }

@media (max-width: 1000px) {
  .page-hero-grid { grid-template-columns:1fr .75fr; gap:42px; }
  .page-hero-media { height:460px; }
  .service-link-grid,.article-grid { grid-template-columns:1fr 1fr; }
  .page-process { grid-template-columns:repeat(3,1fr); row-gap:36px; }
  .page-process li:nth-child(4) { border-left:0; padding-left:0; }
  .contact-info-grid { grid-template-columns:1fr 1fr; }
  .contact-info-grid > div:first-child { grid-column:1/-1; }
}
@media (max-width: 860px) {
  .page-hero { padding:58px 0 72px; }
  .page-hero-grid,.two-column,.document-panel,.faq-grid,.location-grid,.contact-page-grid,.legal-layout { grid-template-columns:1fr; }
  .page-hero-media { height:460px; max-width:650px; width:100%; }
  .location-cards { grid-template-columns:1fr 1fr; }
  .legal-layout aside { position:static; }
}
@media (max-width: 600px) {
  .page-hero-copy h1 { font-size:clamp(2.8rem,13vw,4.3rem); }
  .page-hero-lead { font-size:18px; }
  .page-hero-media { height:360px; border-radius:90px 18px 18px 18px; }
  .service-link-grid,.article-grid,.situation-grid,.light-list,.detail-list,.document-list,.location-cards,.contact-form-card form,.contact-info-grid { grid-template-columns:1fr; }
  .page-process { grid-template-columns:1fr; border-top:0; }
  .page-process li,.page-process li:first-child,.page-process li:nth-child(4) { padding:24px 0; border-left:0; border-top:1px solid var(--line); }
  .page-process h3 { min-height:0; margin-top:15px; }
  .content-block { grid-template-columns:1fr; gap:12px; padding:36px 0; }
  .document-panel,.contact-form-card,.status-card { padding:32px 22px; }
  .contact-form-card .full { grid-column:auto; }
  .contact-form-card .consent { grid-template-columns:auto 1fr; }
  .footer-bottom > div { align-items:flex-start; flex-direction:column; gap:8px; }
}


/* Final audit safeguards */
.footer-grid a, .footer-grid p, .contact-info-grid a { overflow-wrap: anywhere; }
[hidden] { display: none !important; }
@media print {
  .utility-bar, .site-header, .whatsapp-float, .cookie-banner, .final-cta, .cta-panel { display:none !important; }
  body { background:#fff; color:#000; font-size:12pt; }
  .section, .dark-section, .page-hero { padding:24px 0; background:#fff !important; color:#000 !important; }
  h1,h2,h3,.dark-section h2 { color:#000 !important; }
  a { text-decoration:underline; }
}
