:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #5f6b7a;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #dbe3ec;
  --amber: #f6b81a;
  --amber-dark: #c98200;
  --red: #d73535;
  --green: #128c4a;
  --blue: #1c6dd0;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 78px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 10px max(16px, calc((100vw - 1120px) / 2));
  background: #ffffff;
  border-bottom: 1px solid rgba(219, 227, 236, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-logo {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--paper);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
}

.brand strong {
  display: block;
  line-height: 1.1;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--soft);
  outline: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 64% 50%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.76) 42%, rgba(17, 24, 39, 0.24) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--paper);
  padding: 86px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover,
.btn:focus-visible,
.header-call:hover,
.header-call:focus-visible,
.sticky-cta a:hover,
.sticky-cta a:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--amber);
  color: #1a1300;
  box-shadow: 0 12px 28px rgba(246, 184, 26, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffca36;
}

.btn-whatsapp {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(18, 140, 74, 0.28);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.text-link,
.mini-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-note {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}

.region-page .trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.trust-grid article {
  min-height: 118px;
  padding: 18px;
  background: var(--paper);
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.trust-grid span,
.section-heading p,
.copy-block p,
.price-copy p,
.faq-intro p,
.contact-copy p,
.reason-layout p,
.process-list p,
.region-card p,
.reason-grid p {
  color: var(--muted);
}

.section {
  padding: 78px 0;
}

@supports (content-visibility: auto) {
  .section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-dark .section-kicker,
.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.split-layout,
.contact-layout,
.reason-layout,
.price-box,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: start;
}

.copy-block h2,
.section-heading h2,
.reason-layout h2,
.price-box h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.copy-block p,
.price-copy p,
.contact-copy p {
  margin: 18px 0 0;
}

.media-stack {
  display: grid;
  gap: 14px;
}

.media-stack img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 22 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 700px;
}

.section-heading p {
  margin: 14px 0 0;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.scope-grid article {
  min-height: 300px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.scope-grid h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.scope-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.region-card,
.reason-grid article,
.process-list li,
.lead-form,
.contact-method {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.region-card {
  min-height: 290px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.region-card h3,
.reason-grid h3,
.process-list h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.region-card h3 a {
  text-decoration: none;
}

.region-card h3 a:hover,
.region-card h3 a:focus-visible {
  color: var(--blue);
  outline: none;
}

.region-card p {
  margin: 0;
}

.region-card .mini-link {
  margin-top: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid figcaption {
  padding: 10px 2px 0;
  color: var(--muted);
  font-weight: 800;
}

.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reason-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 20px;
}

.reason-grid p {
  margin: 10px 0 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 230px;
  padding: 20px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--amber);
  color: #1a1300;
  font-weight: 900;
}

.process-list p {
  margin: 10px 0 0;
}

.price-section {
  background: #fff7db;
}

.price-box {
  align-items: center;
}

.price-copy {
  padding: 26px;
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.faq-layout {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.contact-method {
  display: grid;
  gap: 3px;
  padding: 16px;
  text-decoration: none;
}

.contact-method span {
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--paper);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-panel h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.clean-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.clean-list strong {
  color: var(--ink);
}

.lead-form {
  padding: 24px;
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-top: 13px;
  color: var(--ink-2);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--paper);
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(28, 109, 208, 0.16);
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 600;
  color: var(--muted);
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.lead-form button {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 36px 0 96px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: start;
}

.footer-brand .brand-logo {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--paper);
  padding: 8px 11px;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(520px, calc(100% - 24px));
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid rgba(219, 227, 236, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.2);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  color: var(--paper);
  text-decoration: none;
  font-weight: 900;
}

.sticky-phone {
  background: var(--red);
}

.sticky-whatsapp {
  background: var(--green);
}

.policy-modal {
  width: min(680px, calc(100% - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

.policy-modal::backdrop {
  background: rgba(17, 24, 39, 0.64);
}

.modal-card {
  position: relative;
  padding: 28px;
  background: var(--paper);
}

.modal-card h2 {
  margin: 0 42px 12px 0;
  font-size: 1.45rem;
}

.modal-card p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .trust-grid,
  .region-grid,
  .scope-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .contact-layout,
  .reason-layout,
  .price-box,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15.5px;
    padding-bottom: 86px;
  }

  .section-inner {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    gap: 10px;
    padding: 8px 12px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .header-call {
    padding: 9px 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-media {
    object-position: 58% 48%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.7)),
      linear-gradient(0deg, rgba(17, 24, 39, 0.68), rgba(17, 24, 39, 0.12));
  }

  .hero-content {
    padding: 58px 0 42px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .hero-actions .btn,
  .inline-actions .btn {
    width: 100%;
  }

  .trust-grid,
  .region-grid,
  .scope-grid,
  .gallery-grid,
  .reason-grid,
  .process-list,
  .contact-methods,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .region-card,
  .process-list li {
    min-height: auto;
  }

  .price-copy,
  .lead-form,
  .modal-card {
    padding: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
