/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a0000, #000);
  color: white;
  overflow-x: hidden;
}

/* ================= LAYOUT ================= */
.container {
  width: 90%;
  margin: auto;
}

/* ================= NAVBAR ================= */
.header {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* LOGO */
.logo {
  font-family: 'Cinzel', serif;
  color: gold;
  display: flex;
  align-items: center;
  gap: 45px;
}

.logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px gold);
}

/* MENU */
.menu {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.menu a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: gold;
  text-shadow: 0 0 10px gold;
}

/* MOBILE BUTTON */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= BUTTON ================= */
.btn {
  background: linear-gradient(45deg, gold, orange);
  color: black;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid gold;
  box-shadow: 0 0 10px gold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px gold, 0 0 50px orange;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* IMAGEN HERO */
.bg-image {
  position: absolute;
  inset: 0;
  background: url("img/istockphoto-1471448614-612x612.jpg") center/cover no-repeat;
  z-index: 0;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* 🔥 CONTENIDO ARREGLADO */
/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  padding: 0 15px;
}

/* TITULO PRO */
.hero-title {
  display: flex;
  flex-direction: column; /* 🔥 fuerza 2 líneas */
  align-items: center;

  font-size: clamp(26px, 5vw, 55px);
  line-height: 1.1;
  text-align: center;

  text-shadow: 0 0 10px gold, 0 0 30px red;
}

/* SEGUNDA LINEA MÁS IMPACTANTE */
.hero-title .highlight {
  font-size: clamp(30px, 6vw, 65px);
  color: gold;
  text-shadow:
    0 0 15px gold,
    0 0 40px orange,
    0 0 60px red;

  animation: glowPulse 2s infinite alternate;
}

/* ANIMACION */
@keyframes glowPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

/* TEXTO */
.hero p {
  opacity: 0.8;
}

/* BOTON */
.hero .btn {
  margin-top: 10px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-title .highlight {
    font-size: 28px;
  }
}

/* ================= SECTIONS ================= */
.section {
  padding: 100px 20px;
  text-align: center;
}

.title {
  margin-bottom: 40px;
  font-size: 32px;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
}

/* ================= CARDS ================= */
.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  width: 260px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: 0.3s;

  border: 2px solid rgba(255,215,0,0.2);
  box-shadow: 0 0 10px rgba(255,215,0,0.2);
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px gold, 0 0 40px red;
}

/* IMAGEN CARD */
.card-img {
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.card:hover .card-img img {
  transform: scale(1.1);
}

/* ================= GALLERY ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

.g {
  height: 150px;
  background: #333;
}

/* ================= FORM ================= */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
  margin: auto;
}

input, textarea, select {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 20px;
  background: black;
}

/* ================= ANIMATIONS ================= */

/* fade */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= CIRCUS LIGHTS (FIXED) ================= */

.circus-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1; /* 🔥 FIX */
}

/* ARRIBA + ABAJO */
.circus-lights::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle, #ffd700 0%, #ffcc00 0%, rgba(255,200,0,0.2) 35%, transparent 60%)
    top center / 40px 40px repeat-x,

    radial-gradient(circle, #ffd700 0%, #ffcc00 0%, rgba(255,200,0,0.2) 35%, transparent 60%)
    bottom center / 40px 40px repeat-x;

  padding-top: 80px;
  animation: blink1 1.2s infinite ease-in-out;
}

/* LADOS */
.circus-lights::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle, #ffd700 0%, #ffcc00 0%, rgba(255,200,0,0.2) 35%, transparent 60%)
    left center / 40px 40px repeat-y,

    radial-gradient(circle, #ffd700 0%, #ffcc00 0%, rgba(255,200,0,0.2) 35%, transparent 60%)
    right center / 40px 40px repeat-y;

  animation: blink2 1.2s infinite ease-in-out;
}

