:root {
  --black: #0b0a08;
  --charcoal: #141210;
  --panel: #1d1914;
  --panel-2: #292016;
  --gold: #f4b000;
  --gold-bright: #ffd84d;
  --amber: #c97a10;
  --red: #b81f18;
  --green: #15a744;
  --white: #ffffff;
  --paper: #f7f4ee;
  --muted: #bdb6aa;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
strong,
span,
li {
  overflow-wrap: break-word;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-bright);
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 8, 0.94);
  border-bottom: 1px solid rgba(244, 176, 0, 0.28);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 216, 77, 0.5);
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  max-width: 190px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 12px 10px;
  color: #eee5d7;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--black);
  background: var(--gold-bright);
  outline: none;
}

.header-cta,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
}

.header-cta {
  padding: 12px 16px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(21, 167, 68, 0.25);
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #21bd54;
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 176, 0, 0.28);
}

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

.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.96) 0%, rgba(11, 10, 8, 0.83) 46%, rgba(11, 10, 8, 0.4) 100%),
    linear-gradient(180deg, rgba(11, 10, 8, 0.2) 0%, rgba(11, 10, 8, 0.88) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold-bright));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 86px 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 3.75rem;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 680px;
  margin: 22px 0 0;
  color: #f5eee2;
  font-size: 1.24rem;
}

.hero-proof {
  max-width: 780px;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.45);
  border-radius: 6px;
  font-weight: 850;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-width: 180px;
  padding: 15px 20px;
  font-size: 1rem;
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 30px rgba(244, 176, 0, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 2px;
}

.hero-urgent {
  max-width: 630px;
  margin: 24px 0 0;
  padding-left: 16px;
  color: #fff4db;
  border-left: 4px solid var(--red);
  font-weight: 800;
}

.trust-strip {
  background: #15130f;
  padding: 18px 0;
}

.section-tools {
  display: flex;
  justify-content: flex-end;
}

.snap-track {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
}

.snap-track::-webkit-scrollbar {
  height: 8px;
}

.snap-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.snap-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.trust-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.trust-card,
.service-card,
.step-card,
.risk-panel,
.keyword-panel,
.price-card,
.guarantee-badge,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.trust-card {
  min-height: 112px;
  padding: 18px;
}

.trust-card strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.02rem;
  line-height: 1.2;
}

.trust-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 74px 0;
}

.two-column,
.price-layout,
.guarantee-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.copy-block h2,
.section-heading h2,
.price-layout h2,
.guarantee-layout h2,
.final-cta h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.05;
  text-wrap: balance;
}

.copy-block p,
.section-heading p,
.price-layout p,
.guarantee-layout p,
.final-cta p {
  color: #ddd5c8;
  font-size: 1.04rem;
}

.copy-block p:last-of-type {
  margin-bottom: 26px;
}

.problem-section {
  background:
    linear-gradient(135deg, rgba(184, 31, 24, 0.12), transparent 34%),
    var(--black);
}

.risk-panel,
.keyword-panel {
  padding: 26px;
  background: linear-gradient(180deg, rgba(41, 32, 22, 0.96), rgba(17, 15, 12, 0.96));
}

.risk-panel h3,
.keyword-panel h3 {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 1.35rem;
}

.risk-panel ul,
.keyword-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-panel li,
.keyword-panel li {
  position: relative;
  padding-left: 24px;
  color: #f1eadf;
}

.risk-panel li::before,
.keyword-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(244, 176, 0, 0.14);
}

.services-section {
  background: var(--paper);
  color: var(--black);
}

.services-section .section-kicker,
.price-section .section-kicker {
  color: #9d5c00;
}

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

.section-heading p {
  color: #4c463e;
}

.carousel-shell {
  position: relative;
}

.gallery-shell {
  position: relative;
  width: min(100%, 680px);
  margin-inline: auto;
}

.carousel-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.carousel-buttons button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--gold-bright);
  border: 0;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.carousel-buttons button:hover,
.carousel-buttons button:focus-visible {
  background: var(--gold);
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.cards-track,
.steps-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  padding: 2px 2px 16px;
}

.service-card,
.step-card,
.gallery-card {
  scroll-snap-align: start;
}

