/* =====================================================
   CSS NUEVO INDEX - PAN Y QUESO WEB
   OBJETIVO:
   - NAV SIEMPRE EN LÍNEA
   - HERO CON VIDEO DE FONDO
   - ESCUDO CENTRADO ARRIBA DEL MENSAJE PRINCIPAL
   - MENSAJES CENTRALES
   - BOTÓN DE INGRESO
   ===================================================== */

/* =====================================================
   RESET BÁSICO
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Oswald', Arial, sans-serif;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* =====================================================
   HEADER HERO PRINCIPAL
   OCUPA TODA LA PANTALLA
   ===================================================== */
.hero-header {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* =====================================================
   VIDEO DE FONDO
   ===================================================== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* =====================================================
   CAPA SUAVE SOBRE EL VIDEO
   ===================================================== */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.22) 30%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.22) 100%);
}

/* =====================================================
   NAV DEL SITIO
   SIEMPRE EN LÍNEA
   ===================================================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  background-color: #555;
  min-height: 100px;
  padding: 0 12px;
  position: relative;
  z-index: 10;
}

/* =====================================================
   BLOQUES PRINCIPALES DEL NAV
   ===================================================== */
.logo {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.contador {
  width: auto;
  flex: 0 1 auto;
  min-width: 0;
  color: #fdfafa !important;
  font-size: 26px;
  padding: 10px 6px;
  margin-left: 0;
  white-space: nowrap;
}

.menu-dropdown {
  width: auto;
  flex: 0 0 auto;
  min-width: 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 11;
  margin-left: auto;
}

/* =====================================================
   CONTENEDOR DE SEGUIDORES Y BOTÓN
   EN LÍNEA
   ===================================================== */
.contenedor-seguidores {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 100%;
  flex-wrap: nowrap;
  min-width: 0;
}

.contador-texto {
  color: #e9e5e2;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =====================================================
   BOTÓN SEGUIR
   ===================================================== */
.boton-accion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.boton-seguir {
  background-color: #e79a27;
  color: #000;
}

.boton-siguiendo {
  background-color: #333;
  color: #fff;
  border: 1px solid #e98f09;
}

.boton-accion:hover {
  transform: scale(1.05);
}

/* =====================================================
   MENÚ DESPLEGABLE
   ===================================================== */
.menu-btn {
  height: 50px;
  background: #e6e9ec;
  color: #383737;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  margin: 0;
  white-space: nowrap;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #a1a0a0;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(245, 243, 243, 0.1);
  border-radius: 4px;
  z-index: 100;
  list-style: none;
  padding: 0;
}

.dropdown-content li {
  padding: 10px 16px;
}

.dropdown-content li a {
  color: #ffffff;
  border-color: #ff8a04;
  text-decoration: none;
  font-size: 30px;
  display: block;
}

.dropdown-content li a:hover {
  transform: scale(1.1);
  color: #ff8a04;
}

.dropdown-content li img {
  width: 50px;
  border-radius: 20px;
}

/* =====================================================
   ESCUDO / LOGO DEL HERO
   CENTRADO HORIZONTALMENTE Y ARRIBA DEL MENSAJE
   ===================================================== */
.hero-logo-wrap {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.hero-logo {
  width: 220px;
  max-width: 80vw;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

/* =====================================================
   CONTENIDO CENTRAL DEL HERO
   ===================================================== */
.hero-content {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 240px 20px 60px;
}

/* =====================================================
   FRASE ANTES DEL TÍTULO
   ===================================================== */
.hero-kicker {
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.55);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

/* =====================================================
   TÍTULO PRINCIPAL
   ===================================================== */
.hero-title {
  width: 26ch;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid rgba(255, 255, 255, 0.95);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.05;
  font-weight: 700;
  color: #f0ede9;
  letter-spacing: 2px;
  text-shadow:
    3px 2px 6px #ff8a04,
    0 0 12px rgba(255, 138, 4, 0.70);
  animation: typing 2s steps(26, end) 1.5s both,
             blink 0.8s step-end infinite;
}

/* =====================================================
   SUBTÍTULO
   ===================================================== */
.hero-subtitle {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.55);
  animation: fadeUp 1s ease 2.1s both;
}

/* =====================================================
   BOTONES
   ===================================================== */
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  animation: fadeUp 1s ease 2.6s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: #ff8a04;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255, 138, 4, 0.5);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  background: #e67700;
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(255, 138, 4, 0.55);
}

/* =====================================================
   ANIMACIONES
   ===================================================== */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 26ch;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE TABLET
   ===================================================== */
@media (max-width: 920px) {
  .nav {
    min-height: 82px;
    gap: 8px;
    padding: 0 10px;
    flex-wrap: nowrap;
  }

  .logo,
  .menu-dropdown {
    width: auto;
  }

  .contenedor-seguidores {
    gap: 6px;
  }

  .contador {
    font-size: 18px;
    padding: 8px 4px;
  }

  .contador-texto {
    font-size: 12px;
  }

  .boton-accion {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }

  .boton-accion svg {
    width: 14px;
    height: 14px;
  }

  .menu-btn {
    font-size: 16px;
    padding: 8px 12px;
    height: 42px;
  }

  .hero-logo-wrap {
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-logo {
    width: 180px;
  }

  .hero-content {
    padding: 220px 20px 60px;
  }

  .hero-title {
    width: 100%;
    white-space: normal;
    border-right: none;
    animation: fadeUp 1s ease 1.5s both;
  }

  .dropdown-content li a {
    font-size: 22px;
  }

  .dropdown-content li img {
    width: 40px;
  }
}

/* =====================================================
   RESPONSIVE CELULAR
   ===================================================== */
@media (max-width: 640px) {
  .nav {
    min-height: 70px;
    gap: 5px;
    padding: 0 6px;
    justify-content: space-between;
  }

  .logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }

  .contador {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 4px 2px;
  }

  .menu-dropdown {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: 0;
  }

  .contenedor-seguidores {
    gap: 4px;
  }

  .contador-texto {
    font-size: 0;
    line-height: 1;
  }

  .contador-texto strong,
  .contador-texto::before {
    font-size: 11px;
  }

  .contador-texto::before {
    content: "Seg.: ";
    color: #e9e5e2;
    font-weight: bold;
    text-transform: uppercase;
  }

  .boton-accion {
    padding: 6px 8px;
    font-size: 0;
    gap: 0;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
  }

  .boton-accion svg {
    width: 14px;
    height: 14px;
  }

  .boton-accion span {
    display: none;
  }

  .menu-btn {
    font-size: 13px;
    padding: 6px 8px;
    height: 36px;
  }

  .dropdown-content li a {
    font-size: 18px;
  }

  .dropdown-content li img {
    width: 34px;
  }

  .hero-logo-wrap {
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-logo {
    width: 140px;
  }

  .hero-content {
    padding: 180px 18px 60px;
  }

  .hero-kicker {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-btn {
    width: min(100%, 320px);
  }
}

/* =====================================================
   CELULARES MUY CHICOS
   ===================================================== */
@media (max-width: 420px) {
  .nav {
    gap: 4px;
    padding: 0 4px;
  }

  .contador-texto::before,
  .contador-texto strong {
    font-size: 10px;
  }

  .contador {
    font-size: 12px;
  }

  .menu-btn {
    font-size: 12px;
    padding: 6px 7px;
  }

  .boton-accion {
    min-width: 32px;
    height: 32px;
    padding: 5px;
  }

  .boton-accion svg {
    width: 13px;
    height: 13px;
  }

  .hero-logo-wrap {
    top: 12%;
  }

  .hero-logo {
    width: 120px;
  }

  .hero-content {
    padding: 165px 16px 50px;
  }
}
.btn-sonido {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      background: rgba(0, 0, 0, 0.60);
      color: #ffffff;
      font-size: 22px;
      cursor: pointer;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition: all 0.3s ease;
      z-index: 9999;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }

    .btn-sonido:hover {
      transform: scale(1.1);
      background: rgba(255, 138, 4, 0.92);
    }

    @media (max-width: 640px) {
      .btn-sonido {
        width: 46px;
        height: 46px;
        font-size: 20px;
        bottom: 14px;
        left: 14px;
      }
    }
.hero-btn.novedades {
  background: #e60023;
  color: #fff;
  border-radius: 30px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(230, 0, 35, 0.7);
  animation: latido 2s infinite;
}

/* Hover */
.hero-btn.novedades:hover {
  transform: scale(1.08);
  background: #ff0033;
}

/* Animación tipo latido */
@keyframes latido {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 35, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px rgba(230, 0, 35, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 35, 0);
  }
}