:root {
  --bg: #11100e;
  --bg-2: #181612;
  --paper: #f4efe4;
  --paper-2: #e7dccb;
  --ink: #17130e;
  --muted: #6c6254;
  --cream: #fff6e7;
  --cream-soft: #d7cab8;
  --ember: #e95624;
  --ember-dark: #a73316;
  --gold: #d8a441;
  --green: #1f7a4d;
  --line-dark: rgba(255, 246, 231, 0.14);
  --line-light: rgba(23, 19, 14, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 46px rgba(17, 13, 8, 0.16);
  --shadow-lift: 0 22px 48px rgba(233, 86, 36, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-width: 320px;
  color: var(--cream);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

p {
  text-wrap: pretty;
}

h1, h2, h3 {
  text-wrap: balance;
  letter-spacing: 0;
  line-height: 1;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  background: rgba(255, 246, 231, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--bg-2);
}

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

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section-title {
  max-width: 780px;
  font-size: clamp(2rem, 8vw, 4.9rem);
}

.section-copy {
  max-width: 720px;
  color: var(--cream-soft);
  font-size: 1.04rem;
}

.section-light .section-copy,
.section-light .muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 246, 231, 0.08);
  background: rgba(17, 16, 14, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  border-color: rgba(255, 246, 231, 0.16);
  background: rgba(17, 16, 14, 0.94);
}

.nav {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  overflow: clip;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: linear-gradient(145deg, #2f2013, #100a06);
  color: var(--gold);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: grid;
  gap: 0.06rem;
}

.brand-name strong,
.brand-name span {
  display: block;
}

.brand-name strong {
  font-size: 1rem;
}

.brand-name span {
  color: var(--cream-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-actions,
.nav-links {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 246, 231, 0.05);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line-dark);
  padding: 0.75rem 0 1rem;
}

.mobile-menu.is-open {
  display: grid;
  gap: 0.35rem;
}

.mobile-menu a {
  padding: 0.78rem 0;
  color: var(--cream-soft);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.82rem 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.28s var(--ease-out), background 0.28s var(--ease-out), color 0.28s var(--ease-out), border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #16110c;
  background: linear-gradient(135deg, #f2be54, var(--gold));
  box-shadow: 0 14px 30px rgba(216, 164, 65, 0.28);
}

.btn-primary:hover {
  background: #f2be54;
  box-shadow: 0 18px 38px rgba(216, 164, 65, 0.4);
}

.btn-secondary {
  border-color: var(--line-dark);
  color: var(--cream);
  background: rgba(255, 246, 231, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(255, 246, 231, 0.36);
  background: rgba(255, 246, 231, 0.12);
}

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

.btn-light {
  border-color: var(--line-light);
  color: var(--ink);
  background: var(--paper);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 22px 0 26px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -25% -20% auto;
  z-index: -2;
  height: 58%;
  background:
    radial-gradient(45% 55% at 18% 32%, rgba(233, 86, 36, 0.22), transparent 62%),
    radial-gradient(45% 55% at 78% 12%, rgba(216, 164, 65, 0.2), transparent 60%);
  filter: blur(40px);
}

.hero-layout {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 0.65rem;
  padding-top: 0;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(2rem, 5.6vw, 3.4rem);
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  max-width: 560px;
  color: var(--cream-soft);
  font-size: clamp(1rem, 2.6vw, 1.15rem);
}

.hero-proof {
  display: grid;
  gap: 0.55rem;
  color: var(--cream-soft);
  font-size: 0.94rem;
}

.hero-proof strong {
  color: var(--cream);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-top: 0.1rem;
}

.hero-visual {
  position: relative;
}

.product-shot {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(255, 246, 231, 0.08), rgba(255, 246, 231, 0.02)),
    #171410;
  box-shadow: var(--shadow);
}

.product-shot img,
.product-shot video {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-photo {
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    animation: none;
  }
}

.visual-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  padding: 0.8rem 1rem;
  color: var(--cream-soft);
  font-size: 0.86rem;
}

.visual-note strong {
  color: var(--gold);
  font-family: var(--mono);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.hero-strip span {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.1rem;
  color: var(--cream-soft);
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  background: rgba(255, 246, 231, 0.04);
}

.trust-grid,
.product-grid,
.steps-grid,
.why-grid {
  display: grid;
  gap: 1rem;
}

.trust-card,
.product-card,
.step-card,
.why-card,
.coverage-card,
.missing-card {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

.trust-card:hover,
.step-card:hover,
.why-card:hover,
.coverage-card:hover,
.missing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.trust-card,
.step-card,
.why-card {
  padding: 1.15rem;
}

.trust-card span,
.step-card span,
.why-card span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--ember-dark);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-card h3,
.product-card h3,
.step-card h3,
.why-card h3,
.coverage-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.trust-card p,
.product-card p,
.step-card p,
.why-card p,
.coverage-card p,
.missing-card p,
.faq p {
  color: var(--muted);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: clip;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.product-card figure {
  overflow: clip;
  background: #211b15;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-body {
  display: grid;
  gap: 0.72rem;
  padding: 1.1rem;
}

.product-body .btn-dark {
  border-radius: var(--radius-pill);
}

.product-meta {
  color: var(--ember-dark);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-list {
  margin-top: 2rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: clip;
  background: rgba(255, 255, 255, 0.5);
}

.price-list-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.1rem 1.25rem 0.9rem;
}

.price-list-head h3 {
  font-size: 1.05rem;
}

.price-list-head span {
  color: var(--muted);
  font-size: 0.85rem;
}

.price-list-rows {
  display: grid;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--line-light);
}

.price-row span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.price-row span:last-child {
  color: var(--ember-dark);
  font-family: var(--mono);
  font-weight: 800;
  white-space: nowrap;
}

.price-list-note {
  padding: 0.9rem 1.25rem 1.1rem;
  border-top: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 0.85rem;
}

.proceso-layout {
  display: grid;
  gap: 1.6rem;
}

.proceso-media {
  display: grid;
  gap: 1rem;
}

.proceso-video {
  max-width: 320px;
  margin: 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: clip;
  background: #171410;
  box-shadow: var(--shadow);
}

.proceso-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.proceso-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.proceso-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
}

.coverage-layout {
  display: grid;
  gap: 1rem;
}

.coverage-map {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: clip;
  background: #14120f;
  box-shadow: var(--shadow-soft);
}

.coverage-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: grayscale(38%) invert(92%) contrast(92%) hue-rotate(180deg) brightness(0.94) saturate(1.15);
}

.coverage-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px 10px rgba(11, 10, 8, 0.55);
  border-radius: var(--radius-lg);
}

.coverage-list {
  display: grid;
  gap: 1rem;
}

.coverage-card {
  border-color: var(--line-dark);
  background: rgba(255, 246, 231, 0.04);
  padding: 1.1rem;
}

.coverage-card p {
  color: var(--cream-soft);
  font-size: 0.94rem;
}

.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
  background: #0c0b09;
}