.service-card {
  min-height: 286px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(29, 25, 20, 0.96), rgba(11, 10, 8, 0.96)),
    var(--black);
}

.card-number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.step-card p {
  color: #d8d1c5;
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  color: var(--gold-bright);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price-section {
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(244, 176, 0, 0.32), transparent 38%),
    #fffaf0;
}

.price-layout p {
  color: #4a443b;
  max-width: 670px;
}

.price-card {
  padding: 30px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(184, 31, 24, 0.9), rgba(20, 18, 16, 0.96) 48%, rgba(244, 176, 0, 0.75)),
    var(--panel);
}

.price-card span,
.price-card small {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  color: var(--gold-bright);
  font-size: 5rem;
  line-height: 0.9;
}

.price-card p {
  margin: 18px auto 0;
  color: #fff4df;
  max-width: 340px;
  font-weight: 800;
}

.process-section {
  background:
    linear-gradient(180deg, #161310, #0b0a08);
}

.process-section .section-heading p {
  color: var(--muted);
}

.step-card {
  min-height: 238px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.1), rgba(255, 255, 255, 0.04));
}

.step-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--black);
  background: var(--gold-bright);
  border-radius: 6px;
  font-weight: 900;
}

.gallery-section {
  background: #211a11;
}

.gallery-section .section-heading p {
  color: #d8d1c5;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  padding: 2px 0 16px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0f0d0b;
  aspect-ratio: 1 / 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #080706;
}

.gallery-card figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.guarantee-section {
  background:
    linear-gradient(135deg, rgba(244, 176, 0, 0.16), transparent 42%),
    var(--black);
}

.guarantee-badge {
  padding: 30px;
  color: var(--black);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
}

.guarantee-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1.05;
}

.guarantee-badge span {
  display: block;
  margin-top: 12px;
  font-weight: 850;
}

.coverage-section {
  background: #f4f0e8;
  color: var(--black);
}

.coverage-section .section-kicker {
  color: #9d5c00;
}

.coverage-section p {
  color: #4b463d;
}

.keyword-panel {
  color: var(--white);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.96), rgba(11, 10, 8, 0.84)),
    url("../fotos/686035602_122248686038117533_4491964234382147942_n.jpg") center / cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.final-cta-inner {
  position: relative;
  max-width: 820px;
}

.final-cta p {
  max-width: 680px;
  color: #f4eadc;
  font-size: 1.12rem;
}

.site-footer {
  padding: 44px 0 26px;
  color: #e8dfd1;
  background: #0a0908;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 216, 77, 0.5);
}

.footer-brand strong,
.site-footer h2 {
  display: block;
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 1rem;
}

.site-footer h2 {
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0 0 8px;
  color: #c9c0b2;
}

.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: #f8ead0;
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.float-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.float-whatsapp span {
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 800;
}

.float-whatsapp strong {
  font-size: 1rem;
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
  background: #21bd54;
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.mobile-only {
  display: none;
}

@media (min-width: 980px) {
  .cards-track {
    grid-auto-columns: minmax(260px, 1fr);
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    background: rgba(11, 10, 8, 0.98);
    border-bottom: 1px solid rgba(244, 176, 0, 0.25);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    margin-left: auto;
    padding: 10px 12px;
    min-height: 42px;
    max-width: 154px;
    font-size: 0.86rem;
    white-space: normal;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 10, 8, 0.92), rgba(11, 10, 8, 0.74) 48%, rgba(11, 10, 8, 0.96) 100%);
  }

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

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

  .eyebrow,
  .section-kicker {
    font-size: 0.76rem;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .two-column,
  .price-layout,
  .guarantee-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .copy-block h2,
  .section-heading h2,
  .price-layout h2,
  .guarantee-layout h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .trust-track {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 78%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .trust-card {
    scroll-snap-align: start;
  }

  .mobile-only {
    display: flex;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    padding-top: 44px;
  }

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

  .hero-proof {
    display: grid;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .trust-card {
    min-height: 104px;
  }

  .cards-track,
  .steps-track {
    grid-auto-columns: minmax(246px, 86%);
  }

  .price-card strong {
    font-size: 4rem;
  }

  .guarantee-badge strong {
    font-size: 1.65rem;
  }

  .float-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }

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

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