/* ============================================================
   EL TIKÚN DEL CAOS — Global Stylesheet
   ============================================================ */

/* VARIABLES */
:root {
  --negro:  #0A0806;
  --negro-mid: #141210;
  --azul:   #0A1628;
  --oro:    #C9A070;
  --oro-dim: rgba(201,160,112,0.3);
  --crema:  #E8E0D0;
  --blanco: #F7F4EE;
  --texto-oscuro: #A89878;
  --texto-azul:   #A8B8C8;
  --texto-claro:  #4A4038;
  --cinzel-deco: 'Cinzel Decorative', serif;
  --cinzel:      'Cinzel', serif;
  --cormorant:   'Cormorant Garamond', serif;
  --neuton:      'Neuton', serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--negro);
  color: var(--crema);
  font-family: var(--neuton);
  font-weight: 300;
  overflow-x: hidden;
}

/* ============================================================
   ANIMACIONES
   ============================================================ */
@keyframes fadeUp       { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn       { from { opacity: 0; } to { opacity: 1; } }
@keyframes slowRotate   { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes scrollLine   { 0%,100% { transform: scaleY(1); opacity: 0.4; } 50% { transform: scaleY(1.3); opacity: 1; } }
@keyframes pulseGlow    { 0%,100% { opacity: 0.4; } 50% { opacity: 0.8; } }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,8,6,0.97) 0%, transparent 100%);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(10,8,6,0.98);
  border-bottom: 0.5px solid var(--oro-dim);
}
.nav-logo {
  font-family: var(--cinzel-deco);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--oro);
  font-weight: 400;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--cinzel-deco);
  font-size: 8.5px;
  letter-spacing: 0.32em;
  color: #C8B898;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--oro); }
.nav-links .cta-nav {
  color: var(--oro);
  border-bottom: 0.5px solid var(--oro);
  padding-bottom: 2px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--oro);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   DIVISOR DORADO
   ============================================================ */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 60px;
  max-width: 900px;
  margin: 0 auto;
}
.gdl { flex: 1; height: 0.5px; }
.gdl.left  { background: linear-gradient(to right, transparent, var(--oro-dim)); }
.gdl.right { background: linear-gradient(to left,  transparent, var(--oro-dim)); }
.gdd {
  width: 5px; height: 5px;
  background: var(--oro);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.divider-wrap { padding: 20px 0; }

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */
.section-label {
  font-family: var(--cinzel-deco);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--oro);
  display: block;
  margin-bottom: 20px;
}
.section-label.dark   { color: #8A6030; }
.section-label.dim    { color: rgba(201,160,112,0.5); }
.section-label.black  { color: rgba(0,0,0,0.4); }

.titulo {
  font-family: var(--cinzel);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.6;
  color: #F0E8DC;
}
.titulo.dark { color: var(--negro); }

.golpe {
  font-family: var(--cormorant);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--oro);
  line-height: 1.5;
}
.golpe.dark   { color: #8A6030; }
.golpe.negro  { color: #3A2A10; }

.cuerpo {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  color: var(--texto-oscuro);
}
.cuerpo.azul  { color: var(--texto-azul); }
.cuerpo.claro { color: var(--texto-claro); }
.cuerpo.oscuro-texto { color: #2A1A08; }

/* ============================================================
   BOTONES
   ============================================================ */
.btn-fill {
  display: inline-block;
  font-family: var(--cinzel);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--oro);
  color: var(--negro);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.btn-fill:hover { background: #E2C090; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  font-family: var(--cinzel);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--oro);
  border: 0.5px solid var(--oro);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(201,160,112,0.08); }

.btn-dark {
  display: inline-block;
  font-family: var(--cinzel);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--negro);
  color: var(--oro);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}
.btn-dark:hover { background: #1A1410; }

.btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HERO — REUTILIZABLE
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-section.bg-negro { background: var(--negro); }
.hero-section.bg-azul  { background: var(--azul); }

.geo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.05;
  pointer-events: none;
}
.geo-bg.bright { opacity: 0.06; }
.geo-bg svg { animation: slowRotate 160s linear infinite; width: min(700px, 90vw); }

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,160,112,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow.pulse { animation: pulseGlow 6s ease infinite; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 2s both;
}
.hero-scroll span {
  font-family: var(--cinzel-deco);
  font-size: 7px;
  letter-spacing: 0.3em;
  color: var(--oro-dim);
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--oro-dim), transparent);
  animation: scrollLine 2.2s ease infinite;
}