@keyframes blink1 {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes blink2 {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

@media (max-width: 768px) {

  .menu {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: black;
    width: 200px;
    padding: 20px;
    transition: 0.3s;
  }

  .menu.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .gallery {
    grid-template-columns: repeat(2,1fr);
  }

  .hero h2 {
    font-size: 40px;
  }
}
/* ================= INTRO CHARACTERS ================= */

.intro-characters {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.char {
  position: absolute;
  left: -200px;
  height: 220px;
  opacity: 0;
}

/* animación */
@keyframes moveAcross {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    transform: translateX(110vw);
    opacity: 1;
  }
  100% {
    transform: translateX(130vw);
    opacity: 0;
  }
}
/* ================= ICE PREVIEW ================= */

.ice-preview {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;

  background: radial-gradient(circle at top, #0a1a2f, #000);
}

/* EFECTO LUZ FRÍA */
.ice-preview::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(56,189,248,0.1), transparent 70%);
  animation: iceMove 12s linear infinite;
}

@keyframes iceMove {
  from { transform: translate(-20%, -20%); }
  to { transform: translate(20%, 20%); }
}

/* CONTENIDO */
.ice-content {
  position: relative;
  z-index: 2;
}

/* TITULO HELADO */
.ice-preview h2 {
  font-size: 60px;

  background: linear-gradient(180deg, #e0f2fe, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow:
    0 0 20px #38bdf8,
    0 0 40px #0ea5e9;

  animation: iceGlow 2s infinite alternate;
}

@keyframes iceGlow {
  from { text-shadow: 0 0 10px #38bdf8; }
  to { text-shadow: 0 0 40px #7dd3fc, 0 0 80px #38bdf8; }
}

/* STATUS */
.ice-status {
  margin: 20px auto;
  padding: 10px 25px;

  border-radius: 30px;
  display: inline-block;

  background: rgba(56,189,248,0.15);
  border: 1px solid rgba(56,189,248,0.4);

  backdrop-filter: blur(10px);

  letter-spacing: 2px;
  font-size: 14px;

  box-shadow: 0 0 20px rgba(56,189,248,0.3);

  animation: pulseIce 2s infinite alternate;
}

@keyframes pulseIce {
  from { box-shadow: 0 0 10px rgba(56,189,248,0.2); }
  to { box-shadow: 0 0 30px rgba(56,189,248,0.6); }
}

/* TEXTO */
.ice-preview p {
  margin-top: 15px;
  color: #cbd5f5;
  opacity: 0.8;
}

/* BOTON */
.ice-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;

  border-radius: 8px;
  text-decoration: none;

  background: linear-gradient(45deg, #38bdf8, #0ea5e9);
  color: white;

  box-shadow: 0 0 15px rgba(56,189,248,0.5);

  transition: 0.3s;
}

.ice-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 30px #38bdf8,
    0 0 60px #0ea5e9;
}
.ice-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#7dd3fc 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  animation: snowMove 10s linear infinite;
}

@keyframes snowMove {
  from { transform: translateY(0); }
  to { transform: translateY(100px); }
}
/* ================= ICE CARD ================= */

.ice-card {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.ice-card a {
  text-decoration: none;
  color: white;

  width: 260px;
  border-radius: 15px;
  overflow: hidden;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(56,189,248,0.3);

  box-shadow:
    0 0 20px rgba(56,189,248,0.2);

  transition: 0.4s;
}

/* IMAGEN */
.ice-card-img {
  height: 160px;
  overflow: hidden;
}

.ice-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* CONTENIDO */
.ice-card-content {
  padding: 15px;
}

.ice-card-content h3 {
  font-size: 20px;
  margin-bottom: 5px;

  color: #7dd3fc;
  text-shadow: 0 0 10px #38bdf8;
}

.ice-card-content p {
  font-size: 14px;
  opacity: 0.7;
}

/* HOVER PRO */
.ice-card a:hover {
  transform: translateY(-10px) scale(1.05);

  box-shadow:
    0 0 40px #38bdf8,
    0 0 80px rgba(56,189,248,0.5);
}

.ice-card a:hover img {
  transform: scale(1.1);
}
/* ================= HORROR PREVIEW ================= */

.horror-preview {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  font-family: 'Creepster', cursive;
  background: radial-gradient(circle at center, #1a0000, #000);
}

/* LUZ ROJA MOVIDA */
.horror-preview::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,0,0,0.08), transparent 70%);
  animation: horrorMove 10s linear infinite;
}

@keyframes horrorMove {
  from { transform: translate(-20%, -20%); }
  to { transform: translate(20%, 20%); }
}

/* CONTENIDO */
.horror-content {
  position: relative;
  z-index: 2;
}

/* TITULO */
.horror-preview h2 {
  font-family: 'Creepster', cursive;
  font-size: 60px;
  color: #ff0000;

  text-shadow:
    0 0 10px red,
    0 0 30px darkred,
    0 0 60px black;

  animation: flicker 1.5s infinite;
}

/* PARPADEO */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

/* STATUS */
.horror-status {
  margin: 20px auto;
  padding: 10px 25px;

  border-radius: 30px;
  display: inline-block;

  background: rgba(255,0,0,0.15);
  border: 1px solid rgba(255,0,0,0.4);

  backdrop-filter: blur(10px);

  letter-spacing: 2px;
  font-size: 14px;

  box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

/* TEXTO */
.horror-preview p {
  margin-top: 15px;
  opacity: 0.8;
}

/* ================= HORROR CARD ================= */

.horror-card {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.horror-card a {
  text-decoration: none;
  color: white;

  width: 260px;
  border-radius: 15px;
  overflow: hidden;

  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,0,0,0.3);

  box-shadow: 0 0 20px rgba(255,0,0,0.2);

  transition: 0.4s;
}

/* IMG */
.horror-card-img {
  height: 160px;
  overflow: hidden;
}

.horror-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* CONTENT */
.horror-card-content {
  padding: 15px;
}

.horror-card-content h3 {
  color: #ff4d4d;
  text-shadow: 0 0 10px red;
}

.horror-card-content p {
  font-size: 14px;
  opacity: 0.7;
}

/* HOVER */
.horror-card a:hover {
  transform: translateY(-10px) scale(1.05);

  box-shadow:
    0 0 40px red,
    0 0 80px darkred;
}

.horror-card a:hover img {
  transform: scale(1.1);
}
/* ================= KPOP PREVIEW ================= */

.kpop-preview {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;

  background: radial-gradient(circle at top, #0f0020, #000);
}

/* LUCES NEON */
.kpop-preview::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,0,255,0.1), transparent 70%);
  animation: kpopMove 10s linear infinite;
}