.marquee-track {
  display: inline-flex;
  gap: 1.2rem;
  min-width: max-content;
  padding: 1rem 0;
  color: var(--cream-soft);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.process {
  background:
    linear-gradient(rgba(23, 19, 14, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 14, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.faq {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid var(--line-light);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--ember-dark);
  font-family: var(--mono);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  max-width: 760px;
  padding-top: 0.7rem;
}

.final-cta {
  position: relative;
  padding: 70px 0;
  overflow: clip;
  background: #0d0b09;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -80% -20% auto;
  height: 140%;
  background: radial-gradient(circle at 50% 30%, rgba(233, 86, 36, 0.24), transparent 48%);
  pointer-events: none;
}

.final-box {
  position: relative;
  display: grid;
  gap: 1.2rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  background: rgba(255, 246, 231, 0.05);
  box-shadow: var(--shadow);
}

.final-box h2 {
  font-size: clamp(2.3rem, 12vw, 6rem);
}

.final-box p {
  max-width: 640px;
  color: var(--cream-soft);
}

.final-actions {
  display: grid;
  gap: 0.75rem;
}

.missing-grid {
  display: grid;
  gap: 1rem;
}

.missing-card {
  padding: 1.1rem;
}

.missing-card code {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--ember-dark);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer {
  padding: 40px 0 96px;
  color: var(--cream-soft);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.2rem;
}

.footer-grid strong {
  color: var(--cream);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.mobile-contact-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.65rem 0.8rem calc(0.65rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-dark);
  background: rgba(17, 16, 14, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-contact-bar .btn {
  min-height: 50px;
  padding-inline: 0.6rem;
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

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

  .marquee-track {
    animation-duration: 60s;
  }
}

@media (min-width: 540px) {
  .hero-actions,
  .final-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .steps-grid,
  .why-grid,
  .missing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .section {
    padding: 92px 0;
  }

  .mobile-contact-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 44px;
  }

  .hero-actions,
  .final-actions {
    width: fit-content;
  }
}

@media (min-width: 960px) {
  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .nav-links,
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .nav-links a {
    color: var(--cream-soft);
    font-size: 0.92rem;
    font-weight: 800;
  }

  .nav-links a:hover {
    color: var(--cream);
  }

  .hero-layout {
    grid-template-columns: 1.04fr 0.96fr;
  }

  .trust-grid,
  .product-grid,
  .steps-grid,
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coverage-layout {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: stretch;
  }

  .coverage-map {
    min-height: 420px;
  }

  .coverage-map iframe {
    min-height: 420px;
  }

  .coverage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proceso-media {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .proceso-video {
    max-width: 280px;
  }

  .final-box {
    padding: 2.4rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .hero {
    padding-top: 56px;
  }
}
