@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --negro-carbon: #0d0d0d;
  --gris-metal: #3a3a3a;
  --dorado-calido: #d4a056;
  --rojo-brasa: #b6452c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--negro-carbon);
  color: #e8e8e8;
  line-height: 1.6;
  max-width: 100%;
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100000;
  border-bottom: 1px solid var(--dorado-calido);
  box-shadow: 0 4px 20px rgba(212, 160, 86, 0.2);
}

nav {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(212, 160, 86, 0.5));
  user-select: none;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--dorado-calido);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(212, 160, 86, 0.5);
  white-space: nowrap;
  display: none; /* Oculto en móvil */
}

/* Mostrar solo en desktop */
@media (min-width: 769px) {
  .logo-text {
    display: block;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dorado-calido);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--dorado-calido);
}

.language-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-selector {
  background: rgba(58, 58, 58, 0.8);
  border: 1px solid var(--dorado-calido);
  color: var(--dorado-calido);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.lang-selector:hover {
  background: rgba(212, 160, 86, 0.2);
  box-shadow: 0 0 10px rgba(212, 160, 86, 0.3);
}

.lang-selector option {
  background: var(--negro-carbon);
  color: #e8e8e8;
}

.cta-header {
  background: linear-gradient(135deg, var(--dorado-calido), #c8932e);
  color: var(--negro-carbon);
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(212, 160, 86, 0.3);
}

.cta-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 160, 86, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dorado-calido);
  transition: 0.3s;
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--negro-carbon);
  padding: 3rem 2rem;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--negro-carbon) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  filter: brightness(1) blur(1px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  color: var(--dorado-calido);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(212, 160, 86, 0.5);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #c8c8c8;
  margin-bottom: 2rem;
  white-space: pre-line;
}

.hero-logo-main {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(212, 160, 86, 0.7));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 40px rgba(212, 160, 86, 0.7));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(212, 160, 86, 0.9));
  }
}

@keyframes forgeGlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.divider-forge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 2rem;
  background: var(--negro-carbon);
  position: relative;
  overflow: hidden;
}

.divider-forge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(182, 69, 44, 0.2) 0%,
    transparent 70%
  );
  animation: forgeGlow 4s ease-in-out infinite;
  pointer-events: none;
}

.divider-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--dorado-calido) 50%,
    transparent 100%
  );
  position: relative;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(212, 160, 86, 0.5);
}

.divider-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 160, 86, 0.4) 50%,
    transparent 100%
  );
  filter: blur(4px);
}

.divider-icon {
  font-size: 4rem;
  color: var(--dorado-calido);
  text-shadow: 0 0 30px rgba(212, 160, 86, 1), 0 0 60px rgba(182, 69, 44, 0.8),
    0 0 90px rgba(212, 160, 86, 0.6);
  animation: hammerGlow 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(212, 160, 86, 0.8));
}

@keyframes hammerGlow {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(212, 160, 86, 1), 0 0 60px rgba(182, 69, 44, 0.8),
      0 0 90px rgba(212, 160, 86, 0.6);
    transform: scale(1) rotate(0deg);
  }
  50% {
    text-shadow: 0 0 40px rgba(212, 160, 86, 1), 0 0 80px rgba(182, 69, 44, 1),
      0 0 120px rgba(212, 160, 86, 0.8);
    transform: scale(1.15) rotate(5deg);
  }
}

.hero-subtitle {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--dorado-calido);
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(212, 160, 86, 0.7), 0 0 40px rgba(182, 69, 44, 0.4),
    2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 1.1rem;
  color: #e8e8e8;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--dorado-calido);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  text-shadow: 0 0 20px rgba(212, 160, 86, 0.5);
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--dorado-calido),
    transparent
  );
  margin: 1rem auto;
}

.forja-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #c8c8c8;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 100%;
}

.pack-card {
  background: linear-gradient(
    135deg,
    rgba(58, 58, 58, 0.6),
    rgba(13, 13, 13, 0.9)
  );
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--gris-metal);
  transition: all 0.4s;
  position: relative;
  overflow: visible;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: fit-content;
}

.pack-description {
  color: #b8b8b8;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.7;
  height: auto;
}

.pack-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 160, 86, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.pack-card:hover::before {
  opacity: 1;
}

.pack-card:hover {
  border-color: var(--dorado-calido);
  box-shadow: 0 0 40px rgba(212, 160, 86, 0.5);
  transform: translateY(-10px);
}

.pack-rune {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dorado-calido);
  filter: drop-shadow(0 0 10px rgba(212, 160, 86, 0.6));
  transition: all 0.4s;
}

.pack-card:hover .pack-rune {
  transform: scale(1.2) rotate(360deg);
  filter: drop-shadow(0 0 20px rgba(212, 160, 86, 0.9));
}

