:root {
  --primary: #8b937b;
  --accent: #5a5e51;
  --bg: #f9f9f9;
  --paper: #ffffff;
  --text: #333;
  --muted: #6e6a67;
  --border: #e4e5df;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,.12);
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, #8b937b, #8b937b);
  color: white;
  padding: 18px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.header-nav a {
  color: white;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 500;
  transition: opacity .2s;
}

.header-nav a:hover {
  opacity: .8;
}

/* Hero Slider - Mejorado y más elegante */
.hero-slider {
  position: relative;
  height: 600px; /* Reducido de 700px */
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}

.slide.active .slide-image {
  transform: scale(1);
}

.slide-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(139,147,123,.85) 0%,
    rgba(139,147,123,.7) 50%,
    rgba(139,147,123,.4) 100%);
}

  .slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ocupa toda la altura del slide */
    box-sizing: border-box;
  }


.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; /* Mantener el tamaño original */
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0,0,0,.4);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.slide-content h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: white;
  margin: 16px auto 0; /* Reducido margen */
  border-radius: 2px;
  opacity: 0.8;
}

.slide-content p {
  font-size: 1.3rem; /* Ajustado ligeramente */
  opacity: .95;
  margin-bottom: 32px; /* Reducido de 40px */
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  line-height: 1.6;
  max-width: 600px;
}

/* Controles del slider mejorados */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 40px;
}

.next-btn {
  right: 40px;
}

/* Indicadores mejorados */
.slider-indicators {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}

.indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.indicator::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
  border-color: rgba(255,255,255,0.8);
}

.indicator.active::after {
  opacity: 1;
}

.indicator:hover::after {
  opacity: 1;
}

/* Hero CTA Button mejorado */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 30px rgba(139, 147, 123, 0.4);
  transition: all .4s;
  border: 2px solid white;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.hero-cta:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 147, 123, 0.6);
}

.hero-cta:hover::before {
  left: 100%;
}

/* Animaciones mejoradas */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Efecto de partículas decorativas */
.slide-content::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Estilos para el pretítulo del slider */
.slide-pretitle {
  display: block;
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px; /* Reducido de 16px */
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.pretitle-line {
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 6px auto 0; /* Reducido de 8px */
  border-radius: 1px;
}

/* Asegurar que la animación funcione para todos los elementos */
.slide.active .slide-pretitle,
.slide.active h1,
.slide.active p,
.slide.active .hero-cta {
  animation: fadeInUp 0.8s ease-out;
}

.slide.active p {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.slide.active .hero-cta {
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

/* Responsive ajustado */
@media (max-width: 768px) {
  .slide-content {
    padding: 120px 24px 120px; /* Mismo espacio arriba y abajo */
    min-height: 100vh;
  }

  .slide-content {
    padding: 100px 24px 100px; /* Mismo espacio arriba y abajo */
  }

  .slide-content h1 {
    font-size: 2.2rem;
  }

  .slide-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }

  .hero-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
  }

  .slide-pretitle {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
  .slide-content {
    padding: 100px 20px 100px; /* Mismo espacio arriba y abajo */
    min-height: 100vh;
  }
}

/* Main Container */
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 24px;
}

/* Section */
.section {
  margin-bottom: 80px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Grid - 6 tarjetas en 3 columnas y 2 filas */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas */
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all .3s;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.benefit-icon {
  text-align: center;
  margin-bottom: 20px;
}

.benefit-icon img {
  width: 50px;
  height: 50px;
  display: inline-block;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive - En móvil pasa a 1 columna */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* How it Works - Mejora sutil */
.how-it-works {
  background: linear-gradient(135deg, rgba(139, 147, 123, 0.08), rgba(90, 94, 81, 0.04));
  padding: 48px;
  border-radius: var(--radius);
  margin-bottom: 48px;
  border: 1px solid rgba(139, 147, 123, 0.2);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.step {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all .3s;
  border: 2px solid transparent;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(139, 147, 123, 0.3);
  transition: all .3s;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 147, 123, 0.4);
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 600;
}

.step p {
  color: var(--muted);
  line-height: 1.6;
}

/* Membership Plans */
.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.plan-card {
  background: var(--paper);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(224,112,26,.2);
}

.plan-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent);
  color: white;
  padding: 6px 40px;
  transform: rotate(45deg);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
}

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

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0;
}

.plan-price small {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 400;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  text-align: left;
}

.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: start;
  gap: 12px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all .3s;
  margin-top: 24px;
  font-family: 'Quicksand', sans-serif;
}

.plan-cta:hover {
  background: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(224,112,26,.3);
}

/* Programa de Recompensas */
.rewards-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(139, 147, 123, 0.08), rgba(90, 94, 81, 0.04));
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 147, 123, 0.2);
}

