@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #0B0B0D;
  color: #F2F2F2;
  line-height: 1.6;
}

main {
  padding-top: 80px;
}
@media (max-width: 768px) {
  main {
    padding-top: 65px;
  }
}

/* =========================
   NAVBAR
========================= */
.navbar {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid rgba(124, 58, 237, 0.18);
}
@media (max-width: 768px) {
  .navbar {
    height: 64px;
  }
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .nav-container {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 768px) {
  .nav-container {
    padding-inline: 1rem;
  }
}

/* =========================
   LOGO
========================= */
.logo {
  display: flex;
  align-items: center;
}
.logo .logo-img {
  height: 35px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo .logo-img {
    height: 28px;
  }
}

/* =========================
   CTA BUTTON – LOW PROFILE
========================= */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.18);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  /* Clave para el centrado perfecto */
  line-height: 1;
  padding: 7px 18px 6px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn-cta:hover {
  background: rgba(124, 58, 237, 0.28);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.35), 0 6px 22px rgba(124, 58, 237, 0.3);
  transform: translateY(-1px);
}
.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}
@media (max-width: 768px) {
  .btn-cta {
    padding: 6px 14px 5px;
    font-size: 0.65rem;
  }
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("../static/img/hero1.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Overlay para legibilidad */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 13, 0.85) 0%, rgba(11, 11, 13, 0.6) 40%, rgba(11, 11, 13, 0.3) 65%, rgba(11, 11, 13, 0) 100%);
  z-index: 1;
}

/* =========================
   HERO CONTAINER (WRAP)
========================= */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-container {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero-container {
    height: 100vh;
    padding-inline: 1.4rem;
    align-items: flex-start;
    padding-top: 180px;
  }
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  max-width: 620px;
  color: #F2F2F2;
}
@media (max-width: 1024px) {
  .hero-content {
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
  }
}

/* =========================
   TYPOGRAPHY
========================= */
.hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  position: relative;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Línea inferior – acento deportivo */
.hero-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 1rem;
  background-color: #7C3AED;
  border-radius: 4px;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 520px;
}

/* Highlight de marca dentro de la bajada */
.hero-highlight {
  font-weight: 1000;
  letter-spacing: 0.01em;
}

/* =========================
   MOBILE REFRAME
========================= */
@media (max-width: 768px) {
  .hero {
    /* desplazamiento fuerte para mostrar mejor a la persona */
    background-position: 80% center;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(11, 11, 13, 0.88) 0%, rgba(11, 11, 13, 0.65) 45%, rgba(11, 11, 13, 0.35) 70%, rgba(11, 11, 13, 0) 100%);
  }
  .hero-title::after {
    width: 48px;
    height: 3px;
  }
  /* 👇 CONTROL DE AIRE LATERAL EN MOBILE */
  .hero-subtitle {
    max-width: 90%;
  }
}
/* =====================================================
    CREATOR SECTION
===================================================== */
.creator-section {
  min-height: calc(100vh - 65px);
  width: 100%;
  background-color: #0B0B0D;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* =====================================================
    CONTENT WRAPPER
===================================================== */
.creator-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2rem;
  display: flex;
  gap: 3rem;
  align-items: stretch;
  justify-content: center;
}

/* =====================================================
    IMAGE CARD
===================================================== */
.creator-image-card {
  flex: 1;
  max-width: 640px;
  height: 75vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 77, 77, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 77, 77, 0.15), 0 24px 70px rgba(0, 0, 0, 0.65);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.creator-image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

/* =====================================================
    TEXT CARD
===================================================== */
.creator-text-card {
  flex: 1;
  max-width: 640px;
  height: 75vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 3rem 3.2rem;
  border: 1px solid rgba(255, 77, 77, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 77, 77, 0.15), 0 24px 70px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =====================================================
    TITLES
===================================================== */
.creator-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F2F2F2;
  margin-bottom: 0.6rem;
}

.creator-role {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF4D4D;
  margin-bottom: 1.6rem;
}

/* =====================================================
    TEXT
===================================================== */
.creator-text p {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

/* DESTACADO */
.creator-highlight {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 77, 77, 0.4);
  font-size: 0.9rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FF4D4D;
}