@keyframes kpopMove {
  from { transform: translate(-20%, -20%); }
  to { transform: translate(20%, 20%); }
}

/* CONTENIDO */
.kpop-content {
  position: relative;
  z-index: 2;
}

/* TITULO */
.kpop-preview h2 {
  font-size: 60px;
  font-weight: 800;

  background: linear-gradient(90deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow:
    0 0 10px #ff00ff,
    0 0 30px #00ffff;

  animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow: 0 0 10px #ff00ff;
  }
  to {
    text-shadow: 0 0 30px #00ffff, 0 0 60px #ff00ff;
  }
}

/* STATUS */
.kpop-status {
  margin: 20px auto;
  padding: 10px 25px;

  border-radius: 30px;
  display: inline-block;

  background: rgba(255,0,255,0.15);
  border: 1px solid rgba(255,0,255,0.4);

  backdrop-filter: blur(10px);

  letter-spacing: 2px;
  font-size: 14px;

  box-shadow:
    0 0 20px #ff00ff,
    0 0 40px rgba(0,255,255,0.3);
}

/* TEXTO */
.kpop-preview p {
  margin-top: 15px;
  opacity: 0.8;
}

/* ================= KPOP CARD ================= */

.kpop-card {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.kpop-card a {
  text-decoration: none;
  color: white;

  width: 260px;
  border-radius: 15px;
  overflow: hidden;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,0,255,0.3);

  box-shadow:
    0 0 20px rgba(255,0,255,0.2);

  transition: 0.4s;
}

/* IMG */
.kpop-card-img {
  height: 160px;
  overflow: hidden;
}

