:root {
  --ink: #122033;
  --ink-2: #1a2c43;
  --night: #0c1828;
  --paper: #f7f6f1;
  --surface: #ffffff;
  --surface-soft: #eef1f3;
  --line: #d9dfe4;
  --muted: #5c6978;
  --accent: #f18a36;
  --accent-hover: #da7425;
  --whatsapp: #178b4d;
  --whatsapp-hover: #11753f;
  --open: #27a760;
  --closed: #c55549;
  --radius-sm: 10px;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(9, 22, 38, .08);
  --content: 1120px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-mobile-bar { padding-bottom: calc(78px + var(--safe-bottom)); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(calc(100% - 32px), var(--content)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 10px 14px; background: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(12, 24, 40, .96);
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: white;
}
.header-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.brand-mark { width: 30px; height: 30px; display: grid; place-items: center; background: var(--accent); color: var(--night); border-radius: 9px; font-size: 15px; }
.desktop-nav { display: none; align-items: center; gap: 24px; }
.desktop-nav a { color: #dce5ee; text-decoration: none; font-size: .9rem; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: white; }
.header-call { display: none !important; }

.hero { color: white; background: var(--night); padding: 42px 0 38px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -100px -180px auto; width: 360px; aspect-ratio: 1; border: 1px solid rgba(241,138,54,.18); border-radius: 50%; box-shadow: 0 0 0 52px rgba(241,138,54,.035), 0 0 0 105px rgba(241,138,54,.025); pointer-events: none; }
.hero-grid { display: grid; gap: 26px; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 13px; color: #f6b77e; font-weight: 750; font-size: .8rem; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 16px; max-width: 14ch; font-size: clamp(2.2rem, 11vw, 4.6rem); line-height: 1.02; letter-spacing: -.055em; }
.hero-lead { max-width: 62ch; color: #cbd6e2; font-size: 1rem; line-height: 1.7; margin-bottom: 22px; }
.cta-row { display: grid; gap: 10px; }
.btn { min-height: 52px; padding: 13px 18px; border: 1px solid transparent; border-radius: var(--radius-sm); display: inline-flex; justify-content: center; align-items: center; gap: 9px; font-weight: 800; text-decoration: none; cursor: pointer; transition: background .16s ease, border-color .16s ease, transform .16s ease; }
.btn:active { transform: translateY(1px); }
.btn-whatsapp { color: white; background: var(--whatsapp); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-call { color: white; background: transparent; border-color: #748398; }
.btn-call:hover { border-color: white; }
.btn-light { color: var(--night); background: white; }
.btn-outline { color: var(--ink); background: transparent; border-color: #bcc6ce; }
.btn[aria-disabled="true"] { opacity: .7; cursor: not-allowed; }
.icon { width: 20px; height: 20px; flex: none; }
.trust-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 12px; color: #dce5ee; font-size: .82rem; }
.trust-list li { min-width: 0; display: flex; gap: 7px; align-items: flex-start; }
.check { color: #76d59d; font-weight: 900; }
.service-board { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.status-line { display: flex; align-items: center; gap: 9px; font-weight: 850; font-size: 1rem; margin-bottom: 17px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #8491a0; box-shadow: 0 0 0 4px rgba(132,145,160,.16); }
.status-line.is-open .status-dot { background: var(--open); box-shadow: 0 0 0 4px rgba(39,167,96,.16); }
.status-line.is-closed .status-dot { background: var(--closed); box-shadow: 0 0 0 4px rgba(197,85,73,.14); }
.board-rows { margin: 0; }
.board-row { display: grid; grid-template-columns: 34px 1fr; gap: 11px; padding: 14px 0; border-top: 1px solid var(--line); }
.board-row dt { grid-column: 2; color: var(--muted); font-size: .78rem; font-weight: 700; }
.board-row dd { grid-column: 2; margin: -3px 0 0; font-weight: 780; }
.board-icon { grid-row: 1 / span 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: #e5e9ec; color: var(--ink); }

.section { padding: 58px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--ink); color: white; }
.section-heading { max-width: 670px; margin-bottom: 28px; }
.kicker { color: var(--accent-hover); font-weight: 850; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
h2 { font-size: clamp(1.8rem, 8vw, 3rem); line-height: 1.12; letter-spacing: -.035em; margin-bottom: 12px; }
h3 { font-size: 1.08rem; line-height: 1.3; margin-bottom: 7px; }
.section-heading p, .card p, .step p, .price-panel p { color: var(--muted); margin-bottom: 0; }
.section-dark .section-heading p { color: #cdd7e0; }
.category-grid { display: grid; gap: 12px; }
.card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; flex: none; color: var(--accent-hover); background: #fff1e5; }
.card h3 { margin: 0; }
.text-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--ink); font-size: .9rem; font-weight: 800; text-underline-offset: 4px; }

.steps { display: grid; gap: 0; counter-reset: steps; }
.step { position: relative; display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 4px 0 28px; }
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::after { content: ""; position: absolute; left: 22px; top: 45px; bottom: 2px; width: 1px; background: #cbd3da; }
.step-number { width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-weight: 900; }
.step-copy { padding-top: 2px; }

.price-panel { position: relative; overflow: hidden; border-radius: var(--radius); background: #fff0e2; border: 1px solid #f0c39d; padding: 25px 22px; }
.price-panel h2 { max-width: 16ch; font-size: clamp(1.75rem, 8vw, 2.8rem); }
.price-panel p { max-width: 62ch; color: #66492f; }
.price-notes { display: grid; gap: 9px; margin-top: 20px; }
.price-note { display: flex; gap: 10px; font-weight: 760; color: #45311f; }

.area-wrap { display: grid; gap: 22px; }
.area-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.area-list li { padding: 9px 12px; border: 1px solid #43536a; border-radius: 9px; color: #e5ebf1; background: rgba(255,255,255,.035); }
.area-empty { color: #cdd7e0; }
.area-actions { display: grid; gap: 10px; }
.area-actions .btn { width: 100%; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { min-height: 62px; padding: 17px 36px 17px 0; cursor: pointer; font-weight: 820; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-size: 1.45rem; font-weight: 400; color: var(--muted); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); margin: -3px 0 18px; padding-right: 24px; }

.contact-card { border-radius: var(--radius); background: var(--ink-2); color: white; padding: 24px 20px; display: grid; gap: 23px; }
.contact-card h2 { margin-bottom: 8px; }
.contact-card p { color: #cbd6e2; margin: 0; }
.contact-actions { display: grid; gap: 10px; }
.contact-facts { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-fact { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-fact span { color: #aebac7; font-size: .8rem; }
.contact-fact strong, .contact-fact a { color: white; overflow-wrap: anywhere; }

.site-footer { background: #09131f; color: #b7c2ce; padding: 34px 0 26px; }
.footer-grid { display: grid; gap: 28px; }
.footer-brand p { margin: 12px 0 0; max-width: 43ch; font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-links a { color: #dfe7ee; font-size: .83rem; text-underline-offset: 4px; }
.footer-bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid #263548; font-size: .78rem; }

.mobile-bar { position: fixed; z-index: 60; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1.08fr .92fr; gap: 8px; padding: 9px 12px calc(9px + var(--safe-bottom)); background: rgba(247,246,241,.97); border-top: 1px solid var(--line); box-shadow: 0 -8px 26px rgba(7,19,32,.11); }
.mobile-bar .btn { min-height: 52px; padding-inline: 10px; }
.mobile-bar .btn-call { color: var(--ink); border-color: #bcc6ce; background: white; }
.toast { position: fixed; z-index: 80; left: 16px; right: 16px; bottom: calc(88px + var(--safe-bottom)); max-width: 440px; margin-inline: auto; padding: 13px 15px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); font-weight: 700; transform: translateY(20px); opacity: 0; pointer-events: none; transition: .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid #f4a15d; outline-offset: 3px; }

.legal-page { background: var(--surface); }
.legal-main { padding: 52px 0 90px; }
.legal-main h1 { max-width: none; color: var(--ink); font-size: clamp(2rem, 8vw, 3.5rem); }
.legal-note { padding: 16px; border-left: 4px solid var(--accent); background: #fff3e8; margin-bottom: 34px; }
.legal-section { padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--line); max-width: 780px; }

@media (min-width: 560px) {
  .cta-row, .area-actions, .contact-actions { display: flex; flex-wrap: wrap; }
  .cta-row .btn, .area-actions .btn, .contact-actions .btn { width: auto; min-width: 190px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-fact { grid-template-columns: 150px 1fr; align-items: baseline; }
}

@media (min-width: 800px) {
  body.has-mobile-bar { padding-bottom: 0; }
  .mobile-bar { display: none; }
  .header-inner { min-height: 72px; }
  .desktop-nav { display: flex; }
  .header-call { display: inline-flex !important; min-height: 40px; padding: 7px 13px; }
  .hero { padding: 76px 0 68px; }
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); align-items: center; gap: 54px; }
  .hero-lead { font-size: 1.08rem; }
  .trust-list { display: flex; flex-wrap: wrap; gap: 14px 22px; }
  .section { padding: 86px 0; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .step { display: block; padding: 0; }
  .step:not(:last-child)::after { left: 45px; top: 22px; bottom: auto; width: calc(100% - 17px); height: 1px; }
  .step-number { margin-bottom: 17px; }
  .step-copy { position: relative; background: var(--surface); padding-right: 8px; }
  .price-panel { padding: 42px; }
  .area-wrap { grid-template-columns: 1.2fr .8fr; align-items: end; }
  .area-actions { justify-content: flex-end; }
  .contact-card { padding: 40px; grid-template-columns: 1fr .8fr; }
  .contact-facts { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1.3fr; align-items: start; }
  .footer-links { justify-content: flex-end; }
}

@media (min-width: 1100px) {
  .category-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .card { padding: 22px 19px; }
  .card-top { align-items: flex-start; flex-direction: column; }
}

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