/* ============================================================
   SECCIONES — FONDOS
   ============================================================ */
.sec-negro  { background: var(--negro); }
.sec-azul   { background: var(--azul); }
.sec-crema  { background: var(--crema); }
.sec-blanco { background: var(--blanco); }
.sec-oro    { background: var(--oro); }

.sec-padding { padding: 100px 60px; }
.sec-inner   { max-width: 860px; margin: 0 auto; }
.sec-inner-lg { max-width: 1000px; margin: 0 auto; }
.text-center { text-align: center; }

/* ============================================================
   GRIDS REUTILIZABLES
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 48px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 48px 0;
}
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 48px 0;
}

/* ============================================================
   TARJETAS
   ============================================================ */
.card-dark {
  background: #0F0D0A;
  padding: 40px 28px;
  border-top: 1px solid rgba(201,160,112,0.3);
  border-left: 0.5px solid rgba(201,160,112,0.08);
  border-right: 0.5px solid rgba(201,160,112,0.08);
  border-bottom: 0.5px solid rgba(201,160,112,0.08);
  transition: border-top-color 0.3s, background 0.3s;
  text-align: center;
}
.card-dark:hover { border-top-color: var(--oro); background: var(--negro-mid); }

.card-azul {
  background: rgba(255,255,255,0.03);
  padding: 40px 32px;
  border-top: 1px solid var(--oro-dim);
  text-align: left;
}
.card-azul:hover { background: rgba(255,255,255,0.05); }

.card-negro-texto { padding: 28px 24px; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(201,160,112,0.2); text-align: left; }

.card-title {
  font-family: var(--cinzel-deco);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--oro);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.card-text {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 15px;
  color: #A89878;
  line-height: 1.8;
}
.card-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(201,160,112,0.2));
}

/* ============================================================
   SECCIONES CON IMAGEN
   ============================================================ */
.img-frame {
  position: relative;
}
.img-frame img {
  width: 100%;
  border: 0.5px solid rgba(138,96,48,0.2);
}
.img-frame::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 0.5px solid rgba(138,96,48,0.15);
  pointer-events: none;
}
.img-circular {
  width: min(320px, 100%);
  border-radius: 50%;
  border: 2px solid rgba(201,160,112,0.25);
}

/* ============================================================
   LISTA ESPEJO
   ============================================================ */
.espejo-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px auto;
  max-width: 680px;
  text-align: left;
}
.espejo-items li {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 17px;
  color: #C8B898;
  line-height: 1.7;
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(201,160,112,0.1);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.espejo-items li::before {
  content: '—';
  color: var(--oro);
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--cinzel);
}

/* ============================================================
   LISTA CON TACHADO (métodos)
   ============================================================ */