.kpop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* CONTENT */
.kpop-card-content {
  padding: 15px;
}

.kpop-card-content h3 {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.kpop-card-content p {
  font-size: 14px;
  opacity: 0.7;
}

/* HOVER */
.kpop-card a:hover {
  transform: translateY(-10px) scale(1.05);

  box-shadow:
    0 0 40px #ff00ff,
    0 0 80px #00ffff;
}

.kpop-card a:hover img {
  transform: scale(1.1);
}
/* ================= COMING SOON DIVIDER ================= */

.coming-divider {
  margin: 60px auto 20px;
  text-align: center;
  position: relative;
  width: 80%;
}

.coming-divider span {
  font-family: 'Cinzel', serif;
  font-size: 25px;
  letter-spacing: 4px;
  color: white;
  background: #0a0a0a;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* líneas a los costados */
.coming-divider::before,
.coming-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, gold);
}

.coming-divider::before {
  left: 0;
}

.coming-divider::after {
  right: 0;
  background: linear-gradient(to left, transparent, gold);
}
.hero-logo {
  max-width: 300px;  /* 🔥 controla el tamaño */
  width: 80%;        /* responsive */
  height: auto;
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 0.9;
    transform: scale(1);
  }
}

/* hover sutil */
.hero-logo:hover {
  transform: scale(2.5);
  opacity: 1;
}
@media (max-width: 768px) {
  .hero h2 {
    line-height: 1.1;
  }
}
.about-preview {
  max-width: 700px;
  margin: auto;
}

.about-text {
  opacity: 0.8;
  line-height: 1.6;
}

/* BOTON PRO */
.read-more-btn {
  display: inline-block;
  margin-top: 20px;

  color: gold;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;

  position: relative;
  transition: 0.3s;
}

/* línea animada */
.read-more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, gold, orange);
  transition: 0.4s;
}

.read-more-btn:hover {
  color: orange;
}

.read-more-btn:hover::after {
  width: 100%;
}
/* =========================
   SECTION
========================= */
.testimonials-section {
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */
.testimonial-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* =========================
   TRACK (SLIDER)
========================= */
.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* =========================
   CARD
========================= */
.testimonial {
  position: relative;
  min-width: 300px;
  padding: 25px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  overflow: hidden;

  transition: transform 0.3s, box-shadow 0.3s;
}

/* HOVER */
.testimonial:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 0, 85, 0.5);
}

/* =========================
   🎪 LUCES TIPO CIRCO
========================= */
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: 20px;
  pointer-events: none;

  background:
    radial-gradient(circle, #ffffff 2px, transparent 3px) 0 0 / 20px 20px;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  animation: lightsBlink 1s infinite alternate;
}

/* =========================
   TEXTO
========================= */
.stars {
  color: gold;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial p {
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial span {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 5px;
}

.testimonial h4 {
  font-weight: 600;
  opacity: 0.85;
}

/* =========================
   FLECHAS
========================= */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  background: rgba(0,0,0,0.6);
  border: none;
  color: white;

  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;

  transition: 0.3s;
}

.arrow:hover {
  background: #ff0055;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

/* =========================
   ANIMACIONES
========================= */
@keyframes lightsBlink {
  0% {
    opacity: 0.4;
    filter: drop-shadow(0 0 2px #fff);
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 6px #fff);
  }
}

/* =========================
   RESPONSIVE (iPhone 12)
========================= */
@media (max-width: 768px) {

  .testimonial {
    min-width: 85%;
  }

  .testimonial-container {
    padding: 20px 10px;
  }

  .arrow {
    font-size: 22px;
    padding: 8px 12px;
  }

}
/* =========================
   TEXTO
========================= */
.stars {
  color: gold;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial p {
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial span {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 5px;
}

.testimonial h4 {
  font-weight: 600;
  opacity: 0.85;
}

/* =========================
   ANIMACIONES
========================= */

/* carrusel */
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* luces */
@keyframes lightsBlink {
  0% {
    opacity: 0.4;
    filter: drop-shadow(0 0 2px #fff);
  }
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 6px #fff);
  }
}