.pack-title {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--dorado-calido);
  margin-bottom: 1rem;
  text-align: center;
}

.pack-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--dorado-calido), #c8932e);
  color: var(--negro-carbon);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1.5rem;
  position: relative;
  z-index: 10;
  cursor: pointer;
  touch-action: manipulation;
}

.pack-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 160, 86, 0.6);
}

.mejoras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.mejora-card {
  background: linear-gradient(
    135deg,
    rgba(182, 69, 44, 0.2),
    rgba(13, 13, 13, 0.8)
  );
  padding: 2.5rem;
  border-radius: 8px;
  border: 2px solid rgba(212, 160, 86, 0.4);
  transition: all 0.4s;
}

.mejora-card:hover {
  border-color: var(--dorado-calido);
  box-shadow: 0 0 35px rgba(212, 160, 86, 0.5);
  transform: translateY(-8px);
}

.mejora-title {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--dorado-calido);
  margin-bottom: 1rem;
}

.mejora-description {
  color: #c8c8c8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Galería - Desktop (≥768px) */
.galeria-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.galeria-container img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--gris-metal);
  cursor: pointer;
  transition: all 0.4s;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.galeria-container img:hover {
  border-color: var(--dorado-calido);
  box-shadow: 0 0 30px rgba(212, 160, 86, 0.6);
  transform: scale(1.02);
}

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

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(58, 58, 58, 0.5),
    rgba(13, 13, 13, 0.9)
  );
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--gris-metal);
  transition: all 0.4s;
  position: relative;
}

.testimonial-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-top: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  background: var(--negro-carbon);
  border: 2px solid var(--dorado-calido);
  box-shadow: 0 4px 15px rgba(212, 160, 86, 0.3);
  transition: all 0.4s;
}

.testimonial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.testimonial-card:hover .testimonial-video {
  box-shadow: 0 6px 25px rgba(212, 160, 86, 0.5);
  border-color: #c8932e;
}

.testimonial-card::before {
  content: "⚔";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--dorado-calido);
  opacity: 0.2;
  transition: all 0.4s;
}

.testimonial-card:hover::before {
  opacity: 1;
  transform: rotate(360deg);
}

.testimonial-card:hover {
  border-color: var(--dorado-calido);
  box-shadow: 0 0 35px rgba(212, 160, 86, 0.5);
  transform: translateY(-8px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--dorado-calido);
  background: linear-gradient(135deg, var(--gris-metal), var(--negro-carbon));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dorado-calido);
  font-size: 1.5rem;
  font-weight: bold;
}

.testimonial-avatar-img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  border: 3px solid var(--dorado-calido);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 15px rgba(212, 160, 86, 0.5);
  transition: all 0.3s;
  flex-shrink: 0;
  display: block;
}

.testimonial-card:hover .testimonial-avatar-img {
  border-color: #f4b356;
  box-shadow: 0 0 25px rgba(212, 160, 86, 0.8);
  transform: scale(1.05);
}

.testimonial-info h4 {
  color: var(--dorado-calido);
  font-family: "Cinzel", serif;
  margin-bottom: 0.3rem;
}

.testimonial-tag {
  font-size: 0.85rem;
  color: #b8b8b8;
  font-style: italic;
}

.testimonial-text {
  color: #c8c8c8;
  line-height: 1.7;
  font-style: italic;
}

.oscar-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.oscar-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid var(--dorado-calido);
  box-shadow: 0 10px 40px rgba(212, 160, 86, 0.5);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--negro-carbon);
}

.oscar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.oscar-bio {
  color: #c8c8c8;
  line-height: 1.8;
  font-size: 1.1rem;
}

.oscar-bio p {
  margin-bottom: 1.5rem;
}

.oscar-highlight {
  color: var(--dorado-calido);
  font-weight: 600;
}

.contacto {
  background: linear-gradient(
    135deg,
    rgba(58, 58, 58, 0.5),
    rgba(13, 13, 13, 0.9)
  );
  text-align: center;
  padding: 5rem 2rem;
  border-top: 2px solid var(--dorado-calido);
  border-bottom: 2px solid var(--dorado-calido);
}

.contacto-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--dorado-calido);
  margin-bottom: 2rem;
  text-shadow: 0 0 25px rgba(212, 160, 86, 0.6);
}

.contacto-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--dorado-calido), #c8932e);
  color: var(--negro-carbon);
  padding: 1.5rem 4rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
  box-shadow: 0 6px 30px rgba(212, 160, 86, 0.5);
  position: relative;
  z-index: 10;
  cursor: pointer;
  touch-action: manipulation;
}

.contacto-cta:hover {
  transform: translateY(-5px) scale(1.08);
}