.rewards-description {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rewards-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  text-align: left;
}

.rewards-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.rewards-list {
  list-style: none;
  padding: 0;
}

.rewards-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.rewards-list li:before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.bonus-list {
  list-style: none;
  padding: 0;
}

.bonus-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.bonus-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bonus-list li strong {
  color: var(--accent);
}

/* Sección de Canje */
.redemption-section {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.redemption-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 32px;
}

.redemption-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.redemption-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.redemption-list li:before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.redemption-list li strong {
  color: var(--accent);
}

.rewards-closing {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
  font-style: italic;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .rewards-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .redemption-section {
    padding: 24px;
  }

  .rewards-closing {
    font-size: 1.1rem;
  }
}

/* Terms Section */
.terms-container {
  background: var(--paper);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  margin-top: 48px;
}

.terms-item {
  border-bottom: 1px solid var(--border);
}

.terms-item:last-child {
  border-bottom: none;
}

.terms-header {
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(92,58,33,.04), transparent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .2s;
  user-select: none;
}

.terms-header:hover {
  background: rgba(224,112,26,.08);
}

.terms-header h4 {
  font-size: 1.15rem;
  color: var(--primary);
}

.terms-header .toggle {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .3s;
}

.terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.terms-content.active {
  max-height: 2000px;
}

.terms-content-inner {
  padding: 24px 28px;
  color: var(--muted);
  line-height: 1.8;
}

/* Checkout Form */
.checkout-section {
  background: var(--paper);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 60px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  transition: all .2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(224,112,26,.1);
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 12px;
  margin: 24px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: .95rem;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--accent);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent), #c05717);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(224,112,26,.3);
  font-family: 'Quicksand', sans-serif;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224,112,26,.4);
}

.submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.alt-btn {
  width: 100%;
  padding: 16px;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
  margin-top: 16px;
  font-family: 'Quicksand', sans-serif;
}

.alt-btn:hover {
  background: var(--primary);
  color: white;
}

/* Consulta Section */
.consulta-result {
  margin-top: 32px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(224,112,26,.06), rgba(92,58,33,.03));
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.member-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.member-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
}

.status-badge {
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
}

.status-badge.active {
  background: #d4edda;
  color: #155724;
}

.status-badge.expired {
  background: #f8d7da;
  color: #721c24;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.info-item {
  background: white;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.info-label {
  font-size: .85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
  display: block;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.points-display {
  background: linear-gradient(135deg, var(--accent), #c05717);
  color: white;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 24px;
}

.points-display .points-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin: 12px 0;
}

/* Footer */
footer {
  background: #8b937b;
  color: white;
  padding: 48px 24px;
  margin-top: 80px;
}

.footer-content {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  opacity: .9;
  margin: 8px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .plans-container {
    grid-template-columns: 1fr;
  }

  .checkout-section {
    padding: 32px 24px;
  }

  .header-nav {
    display: none;
  }
}

/* Hidden class */
.hidden {
  display: none;
}

/* Loading State */
.loading {
  text-align: center;
  padding: 32px;
  color: var(--muted);
}

.spinner {
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }

}
/* Versión más simple y segura */
.benefit-icon {
  text-align: center;
  margin-bottom: 20px;
}

.benefit-icon img {
  width: 50px;
  height: 50px;
  display: inline-block;
}

/* Banner de 2 columnas */
.banner-section {
  background: var(--paper);
  padding: 80px 0;
  margin-bottom: 60px;
}

.banner-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.banner-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.banner-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.banner-subtitle {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.banner-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.banner-closing {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }
}
/* ===== NUEVO PROGRAMA DE RECOMPENSAS ===== */
.rewards-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(139, 147, 123, 0.08), rgba(90, 94, 81, 0.04));
  padding: 60px 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 147, 123, 0.2);
  margin-bottom: 0;
}

.rewards-description {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.rewards-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  text-align: left;
}

.rewards-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.rewards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rewards-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.rewards-list li:last-child {
  border-bottom: none;
}

.rewards-list li:before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 14px;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.bonus-list li:last-child {
  border-bottom: none;
}

.bonus-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bonus-list li strong {
  color: var(--accent);
}

/* Sección de Canje */
.redemption-section {
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.redemption-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 32px;
  text-align: center;
}

.redemption-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.redemption-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.redemption-list li:last-child {
  border-bottom: none;
}

.redemption-list li:before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 12px;
}

.redemption-list li strong {
  color: var(--accent);
}

.rewards-closing {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
  font-style: italic;
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .rewards-box {
    padding: 40px 24px;
  }

  .rewards-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .redemption-section {
    padding: 32px 24px;
  }

  .rewards-closing {
    font-size: 1.1rem;
  }
}