:root {
  --color-bg: #060606;
  --color-bg-soft: #111111;
  --color-panel: rgba(14, 14, 14, 0.86);
  --color-panel-soft: rgba(28, 28, 28, 0.88);
  --color-stroke: rgba(212, 175, 55, 0.35);
  --color-accent: #d4af37;
  --color-accent-strong: #f0c75e;
  --color-text: #fff7df;
  --color-text-muted: rgba(255, 247, 223, 0.8);
  --color-whatsapp: #25d366;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.14), transparent 35%),
    linear-gradient(180deg, #090909, #020202);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#d4af37 0.7px, transparent 0.7px);
  background-size: 18px 18px;
}

body.theme-light {
  --color-bg: #fffaf0;
  --color-bg-soft: #f5ebd8;
  --color-panel: rgba(255, 252, 244, 0.9);
  --color-panel-soft: rgba(255, 255, 255, 0.92);
  --color-stroke: rgba(168, 122, 33, 0.24);
  --color-accent: #a8791f;
  --color-accent-strong: #7b5615;
  --color-text: #17130c;
  --color-text-muted: rgba(23, 19, 12, 0.72);
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.28), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.95), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f7eddc 46%, #fffdf8 100%);
}

body.theme-light::before {
  opacity: 0.14;
  background-image:
    radial-gradient(rgba(168, 122, 33, 0.38) 0.8px, transparent 0.8px);
}

.page-shell {
  position: relative;
  z-index: 1;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

body.theme-light .topbar {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.72));
  border-bottom: 1px solid rgba(168, 122, 33, 0.16);
  box-shadow: 0 12px 34px rgba(91, 64, 12, 0.08);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 180px;
  max-width: 44vw;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.theme-light .menu-toggle {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(168, 122, 33, 0.24);
  box-shadow: 0 10px 22px rgba(91, 64, 12, 0.07);
}

.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  opacity: 0.92;
  transition: color 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
  color: var(--color-accent-strong);
  opacity: 1;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.5);
}

.theme-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c75e, #c89b2d);
  color: #111111;
  font-size: 0.82rem;
  line-height: 1;
}

body.theme-light .theme-toggle {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(168, 122, 33, 0.24);
  box-shadow: 0 10px 22px rgba(91, 64, 12, 0.07);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0c75e, #c89b2d);
  color: #111111 !important;
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  padding: 130px 20px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.78) 100%),
    url('img/hero-moreno-dark.jpg') center/cover no-repeat;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

body.theme-light .hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.94) 0%, rgba(255, 250, 240, 0.72) 42%, rgba(255, 250, 240, 0.28) 100%),
    url('img/hero-moreno-light.jpg') center/cover no-repeat;
  border-bottom: 1px solid rgba(168, 122, 33, 0.18);
  box-shadow: inset 0 -80px 90px rgba(255, 250, 240, 0.8);
}

.hero-copy,
.hero-feature {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.05;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

p {
  color: var(--color-text-muted);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
}

.hero-copy p {
  max-width: 560px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2cb65, #bf9330);
  color: #111111;
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.3);
  filter: brightness(1.03);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

body.theme-light .btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(168, 122, 33, 0.22);
  box-shadow: 0 12px 28px rgba(91, 64, 12, 0.08);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2bd96b, #159b48);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.2);
}

.hero-feature {
  display: grid;
  gap: 18px;
}

.hero-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--color-panel);
  border: 1px solid var(--color-stroke);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

body.theme-light .hero-card,
body.theme-light .step-card,
body.theme-light .feature-card,
body.theme-light .testimonial-card {
  box-shadow: 0 20px 46px rgba(91, 64, 12, 0.11);
}

.hero-card h3,
.feature-card h3,
.step-card h3 {
  margin-bottom: 10px;
}

.hero-card strong,
.hero-card span,
.step-number,
.testimonial-name,
.brands-row span {
  font-family: 'Segoe UI', sans-serif;
}

.hero-card-tall {
  min-height: 220px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--color-accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-mini-grid .hero-card {
  min-height: 120px;
}

.hero-mini-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent-strong);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 68px 20px;
}

.section-title {
  margin-bottom: 26px;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: '';
  display: inline-block;
  width: 72px;
  height: 1px;
  margin: 0 14px 10px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.9), transparent);
}

.process-section,
.benefits-section,
.testimonials-section,
.brands-section,
.cta-panel,
.footer {
  position: relative;
  z-index: 1;
}

