/* nova.css - Tema Naranja para Nova Edition */
:root {
  --main-color: #f48c06;
  --accent-color: #c1121f;
  --light-color: #ffdba5;
  --dark-color: #3a0000;
}

/* Estilos globales para la edición Nova */
body {
  background: linear-gradient(135deg, var(--dark-color), var(--main-color)) !important;
  color: #ffdba5;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Estilos para el hero (toda la pantalla) */
.hero {
  background: linear-gradient(135deg, var(--dark-color), var(--main-color)) !important;
  color: #ffffff;
  text-align: center;
  padding: 10rem 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.logo-text {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #ffdba5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(244, 140, 6, 0.4);
}

.tagline {
  font-size: 1.6rem;
  margin: 1.5rem 0;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Estilos para botones */
.btn-primary {
  background: linear-gradient(45deg, var(--accent-color), var(--main-color)) !important;
  color: #ffffff;
  border: none;
  border-radius: 60px;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(244, 140, 6, 0.5) !important;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 140, 6, 0.7) !important;
}

/* Estilos para secciones */
.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(244, 140, 6, 0.4);
}

.features {
  padding: 6rem 2rem;
  background: #000000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(244, 140, 6, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 140, 6, 0.3);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(244, 140, 6, 0.3);
}

.glow-icon {
  font-size: 2.8rem;
  color: #f48c06;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 15px rgba(244, 140, 6, 0.6);
}

/* Estilos para ediciones */
.edition-card {
  background: rgba(244, 140, 6, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(244, 140, 6, 0.3);
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.edition-card.show {
  opacity: 1;
  transform: translateY(0);
}

.edition-header {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.edition-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

/* Estilos para carruseles */
.carousel {
  margin: 1rem 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.carousel img {
  width: 100%;
  display: none;
  border-radius: 10px;
}

.carousel img.active {
  display: block;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.8rem 0;
}

.nav-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.nav-btn.active {
  background: #f48c06;
}

/* Estilos para comunidad */
.community {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #000000, #1a0000);
  text-align: center;
}

.links {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.glow-link {
  color: #ffdba5;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.glow-link:hover {
  color: #f48c06;
  transform: translateY(-4px);
  text-shadow: 0 0 15px rgba(244, 140, 6, 0.5);
}

/* Estilos para pie de página */
footer {
  background: #000000;
  color: #aa7777;
  text-align: center;
  padding: 2.5rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(244, 140, 6, 0.2);
}

footer p {
  margin: 0.7rem 0;
}

/* Estilos específicos para la tabla de especificaciones */
.compare-table {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: collapse;
  background: rgba(244, 140, 6, 0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(244, 140, 6, 0.3);
}

.compare-table th,
.compare-table td {
  padding: 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table th {
  background: linear-gradient(to right, #3a0000, #f48c06);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
}

.compare-table tr:hover {
  background: rgba(244, 140, 6, 0.1);
}
