:root {
  --bg-page: #0a0e15; /* Tu color de página anterior */
  --bg-page-black: #000000; /* NUEVO: Negro absoluto para el body */
  --bg-card: #131a26;
  --border: #232c3b;
  --text-primary: #eef1f6;
  --text-secondary: #8b93a3;
  --teal: #1fe6ab;
  --teal-dim: #0f6e56;
  --red: #ff5c6c;
  --lavender: #a6a3f7;
  --amber: #ffb648;
  --amber-bg: #231a0d;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* --- CAMBIO AQUÍ --- */
  /* background: var(--bg-page); */ /* Tu color anterior */
  background: var(--bg-page-black) !important; /* Forza el negro absoluto */
  /* --- FIN CAMBIO --- */
  color: var(--text-primary);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--teal);
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 24px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid #d9a544;
  border-radius: 12px;
  padding: 24px;
}

/* Guarantee visible breathing room between stacked page sections (cards,
   disclaimer boxes, two-col blocks, etc.) without double-margining the
   first/last section on a page or grids that already set their own gap. */
section.container + section.container {
  margin-top: 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--bg-page);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--teal-dim);
  color: var(--text-primary);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.site-header nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-header nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.site-header nav a:hover {
  color: var(--text-primary);
}

#lang-switcher {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
}

/* --- CAMBIOS EN EL SITE-FOOTER --- */
.site-footer {
  /* 1. Reset completo de espaciado */
  margin-top: 0 !important; /* Elimina cualquier margen superior */
  padding: 0 !important; /* Elimina cualquier padding interno */
  
  /* 2. Reset completo de bordes y sombras */
  border: none !important; /* Elimina TODOS los bordes */
  border-top: none !important; /* Asegura que no hay borde superior */
  box-shadow: none !important; /* Elimina cualquier sombra */
  
  /* 3. Reset completo y forzado del fondo */
  background: transparent !important; /* Fondo transparente (shorthand) */
  background-color: transparent !important; /* Fondo transparente explícito */
  background-image: none !important; /* Elimina cualquier imagen de fondo o degradado */
  
  /* 4. Layout */
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* 5. Asegúrate de que la imagen dentro del footer siga centrada y ajustada */
.site-footer img {
  display: block;
  max-width: 1000px; /* O el ancho que desees para la piedra */
  width: 100%;
  height: auto;
  margin: 0 auto; /* Centra la imagen */
}
/* --- FIN CAMBIOS FOOTER --- */

.site-footer .whatsapp-link {
  display: inline-block;
  margin: 8px 0 20px 0;
  color: var(--teal);
  font-weight: 600;
}

.disclaimer-box {
  background: var(--bg-card);
  border: 1px solid var(--red);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--text-primary);
  margin: 24px 0;
}

.mockup-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin: 0 0 12px 0;
}

.macro-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.macro-row:last-child {
  border-bottom: none;
}

.macro-loading {
  color: var(--text-secondary);
  font-size: 14px;
}

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.store-badges img {
  height: 48px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-row .feature-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.feature-row .feature-text > *:first-child {
  margin-top: 0;
}

.feature-shot {
  flex: 0 0 auto;
  width: 220px;
  max-width: 60vw;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--teal) 10%, transparent);
  display: block;
}

.feature-shot-wide {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
  margin: 16px auto 0;
}

.shot-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.shot-trio figure {
  margin: 0;
  text-align: center;
}

.shot-trio img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--teal) 10%, transparent);
  display: block;
}

.shot-trio figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .feature-row {
    flex-direction: column;
  }

  .feature-shot {
    width: 200px;
    max-width: 70vw;
    margin: 0 auto;
  }

  .shot-trio {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-header nav {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  #lang-switcher {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container.card,
  .container.disclaimer-box {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }
}