footer {
  background: linear-gradient(135deg, var(--gris-metal), var(--negro-carbon));
  padding: 3rem 2rem;
  border-top: 3px solid var(--dorado-calido);
}

.footer-logo img {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(212, 160, 86, 0.4));
  display: block;
  margin: 0 auto 1rem auto;
  user-select: none;
  opacity: 0.9;
  filter: drop-shadow(0 0 18px rgba(212, 160, 86, 0.35))
    drop-shadow(0 0 4px rgba(212, 160, 86, 0.5));
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--dorado-calido);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(212, 160, 86, 0.5);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--dorado-calido);
}

.footer-claim {
  font-family: "Cinzel", serif;
  color: var(--dorado-calido);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.sparks-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.spark {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  background: var(--dorado-calido);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--dorado-calido), 0 0 20px var(--rojo-brasa);
  animation: sparkRise linear forwards;
  opacity: 0;
}

@keyframes sparkRise {
  0% {
    bottom: -10px;
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    bottom: 100vh;
    opacity: 0;
    transform: translateX(var(--drift)) scale(0.2);
  }
}

/* ========================================
   ESTILOS NUEVOS PARA LA FORJA
   ======================================== */

/* Subtítulos de sección */
.subsection-title {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--dorado-calido);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  text-shadow: 0 0 15px rgba(212, 160, 86, 0.4);
}

.subsection-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--dorado-calido);
  margin: 0.5rem auto;
}

/* Estilo para "Incluye:" en los packs */
.pack-includes {
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: left;
  padding-left: 0.5rem;
}

.pack-includes strong {
  color: var(--dorado-calido);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Pack Personalizado - versión destacada sutil */
.pack-personalizado {
  background: linear-gradient(
    135deg,
    rgba(212, 160, 86, 0.08),
    rgba(13, 13, 13, 0.9)
  );
  border: 2px solid rgba(212, 160, 86, 0.4);
}

.pack-personalizado:hover {
  border-color: var(--dorado-calido);
  box-shadow: 0 0 40px rgba(212, 160, 86, 0.6);
}

/* Introducción a mejoras adicionales */
.options-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #a8a8a8;
  font-style: italic;
}

/* Grid de mejoras adicionales */
.mejoras-adicionales-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Tarjetas de mejoras adicionales - diseño más discreto */
.mejora-adicional {
  background: linear-gradient(
    135deg,
    rgba(58, 58, 58, 0.3),
    rgba(13, 13, 13, 0.7)
  );
  padding: 1.8rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 160, 86, 0.2);
  transition: all 0.3s;
  text-align: center;
}

.mejora-adicional:hover {
  border-color: rgba(212, 160, 86, 0.5);
  box-shadow: 0 0 20px rgba(212, 160, 86, 0.3);
  transform: translateY(-3px);
}

.mejora-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.mejora-title {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  color: var(--dorado-calido);
  margin-bottom: 0.8rem;
}

.mejora-desc {
  color: #b8b8b8;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  font-size: 0.9rem;
}

.mejora-cta {
  display: inline-block;
  background: transparent;
  color: var(--dorado-calido);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  border: 1px solid rgba(212, 160, 86, 0.5);
}

.mejora-cta:hover {
  background: rgba(212, 160, 86, 0.15);
  border-color: var(--dorado-calido);
  box-shadow: 0 0 15px rgba(212, 160, 86, 0.3);
}

/* ========================================
   GOD OF WAR PACK - EXPERIENCIA PREMIUM
   ======================================== */

.god-of-war-container {
  max-width: 900px;
  margin: 0 auto;
}

.god-of-war-pack {
  background: linear-gradient(
    135deg,
    rgba(212, 160, 86, 0.12),
    rgba(13, 13, 13, 0.95)
  );
  border: 3px solid var(--dorado-calido);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 50px rgba(212, 160, 86, 0.4);
  position: relative;
  overflow: hidden;
}

.god-of-war-pack::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 160, 86, 0.15) 0%,
    transparent 70%
  );
  animation: gowGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gowGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: rotate(180deg);
  }
}

.gow-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.gow-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(212, 160, 86, 0.8));
}

.gow-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: var(--dorado-calido);
  text-shadow: 0 0 30px rgba(212, 160, 86, 0.8);
  margin-bottom: 0.5rem;
}

.gow-description {
  text-align: center;
  font-size: 1.15rem;
  color: #d8d8d8;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.gow-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.gow-feature {
  color: #c8c8c8;
  font-size: 1.05rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.gow-feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dorado-calido);
  font-weight: bold;
  font-size: 1.2rem;
}

.gow-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--dorado-calido), #c8932e);
  color: var(--negro-carbon);
  padding: 1.2rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 6px 30px rgba(212, 160, 86, 0.5);
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  cursor: pointer;
  touch-action: manipulation;
}