.metodo-list { list-style: none; margin: 24px 0; }
.metodo-list li {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 17px;
  color: #A89878;
  line-height: 1.7;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(201,160,112,0.1);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.metodo-list li::before {
  content: '×';
  color: rgba(201,160,112,0.4);
  flex-shrink: 0;
  font-family: var(--cinzel);
  font-size: 14px;
}

/* ============================================================
   LISTA CON GUIÓN (sesión)
   ============================================================ */
.sesion-lista { list-style: none; margin: 24px 0; }
.sesion-lista li {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 17px;
  color: #C8B898;
  line-height: 1.7;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(201,160,112,0.1);
  display: flex;
  gap: 14px;
}
.sesion-lista li::before {
  content: '—';
  color: var(--oro);
  flex-shrink: 0;
  font-family: var(--cinzel);
}

/* ============================================================
   CUADRO CONCLUSIÓN
   ============================================================ */
.conclusion-box {
  margin: 48px auto 0;
  max-width: 620px;
  padding: 40px;
  border: 0.5px solid var(--oro-dim);
}
.conclusion-box p {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 17px;
  color: #D8C8A8;
  line-height: 1.9;
  margin-bottom: 8px;
}
.conclusion-box strong {
  font-family: var(--cormorant);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--oro);
  display: block;
  margin-top: 16px;
}
.conclusion-box.claro p    { color: #3A3028; }
.conclusion-box.claro strong { color: #8A6030; }

/* ============================================================
   PRECIO
   ============================================================ */
.precio {
  font-family: var(--cinzel-deco);
  font-size: 28px;
  color: var(--oro);
  letter-spacing: 0.1em;
  margin: 24px 0;
  display: block;
}

/* ============================================================
   TABLA COMPARATIVA
   ============================================================ */
.tabla-wrapper { margin: 48px 0; overflow: hidden; border: 0.5px solid rgba(138,96,48,0.25); }
.tabla-header  { display: grid; grid-template-columns: 1fr 1fr; background: var(--negro); }
.tabla-col-title {
  font-family: var(--cinzel-deco);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 32px;
  text-align: center;
}
.tabla-col-title.ellos { color: rgba(201,160,112,0.4); border-right: 0.5px solid rgba(201,160,112,0.1); }
.tabla-col-title.ivan  { color: var(--oro); }
.tabla-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 0.5px solid rgba(138,96,48,0.15); }
.tabla-cell {
  padding: 18px 32px;
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.tabla-cell.ellos {
  color: #888070;
  background: var(--crema);
  border-right: 0.5px solid rgba(138,96,48,0.15);
  text-decoration: line-through;
  text-decoration-color: rgba(138,96,48,0.3);
}
.tabla-cell.ivan { color: #1A1410; background: var(--blanco); font-weight: 400; }

/* ============================================================
   FORMULARIO
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--cinzel-deco);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(201,160,112,0.25);
  color: var(--crema);
  font-family: var(--neuton);
  font-size: 16px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--oro); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(201,160,112,0.3); }
.form-error {
  font-family: var(--neuton);
  font-size: 14px;
  color: #C06060;
  margin-top: 6px;
  display: none;
}
.form-error.visible { display: block; }
.form-success {
  background: rgba(201,160,112,0.1);
  border: 0.5px solid var(--oro-dim);
  padding: 28px 32px;
  text-align: center;
  margin-top: 28px;
  display: none;
}
.form-success.visible { display: block; }
.form-success p {
  font-family: var(--cormorant);
  font-style: italic;
  font-size: 20px;
  color: var(--oro);
  line-height: 1.5;
}

/* ============================================================
   STEP ITEMS
   ============================================================ */
.step-item {
  background: #0F0D0A;
  padding: 32px 40px;
  border-left: 2px solid var(--oro-dim);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: border-color 0.3s;
  margin-bottom: 2px;
}
.step-item:hover { border-left-color: var(--oro); }
.step-num {
  font-family: var(--cinzel);
  font-size: 28px;
  font-weight: 400;
  color: rgba(201,160,112,0.2);
  flex-shrink: 0;
  line-height: 1;
}
.step-title {
  font-family: var(--cinzel-deco);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--oro);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.step-text {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 16px;
  color: #A89878;
  line-height: 1.85;
}

/* ============================================================
   STATS GRID
   ============================================================ */
.stat-item {
  background: rgba(0,0,0,0.08);
  padding: 36px 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.stat-num {
  font-family: var(--cinzel);
  font-size: 36px;
  font-weight: 400;
  color: #0A0806;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--cinzel-deco);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
}

/* ============================================================
   REDES SOCIALES
   ============================================================ */
.red-card {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--oro-dim);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.3s;
}
.red-card:hover { background: rgba(255,255,255,0.05); }
.red-icon {
  font-family: var(--cinzel-deco);
  font-size: 24px;
  color: var(--oro);
  margin-bottom: 16px;
  display: block;
}
.red-name {
  font-family: var(--cinzel);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F0E8DC;
  margin-bottom: 10px;
  display: block;
}
.red-desc {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 15px;
  color: #A8B8C8;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   SERIE CARD
   ============================================================ */
.serie-card {
  background: #0F0D0A;
  padding: 36px 28px;
  border-top: 1px solid rgba(201,160,112,0.3);
  transition: background 0.3s;
}
.serie-card:hover { background: #141210; }
.serie-num {
  font-family: var(--cinzel-deco);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(201,160,112,0.3);
  display: block;
  margin-bottom: 10px;
}
.serie-title {
  font-family: var(--cinzel);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oro);
  line-height: 1.4;
  margin-bottom: 12px;
  display: block;
}
.serie-desc {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 15px;
  color: #A89878;
  line-height: 1.8;
}

/* ============================================================
   BADGE / ETIQUETA
   ============================================================ */
.badge {
  font-family: var(--cinzel-deco);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--negro);
  background: var(--oro);
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 16px;
}
.en-desarrollo {
  display: inline-block;
  font-family: var(--cinzel-deco);
  font-size: 8px;
  letter-spacing: 0.25em;
  color: rgba(201,160,112,0.5);
  text-transform: uppercase;
  border: 0.5px solid rgba(201,160,112,0.2);
  padding: 8px 20px;
  margin-top: 24px;
}

/* ============================================================
   ROLES TAGS
   ============================================================ */
.roles-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 36px 0;
  flex-wrap: wrap;
}
.rol-tag {
  padding: 14px 28px;
  border: 0.5px solid rgba(138,96,48,0.25);
  font-family: var(--cinzel-deco);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #8A6030;
  text-transform: uppercase;
  margin: -0.5px;
}
.rol-tag.active { background: var(--negro); color: var(--oro); border-color: var(--negro); }

/* ============================================================
   FEED PLACEHOLDER
   ============================================================ */
.feed-placeholder {
  margin-top: 32px;
  padding: 40px;
  border: 0.5px solid rgba(201,160,112,0.15);
  text-align: center;
}
.feed-placeholder p {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 16px;
  color: rgba(201,160,112,0.4);
  font-style: italic;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.page-footer {
  background: var(--negro);
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--oro-dim);
}
.page-footer .footer-logo {
  font-family: var(--cinzel-deco);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--oro);
}
.page-footer .footer-copy {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 13px;
  color: var(--oro-dim);
}

/* ============================================================
   ESTILOS ESPEJO FINAL
   ============================================================ */
.espejo-conclusion {
  margin: 48px auto 0;
  max-width: 620px;
  padding: 40px;
  border: 0.5px solid var(--oro-dim);
}
.espejo-conclusion p {
  font-family: var(--neuton);
  font-weight: 300;
  font-size: 17px;
  color: #D8C8A8;
  line-height: 1.9;
  margin-bottom: 8px;
}
.espejo-conclusion strong {
  font-family: var(--cormorant);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--oro);
  display: block;
  margin-top: 16px;
}
.espejo-final {
  margin-top: 40px;
  font-family: var(--cinzel-deco);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--oro);
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 18px 24px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,8,6,0.98);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 105;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.3em;
  }

  .gold-divider { padding: 0 24px; }

  .hero-section { padding: 100px 24px 80px; }
  .sec-padding  { padding: 80px 24px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-col { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .tabla-cell { padding: 14px 16px; font-size: 14px; }

  .page-footer {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .step-item { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
  .titulo { font-size: 17px; }
}