/* =====================================================
    RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .creator-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-inline: 1.4rem;
  }
  .creator-image-card,
  .creator-text-card {
    max-width: 680px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .creator-section {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* mostrar texto primero */
  .creator-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.5rem;
    padding-inline: 1.4rem;
  }
  .creator-image-card {
    width: 100%;
    height: 40vh;
    max-height: 280px;
    flex-shrink: 0;
  }
  .creator-text-card {
    width: 100%;
    padding: 2.2rem 2rem;
    border-radius: 16px;
  }
  .creator-title {
    font-size: 2rem;
  }
  .creator-text p {
    font-size: 0.9rem;
  }
  .creator-highlight {
    font-size: 0.85rem;
  }
}
/* =====================================================
    FIX LANDSCAPE (RESPONSIVE HORIZONTAL)
===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .creator-section {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 40px;
    display: block;
  }
  .creator-container {
    display: block;
    padding-inline: 2rem;
  }
  .creator-image-card,
  .creator-text-card {
    margin: 0 auto 1.5rem;
    max-width: 90%;
    width: 100%;
    height: auto;
  }
  .creator-image-card {
    height: 300px;
  }
  .creator-text-card {
    padding: 1.5rem;
  }
  .creator-title {
    font-size: 1.8rem;
  }
}
/* =========================
   SECTION SEPARATOR – LIQUID GLOW
========================= */
.section-separator {
  width: 100%;
  height: 12px;
  margin: 0;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0) 0%, rgba(124, 58, 237, 0.15) 18%, rgba(124, 58, 237, 0.35) 45%, rgba(124, 58, 237, 0.55) 50%, rgba(124, 58, 237, 0.35) 55%, rgba(124, 58, 237, 0.15) 82%, rgba(124, 58, 237, 0) 100%);
  filter: blur(0.6px);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.35), 0 0 36px rgba(124, 58, 237, 0.25), 0 0 64px rgba(124, 58, 237, 0.18), 0 0 96px rgba(124, 58, 237, 0.1);
  position: relative;
  z-index: 10;
}

.section-separator-green {
  width: 100%;
  height: 12px;
  margin: 0;
  background: linear-gradient(90deg, rgba(50, 255, 106, 0) 0%, rgba(50, 255, 106, 0.15) 18%, rgba(50, 255, 106, 0.35) 45%, rgba(50, 255, 106, 0.55) 50%, rgba(50, 255, 106, 0.35) 55%, rgba(50, 255, 106, 0.15) 82%, rgba(50, 255, 106, 0) 100%);
  filter: blur(0.6px);
  box-shadow: 0 0 14px rgba(50, 255, 106, 0.35), 0 0 36px rgba(50, 255, 106, 0.25), 0 0 64px rgba(50, 255, 106, 0.18), 0 0 96px rgba(50, 255, 106, 0.1);
  position: relative;
  z-index: 10;
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
  position: relative;
  min-height: calc(100vh - 65px);
  width: 100%;
  background-color: #0B0B0D;
  display: flex;
  align-items: center;
  padding: 40px 0;
  box-sizing: border-box;
}

/* =====================================================
   CONTENT WRAPPER
===================================================== */
.services-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  box-sizing: border-box;
}

/* =====================================================
   HEADER (ALINEADO CON EL CONTENIDO)
===================================================== */
.services-header {
  width: 100%;
  max-width: 1305px;
  margin: 0 auto;
}

.services-intro {
  margin-top: 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #F2F2F2;
  opacity: 0.85;
  max-width: 620px;
}

/* =====================================================
   SECTION TITLE
===================================================== */
.section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F2F2F2;
  margin-bottom: 0.6rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 1rem;
  background-color: #7C3AED;
  border-radius: 4px;
}

/* =====================================================
   CARDS GRID (LA CLAVE DEL ANCHO IGUALADO)
===================================================== */
.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1305px;
  margin: 0 auto;
}

/* =====================================================
   SERVICE CARD
===================================================== */
.service-card {
  position: relative;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  padding: 2.8rem 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.15), 0 22px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-sizing: border-box;
}

.service-card h3 {
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #F2F2F2;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #F2F2F2;
  opacity: 0.85;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card li {
  font-size: 0.9rem;
  color: #F2F2F2;
  opacity: 0.9;
  padding-left: 18px;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #7C3AED;
}

/* =====================================================
   RESPONSIVE TABLET / MOBILE
===================================================== */
@media (max-width: 1024px) {
  .services-wrapper {
    padding-inline: 2rem;
  }
  .services-cards {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
  .services-header {
    max-width: 680px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  .services-wrapper {
    padding-inline: 1.4rem;
  }
  .services-cards, .services-header {
    max-width: 100%;
  }
  .service-card {
    padding: 2.2rem 2rem;
  }
}
/* =====================================================
   FIX LANDSCAPE (SIMETRÍA TOTAL CON CLASSES)
===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .services-section {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 40px;
    display: block;
  }
  .services-wrapper {
    display: block;
    padding-inline: 2rem;
  }
  .services-header {
    margin: 0 auto 2.5rem;
    max-width: 90%;
  }
  .services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 90%;
    margin: 0 auto;
  }
  .service-card {
    width: 100%;
    padding: 1.5rem;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
/* =====================================================
   CLASSES SECTION
===================================================== */
.classes-section {
  position: relative;
  min-height: calc(100vh - 65px); /* 👈 Cambiado a min-height para flexibilidad */
  width: 100%;
  overflow-x: hidden;
  background-color: #0B0B0D;
  display: flex;
  align-items: center;
  padding: 2rem 0; /* Añadido un padding de seguridad */
}

/* =====================================================
   VIDEO BACKGROUND
===================================================== */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scaleX(-1);
  z-index: 1;
  pointer-events: none;
}

/* =====================================================
   OVERLAY
===================================================== */
.classes-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0.25) 100%);
}