.steps-grid,
.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card,
.feature-card,
.testimonial-card {
  padding: 26px;
  border-radius: 22px;
  background: var(--color-panel-soft);
  border: 1px solid var(--color-stroke);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.step-card {
  text-align: left;
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-accent-strong);
}

.brands-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brands-row span {
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.theme-light .brands-row span {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(168, 122, 33, 0.2);
  box-shadow: 0 12px 28px rgba(91, 64, 12, 0.06);
}

.testimonial-card {
  text-align: center;
}

.testimonial-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  margin-bottom: 18px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.4)),
    url('img/testimonial-1.jpg') center/cover no-repeat;
}

body.theme-light .testimonial-photo {
  background:
    linear-gradient(rgba(255, 250, 240, 0.04), rgba(23, 19, 12, 0.2)),
    url('img/testimonial-1.jpg') center/cover no-repeat;
}

.testimonial-photo-alt {
  filter: grayscale(0.12) brightness(0.82);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.4)),
    url('img/testimonial-2.jpg');
  background-position: right center;
}

body.theme-light .testimonial-photo-alt {
  filter: saturate(1.04) brightness(1);
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.04), rgba(23, 19, 12, 0.2)),
    url('img/testimonial-2.jpg');
}

blockquote {
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 1.12rem;
  line-height: 1.55;
}

.testimonial-name {
  margin-bottom: 0;
  color: var(--color-accent-strong);
  font-weight: 700;
}

.cta-panel {
  max-width: 920px;
  margin: 10px auto 70px;
  padding: 36px 24px;
  text-align: center;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(29, 29, 29, 0.96), rgba(12, 12, 12, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
}

body.theme-light .cta-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 232, 0.94));
  border: 1px solid rgba(168, 122, 33, 0.22);
  box-shadow: 0 24px 56px rgba(91, 64, 12, 0.12);
}

.cta-panel p {
  max-width: 620px;
  margin: 0 auto 20px;
}

.service-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 24px;
  font-family: 'Segoe UI', sans-serif;
}

.service-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: var(--color-accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer {
  padding: 24px 20px 100px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

body.theme-light .footer {
  border-top: 1px solid rgba(168, 122, 33, 0.16);
}

.footer p {
  margin-bottom: 8px;
}

.social-float {
  position: fixed;
  right: 20px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-float svg {
  width: 32px;
  height: 32px;
}

.social-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.tiktok-float {
  bottom: 164px;
  background: linear-gradient(135deg, #111111, #ff0050 52%, #00f2ea);
  box-shadow: 0 14px 30px rgba(255, 0, 80, 0.24);
}

.instagram-float {
  bottom: 92px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  box-shadow: 0 14px 30px rgba(238, 42, 123, 0.3);
}

.whatsapp-float {
  bottom: 20px;
  background: var(--color-whatsapp);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .feature-grid,
  .testimonial-grid,
  .brands-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
    align-items: center;
  }

  .logo img {
    width: 150px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.theme-light .nav-links {
    background: rgba(255, 250, 240, 0.96);
    border-color: rgba(168, 122, 33, 0.22);
    box-shadow: 0 20px 46px rgba(91, 64, 12, 0.16);
  }

  .nav-links a,
  .theme-toggle {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    box-sizing: border-box;
  }

  .hero {
    padding-top: 140px;
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.36) 52%, rgba(0, 0, 0, 0.82) 100%),
      url('img/hero-moreno-dark.jpg') center/cover no-repeat;
  }

  body.theme-light .hero {
    background:
      linear-gradient(90deg, rgba(255, 250, 240, 0.94) 0%, rgba(255, 250, 240, 0.72) 42%, rgba(255, 250, 240, 0.28) 100%),
      url('img/hero-moreno-light.jpg') center/cover no-repeat;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .hero-mini-grid,
  .steps-grid,
  .feature-grid,
  .testimonial-grid,
  .brands-row {
    grid-template-columns: 1fr;
  }

  .section-title::before,
  .section-title::after {
    width: 36px;
    margin: 0 8px 8px;
  }

  .social-float {
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .social-float svg {
    width: 28px;
    height: 28px;
  }

  .instagram-float {
    bottom: 82px;
  }

  .tiktok-float {
    bottom: 148px;
  }

  .whatsapp-float {
    bottom: 16px;
  }
}