.gow-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(212, 160, 86, 0.7);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet - 2 columnas */
@media (min-width: 769px) and (max-width: 1024px) {
  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Desktop - 3 columnas */
@media (min-width: 1025px) {
  .packs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* NAV EN MÓVIL */
  nav {
    padding: 0.8rem 1rem !important;
  }

  .logo img {
    height: 45px !important;
  }

  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 10001;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
  }

  .footer-logo img {
    height: 100px;
    opacity: 0.9;
    filter: drop-shadow(0 0 18px rgba(212, 160, 86, 0.35))
      drop-shadow(0 0 4px rgba(212, 160, 86, 0.5));
  }

  /* HERO ULTRA COMPACTO PARA MÓVIL */
  .hero {
    min-height: 60vh !important;
    max-height: 80vh !important;
    padding: 1.5rem 1rem !important;
    margin-top: 70px !important;
  }

  .hero-logo-main {
    max-width: 60% !important;
    margin-bottom: 0.8rem !important;
  }

  .hero-content {
    padding: 0 !important;
    gap: 0.6rem !important;
  }

  .hero-content h1 {
    font-size: 1.4rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
  }

  .hero-content p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.8rem !important;
    padding: 0 0.5rem !important;
  }

  .cta-button {
    font-size: 0.9rem !important;
    padding: 0.75rem 1.4rem !important;
    margin-top: 0.3rem !important;
    display: inline-block !important;
  }

  .divider-forge {
    padding: 3rem 1rem;
    gap: 1rem;
  }

  .divider-line {
    max-width: 100px;
  }

  .divider-icon {
    font-size: 2.5rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: right 0.4s;
  }

  .nav-links.active {
    right: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .subsection-title {
    font-size: 1.6rem;
  }

  .oscar-content {
    grid-template-columns: 1fr;
  }

  .oscar-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
  }

  .packs-grid,
  .mejoras-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Galería - Móvil (<768px) */
  .galeria-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 1rem;
  }

  .galeria-container img {
    width: 100%;
  }

  .packs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .pack-card {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1.2rem;
    margin-bottom: 0;
    height: auto;
    overflow: visible;
  }

  .pack-rune {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .pack-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .pack-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    height: auto;
    white-space: normal;
    word-wrap: break-word;
  }

  .pack-includes {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .pack-cta {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    margin-top: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .music-controls {
    bottom: 1rem;
    right: 1rem;
  }

  /* Mejoras adicionales responsive */
  .mejoras-adicionales-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .mejora-adicional {
    padding: 1.5rem;
  }

  /* God of War Pack responsive */
  .god-of-war-pack {
    padding: 2rem 1.5rem;


/* ============================================
   RESPONSIVE - MÓVILES PEQUEÑOS
   ============================================ */

@media (max-width: 480px) {
  /* NAV ULTRA COMPACTO */
  nav {
    padding: 0.6rem 0.8rem !important;
  }

  .logo img {
    height: 40px !important;
  }

  .hamburger span {
    width: 25px;
  }
  .hero {
    min-height: 55vh !important;
    max-height: 70vh !important;
    padding: 1.2rem 0.8rem !important;
    margin-top: 60px !important;
  }

  .hero-logo-main {
    max-width: 55% !important;
    margin-bottom: 0.6rem !important;
  }

  .hero-content {
    gap: 0.5rem !important;
  }

  .hero-content h1 {
    font-size: 1.2rem !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.15 !important;
  }

  .hero-content p {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.6rem !important;
    padding: 0 0.3rem !important;
  }

  .cta-button {
    font-size: 0.85rem !important;
    padding: 0.7rem 1.2rem !important;
    margin-top: 0.2rem !important;
  }

  .divider-forge {
    padding: 2rem 0.8rem;
  }

  section {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100%;
  }

  .packs-grid {
    padding: 0 0.5rem;
    gap: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .pack-card {
    padding: 1.2rem;
  }

  .pack-card h3 {
    font-size: 1.3rem;
  }
}

/* Para pantallas muy pequeñas */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .hero-logo-main {
    max-width: 75%;
  }
}

/* ====================================================

/* ========================================
   FIX RESPONSIVE MÓVIL - FINAL
   ======================================== */

@media (max-width: 768px) {
  /* Asegurar que nav use flexbox correctamente */
  nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Logo mantiene su espacio */
  .logo {
    flex-shrink: 0 !important;
  }

  /* Logo text VISIBLE en desktop, oculto en móvil */
  .logo-text {
    display: none !important;
  }

  /* Hamburger SIEMPRE visible y en su sitio */
  .hamburger {
    display: flex !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }
}

/* Mostrar logo-text solo en desktop */
@media (min-width: 769px) {
  .logo-text {
    display: block !important;
  }
}