/* =====================================================
   CONTENT WRAPPER
===================================================== */
.classes-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
}

/* =====================================================
   CARD
===================================================== */
.classes-card {
  max-width: 640px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3rem 3.2rem;
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15), 0 24px 70px rgba(0, 0, 0, 0.65);
}

/* =====================================================
   TITLE & TEXT
===================================================== */
.classes-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F2F2F2;
  margin-bottom: 1.8rem;
}
.classes-title .power_acento {
  color: #3B82F6;
}

.classes-text p {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}
.classes-text p strong {
  color: #F2F2F2;
  font-weight: 600;
}

.highlight-box {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(59, 130, 246, 0.4);
  font-size: 0.95rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =====================================================
   RESPONSIVE TABLET / DESKTOP SMALL
===================================================== */
@media (max-width: 1024px) {
  .classes-container {
    justify-content: center;
  }
  .classes-card {
    max-width: 680px;
  }
}
/* =====================================================
   RESPONSIVE MOBILE (VERTICAL)
===================================================== */
@media (max-width: 768px) {
  .classes-section {
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 6vh;
  }
  .classes-container {
    padding-inline: 1.4rem;
  }
  .classes-card {
    margin-top: 2rem;
    padding: 2.2rem 2rem;
  }
}
/* =====================================================
   FIX LANDSCAPE (EL PROBLEMA)
   Detecta cuando la pantalla es ancha pero bajita
===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .classes-section {
    height: auto; /* Permite que la sección crezca */
    min-height: 100vh;
    padding: 80px 0 40px; /* Espacio para el header y respiro abajo */
    display: block; /* Cambiamos de flex a block para evitar estiramientos raros */
  }
  .classes-container {
    display: block; /* El contenedor deja de centrar verticalmente */
  }
  .classes-card {
    margin: 0 auto; /* Centramos la tarjeta horizontalmente */
    max-width: 90%; /* Aprovechamos el ancho en horizontal */
    padding: 1.5rem; /* Reducimos padding interno para ganar espacio */
  }
  .classes-title {
    font-size: 1.8rem; /* Título un poco más pequeño en landscape */
    margin-bottom: 1rem;
  }
}
/* =====================================================
    VARIABLES
===================================================== */
:root {
  --bg-primary: #0B0B0D;
  --bg-secondary: #16161A;
  --text-primary: #F2F2F2;
  --neon-green: #32FF6A;
  --power-red: #FF4D4D;
  --electric-blue: #3B82F6;
  --deep-violet: #7C3AED;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================================================
    SECCIÓN GENERAL
===================================================== */
.testimonials-playlists-section {
  width: 100%;
  height: calc(100vh - 65px);
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px 0 24px;
  align-items: center;
}

.testimonials-block,
.playlists-block {
  width: 100%;
  max-width: 1400px;
  padding-inline: 2rem; /* 👈 2rem Fijo para Desktop y Tablet */
  margin-inline: auto;
}

/* =====================================================
    TÍTULOS
===================================================== */
.section-title {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

/* =====================================================
    BLOQUE TESTIMONIOS
===================================================== */
.testimonials-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-wrapper {
  position: relative;
}

.testimonials-swiper {
  padding: 16px 0 56px;
}

.swiper-wrapper {
  align-items: center;
}

/* =====================================================
    CARD TESTIMONIO (DESKTOP: 230px)
===================================================== */
.testimonial-card {
  background-color: var(--bg-secondary);
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  height: 230px; /* 👈 Tamaño original Desktop */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.25;
  transform: scale(0.9);
}

.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
}

.testimonial-image {
  width: 38%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 25%;
     object-position: center 25%;
}

.testimonial-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-content h4 {
  color: var(--neon-green);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-content p {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* =====================================================
    FLECHAS
===================================================== */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(242, 242, 242, 0.25);
  background: rgba(11, 11, 13, 0.7);
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: -64px;
}

.testimonial-next {
  right: -64px;
}

/* =====================================================
    PAGINACIÓN
===================================================== */
.testimonials-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: var(--text-primary);
  opacity: 0.25;
}

.swiper-pagination-bullet-active {
  background: var(--neon-green);
  opacity: 1;
}

/* =====================================================
    BLOQUE PLAYLISTS
===================================================== */
.playlists-block {
  margin-top: 12px;
}

.playlists-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.playlist-card {
  position: relative;
  height: 80px;
  padding: 12px;
  border-radius: 14px;
  background-color: var(--bg-secondary);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playlist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.playlist-card span {
  position: relative;
  z-index: 1;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
}

.playlist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}

/* =====================================================
    RESPONSIVE TABLET (1024px - LANDING)
===================================================== */
@media (max-width: 1024px) {
  .testimonials-block,
  .playlists-block {
    padding-inline: 2rem;
    max-width: 680px; /* Sincronizado con Classes */
    margin: 0 auto;
  }
  .testimonial-card {
    height: 190px; /* 👈 AJUSTE: Más corta en Tablet/Landing */
  }
  .testimonial-content {
    padding: 20px;
  }
  .playlists-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-prev {
    left: -40px;
  }
  .testimonial-next {
    right: -40px;
  }
}
/* =====================================================
    RESPONSIVE MOBILE (768px)
===================================================== */
@media (max-width: 768px) {
  .testimonials-playlists-section {
    height: auto;
    padding-bottom: 48px;
  }
  .testimonials-block,
  .playlists-block {
    padding-inline: 1.4rem;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    height: 450px;
  }
  .testimonial-image {
    width: 100%;
    height: 250px;
  }
  .playlists-wrapper {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .testimonial-nav {
    display: none;
  }
}
/* =====================================================
    FIX LANDSCAPE (SIMETRÍA CON CLASSES)
===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .testimonials-playlists-section {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 40px;
    display: block;
  }
  .testimonials-block,
  .playlists-block {
    display: block;
    margin: 0 auto 30px;
    max-width: 90%;
    padding-inline: 2rem;
  }
  .testimonial-card {
    height: 180px; /* Altura optimizada para landscape */
    max-width: 100%;
    margin: 0 auto;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .playlists-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background-color: #0f0f14;
  color: #F2F2F2;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* CONTENT WRAPPER (EL CONTENEDOR) */
.footer-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-block: 4rem;
  padding-inline: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* BLOQUE DE CONTENIDO (IZQUIERDA) */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  width: 100%;
}

/* =====================================================
   LOGO PRINCIPAL
===================================================== */
.footer-logo {
  width: 140px;
  height: auto;
}

/* =====================================================
   NAVEGACIÓN (UNO ABAJO DEL OTRO)
==================================================== */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.95rem;
  color: #F2F2F2;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

/* =====================================================
   REDES
===================================================== */
.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social img {
  height: 22px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.footer-social img:hover {
  opacity: 1;
}

/* =====================================================
   LEGALES
===================================================== */
.footer-legal {
  font-size: 0.75rem;
  opacity: 0.5;
  max-width: 420px;
  line-height: 1.5;
}

/* =====================================================
   AUTOR
===================================================== */
.footer-author {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-author span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  opacity: 0.45;
  text-transform: uppercase;
}

.footer-agency-logo {
  width: 90px;
  height: auto;
}

/* =====================================================
   RESPONSIVE (TABLET - 1024px)
===================================================== */
@media (max-width: 1024px) {
  .footer-container {
    padding-inline: 2rem;
    max-width: 680px; /* 👈 IGUALADO A CLASSES/SERVICES/TESTIMONIALS */
    margin: 0 auto;
  }
}
/* =====================================================
   RESPONSIVE (MOBILE - 768px)
===================================================== */
@media (max-width: 768px) {
  .footer-container {
    padding-block: 3rem;
    padding-inline: 1.4rem; /* 👈 Cambio a mobile padding */
    max-width: 100%;
  }
  .footer-logo {
    width: 120px;
  }
  .footer-agency-logo {
    width: 80px;
  }
}
/* =====================================================
   FIX LANDSCAPE (SIMETRÍA TOTAL)
===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .site-footer {
    display: block;
  }
  .footer-container {
    max-width: 90%; /* 👈 Igualado a tu ajuste de Classes */
    margin: 0 auto;
    padding-inline: 2rem;
    padding-block: 2.5rem;
  }
  .footer-left {
    gap: 1.5rem;
  }
}/*# sourceMappingURL=main.css.map */