/* === Reset y base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Oswald', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* === Navbar & Footer (Estilos unificados) === */
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-container .navbar { padding: 10px 0; background: transparent; }
.navbar-logo { max-width: 280px; height: auto; }
.navbar-light .navbar-nav .nav-link { font-family: 'Oswald', sans-serif; font-size: 1rem; color: #000; padding: 8px 14px; transition: color 0.3s ease, transform 0.2s ease; }
.navbar-light .navbar-nav .nav-link:hover { color: #00ff00; transform: translateY(-2px); }
.dropdown-menu { border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 8px; margin-top: 10px; }
.dropdown-item { font-family: 'Oswald', sans-serif; padding: 8px 20px; color: #333; transition: all 0.2s ease; }
.dropdown-item:hover { background-color: #f0fff0; color: #00ff00; }
.nav-container .dropdown-menu .dropdown-item:hover,
.nav-container .dropdown-menu .dropdown-item:focus { color: #00ff00 !important; background-color: #f0fff0; text-decoration: none; }
@media (max-width: 991px) {
  .nav-container .navbar-collapse { background: #fff; margin-top: 10px; padding: 10px 0; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
  .navbar-nav { gap: 5px; } .nav-item { width: 100%; }
  .dropdown-menu { border: none; box-shadow: none; background: #f8f8f8; margin-left: 15px; border-left: 3px solid #00ff00; }
}

/* === Contenedor Principal === */
.rewards-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 35px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.rewards-container h1 {
  text-align: center;
  font-family: 'Mohave', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #000;
  border-bottom: 2px solid #00ff00;
  padding-bottom: 15px;
}

.rewards-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* === Grid de Beneficios (Lectores vs Creadores) === */
.rewards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.reward-column {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  border-top: 4px solid #00ff00;
  transition: transform 0.3s ease;
}
.reward-column:hover { transform: translateY(-5px); }

.reward-column.creator-focus {
  border-top-color: #333; /* Diferenciación sutil para creadores */
}

.reward-header {
  text-align: center;
  margin-bottom: 20px;
}
.reward-header i {
  font-size: 2.5rem;
  color: #00ff00;
  margin-bottom: 10px;
}
.creator-focus .reward-header i { color: #333; }

.reward-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: #000;
}

.reward-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.reward-list li {
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reward-list li:last-child { border-bottom: none; }

.points {
  background: #00ff00;
  color: #000;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.reward-perks {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px dashed #dee2e6;
}
.reward-perks h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #000;
}
.perk-list {
  list-style: none;
  padding: 0;
}
.perk-list li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #444;
}
.perk-list li i {
  color: #00ff00;
  margin-right: 8px;
}
.perk-list a { color: #00ff00; text-decoration: none; font-weight: 600; }
.perk-list a:hover { text-decoration: underline; }

/* === Sección de Niveles === */
.tiers-section {
  text-align: center;
  margin-bottom: 40px;
}
.tiers-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #000;
}
.tiers-section h3 i { color: #ffd700; /* Dorado para el trofeo */ }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.tier-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.tier-card h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.tier-card p {
  font-weight: 700;
  color: #00ff00;
  margin-bottom: 5px;
}
.tier-card small {
  color: #666;
  font-size: 0.85rem;
}

/* === Call to Action === */
.rewards-cta {
  background: #f8f9fa;
  border-left: 4px solid #00ff00;
  padding: 30px;
  border-radius: 0 8px 8px 0;
  text-align: center;
}
.rewards-cta h3 { font-size: 1.3rem; margin-bottom: 10px; }
.rewards-cta p { margin-bottom: 25px; color: #444; }

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta.primary { background: #00ff00; color: #000; }
.btn-cta.primary:hover { background: #00cc00; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3); }
.btn-cta.secondary { background: transparent; color: #333; border: 2px solid #333; }
.btn-cta.secondary:hover { background: #333; color: #fff; transform: translateY(-2px); }

/* === Footer Full-Width === */
footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #333;
  color: #fff;
  padding: 20px 15px;
  text-align: center;
  box-sizing: border-box;
}
footer nav { width: 100%; max-width: none; margin: 0; padding: 0; }
.menu2 { list-style: none; display: flex; justify-content: center; gap: 12px; margin: 0 0 5px 0; padding: 0; flex-wrap: wrap; }
.menu2 li { margin: 0; }
.menu2 li a { color: #fff; font-size: 1rem; text-decoration: none; transition: color 0.3s, transform 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.menu2 li a:hover { color: #00ff00; transform: scale(1.15); }
.caja3 { margin: 5px 0 10px; }
.neo { max-width: 300px; height: auto; display: block; margin: 0 auto; }
.textos p { margin: 3px 0; font-size: 0.85rem; opacity: 0.9; text-align: center; }

/* === Responsive === */
@media (max-width: 768px) {
  .rewards-container { margin: 20px 15px; padding: 25px 20px; }
  .rewards-container h1 { font-size: 1.6rem; }
  .rewards-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .menu2 { gap: 10px; }
  .neo { max-width: 240px; }
  .cta-buttons { flex-direction: column; }
  .btn-cta { width: 100%; justify-content: center; }
}