/* ========== VARIABLES GLOBALES ========== */
:root {
  --color-bg: #0a0a0a;
  --color-bg-matte: #1a1a1a;
  --color-bg-overlay: rgba(0, 0, 0, 0.75);
  --color-text: #ffffff;
  --color-text-muted: #cccccc;
  --color-yellow: #ffd700;
  --color-yellow-dark: #e6c200;
  --color-black-bright: #000000;
  --color-border: #333333;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --btn-padding-y: clamp(0.5rem, 1vw, 1rem);
  --btn-padding-x: clamp(1.5rem, 3vw, 3rem);
  --transition-base: all 0.3s ease;
  --shadow-base: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* ========== RESET Y BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

body {
  background-image: url('https://wololosound.com/wp-content/uploads/pawlowski-1.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* ========== HEADER Y LOGO ========== */
header {
  background-color: transparent;
  padding: clamp(6rem, 5vw, 8rem) clamp(1rem, 5vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

header img.destello,
.logo-container img {
  max-width: clamp(300px, 35vw, 400px);
  height: auto;
  margin: 1rem;
  transition: var(--transition-base);
  cursor: pointer;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

header img.destello:hover,
.logo-container img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
}

/* ========== CONTENIDO PRINCIPAL ========== */
.content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(1rem, 4vw, 3rem);
}

/* ========== TIPOGRAFÃA ========== */
h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--color-yellow);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}

h2 {
  font-size: clamp(1rem, 2.0vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 3rem;
  color: var(--color-text);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* ========== BOTONES BASE ========== */
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 1vw, 1.0rem);
  margin-top: clamp(-10rem, -3vw, 0.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: 0 1rem;
}

a.btn,
.btn-espana {
  display: inline-block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: clamp(1rem, 2vw, 1.0rem);
  color: var(--color-yellow);
  background: var(--color-black-bright);
  border: 2px solid var(--color-yellow);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-base);
  min-width: 140px;
  text-align: center;
  box-shadow: var(--shadow-base);
}

a.btn:hover,
a.btn:focus,
.btn-espana:hover,
.btn-espana:focus {
  background: var(--color-yellow);
  color: var(--color-black-bright);
  border-color: var(--color-yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

a.btn:active,
.btn-espana:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

/* ========== MARQUESINA DE DJS - VERSIÃ“N COMPACTA ========== */
.dj-slider-section {
  padding: 40px 20px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Contenedor principal de la marquesina */
.dj-slider-container {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 15px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ffd700 #2a2a2a;
  scroll-behavior: smooth;
}

.dj-slider-container::-webkit-scrollbar {
  height: 6px;
}

.dj-slider-container::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 4px;
}

.dj-slider-container::-webkit-scrollbar-thumb {
  background: #ffd700;
  border-radius: 4px;
}

.dj-slider-container::-webkit-scrollbar-thumb:hover {
  background: #ffed4e;
}

/* Wrapper del slider - Marquesina horizontal */
.dj-slider {
  display: flex;
  gap: 20px;
  padding: 10px 15px;
  width: max-content;
}

/* Cada tarjeta de DJ - MÃS COMPACTA */
.dj-slide {
  min-width: 420px;
  max-width: 420px;
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
}

.dj-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

/* Imagen del DJ - MÃS PEQUEÃ‘A */
.dj-image {
  width: 180px;
  min-width: 180px;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}

/* Contenedor de informaciÃ³n - MÃS COMPACTO */
.dj-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: space-between;
}

/* Nombre del DJ */
.dj-name {
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: 700;
  margin: 0;
  text-align: left;
  line-height: 1.2;
}

/* DescripciÃ³n del DJ - TEXTO MÃS PEQUEÃ‘O */
.dj-description {
  font-size: 0.8rem;
  color: #cccccc;
  line-height: 1.5;
  text-align: justify;
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* InformaciÃ³n de eventos - MÃS COMPACTA */
.event-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: #1a1a1a;
  border-radius: 6px;
  font-size: 0.75rem;
}

.event-info p {
  margin: 0;
  color: #cccccc;
  line-height: 1.3;
}

.event-info strong {
  color: #ffd700;
  font-weight: 600;
}

/* BotÃ³n de contrataciÃ³n - MÃS PEQUEÃ‘O */
.hire-btn {
  display: block;
  padding: 8px 16px;
  background: #ffd700;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

.hire-btn:hover {
  background: #ffed4e;
  transform: scale(1.05);
}

/* Ocultar indicadores */
.slider-indicators {
  display: none;
}

/* ========== RESPONSIVE DESIGN - DJ SLIDER ========== */

/* Tablets */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .dj-slider {
    gap: 15px;
    padding: 10px;
  }
  
  .dj-slide {
    min-width: 380px;
    max-width: 380px;
  }
  
  .dj-image {
    width: 160px;
    min-width: 160px;
    min-height: 160px;
  }
  
  .dj-info {
    padding: 12px;
  }
  
  .dj-name {
    font-size: 1.1rem;
  }
  
  .dj-description {
    font-size: 0.75rem;
    -webkit-line-clamp: 3;
  }
}

/* MÃ³viles - APILADO VERTICAL */
@media (max-width: 480px) {
  .dj-slider-section {
    padding: 30px 10px;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .dj-slider {
    gap: 12px;
    padding: 10px 5px;
  }
  
  /* CAMBIO A LAYOUT VERTICAL */
  .dj-slide {
    min-width: 260px;
    max-width: 260px;
    flex-direction: column;
  }
  
  /* Imagen arriba en mÃ³vil */
  .dj-image {
    width: 100%;
    height: 200px;
    min-height: 200px;
  }
  
  .dj-info {
    padding: 12px;
  }
  
  .dj-name {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .dj-description {
    font-size: 0.75rem;
    -webkit-line-clamp: 3;
  }
  
  .event-info {
    padding: 8px;
    font-size: 0.7rem;
  }
  
  .hire-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

/* ========== ESTADOS DE CARGA ========== */
.dj-image[loading="lazy"],
.dj-image[loading="eager"] {
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========== SECCIÃ“N MÃ‰TRICAS DE CONFIANZA ========== */
.trust-indicators-section {
  padding: 40px 20px;
  background: rgba(26, 26, 26, 0.95);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-card {
  padding: 20px;
}

.trust-number {
  font-size: 3rem;
  color: var(--color-yellow);
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-description {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* ========== SECCIÃ“N POR QUÃ‰ ELEGIRNOS ========== */
.why-choose-us-section {
  padding: 80px 20px;
  background: rgba(26, 26, 26, 0.95);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-yellow);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--color-bg-matte);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 45px;
  height: 45px;
  fill: var(--color-yellow);
}

.feature-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  color: var(--color-yellow);
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin: 0;
}

/* ========== SECCIÃ“N CÃ“MO FUNCIONA ========== */
.how-it-works-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.95)),
              url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1600') center/cover fixed;
  position: relative;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 50%);
  pointer-events: none;
}

.audience-section {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.audience-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.audience-icon {
  width: 80px;
  height: 80px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  border: 3px solid var(--color-yellow);
  filter: invert(84%) sepia(82%) saturate(434%) hue-rotate(359deg) brightness(104%) contrast(104%);
}

.audience-header h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--color-yellow);
  font-weight: 700;
  margin: 0;
}

.steps-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-yellow), transparent);
}

.step-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.step-number {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black-bright);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  background: rgba(26, 26, 26, 0.9);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--color-yellow);
  transition: var(--transition-base);
}

.step-content:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.step-content h4 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--color-yellow);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-content p {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin: 0;
}

.step-content a {
  color: var(--color-yellow);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.step-content a:hover {
  color: var(--color-yellow-dark);
}

.section-divider {
  height: 2px;
  max-width: 600px;
  margin: 80px auto;
  background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--color-yellow);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* ========== CTA BUTTONS ========== */
.cta-container {
  margin-top: 60px;
  text-align: center;
}

.cta-dual {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-base);
  min-width: 250px;
  text-align: center;
}

.cta-button.primary {
  background: var(--color-yellow);
  color: var(--color-black-bright);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: 2px solid var(--color-yellow);
}

.cta-button.primary:hover {
  background: var(--color-yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.cta-button.secondary {
  background: transparent;
  color: var(--color-yellow);
  border: 2px solid var(--color-yellow);
}

.cta-button.secondary:hover {
  background: var(--color-yellow);
  color: var(--color-black-bright);
  transform: translateY(-3px);
}

.cta-main-container {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.btn-cta-large {
  display: inline-block;
  padding: 20px 50px;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-black-bright);
  background: var(--color-yellow);
  border: 3px solid var(--color-yellow);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-base);
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-large:hover {
  background: var(--color-yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* ========== TARJETAS DE CIUDADES - DISEÃ‘O UNIFICADO ========== */

/* SecciÃ³n principal */
.city-cards-section {
  padding: 80px 20px;
  background: rgba(10, 10, 10, 0.98);
  width: 100%;
}

/* Contenedor de las tarjetas */
.cities-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* Tarjeta individual */
.city-card {
  position: relative;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Overlay oscuro sobre la imagen */
.city-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

/* Efecto hover */
.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border-color: #FFD700;
}

.city-card:hover::before {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Contenido de la tarjeta */
.city-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* TÃ­tulo de la ciudad */
.city-card h3,
.city-card-content h3 {
  color: #FFD700;
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.3;
}

/* DescripciÃ³n */
.city-card p,
.city-card-content p {
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 20px 0;
  font-size: 0.95rem;
  text-align: left;
}

/* BotÃ³n de la tarjeta */
.btn-card {
  display: inline-block;
  padding: 12px 24px;
  background: #FFD700;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-card:hover {
  background: #ffed4e;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* ========== TESTIMONIOS ========== */
.testimonials-section {
  padding: 80px 20px;
  background: rgba(10, 10, 10, 0.98);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(26, 26, 26, 0.9);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.rating {
  color: var(--color-yellow);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.testimonial-text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-black-bright);
  flex-shrink: 0;
}

.author-info p {
  margin: 0;
}

.author-name {
  color: var(--color-yellow);
  font-weight: 600;
}

.author-details {
  color: #999999;
  font-size: 0.9rem;
}

/* ========== CONTENIDO EDITORIAL ========== */
.content-section {
  padding: 60px 20px;
  background: rgba(26, 26, 26, 0.9);
  margin-top: 40px;
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.content-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--color-yellow);
  font-weight: 700;
  line-height: 1.3;
}

.content-subtitle {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 40px;
  color: var(--color-text);
  font-weight: 400;
}

.content-subtitle-section {
  color: var(--color-yellow);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 40px 0 25px 0;
  font-weight: 700;
}

.content-text {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.content-text strong {
  color: var(--color-yellow);
  font-weight: 600;
}

.content-highlight {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid var(--color-yellow);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.content-highlight p {
  color: var(--color-text);
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.benefit-card {
  background: var(--color-bg-matte);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.benefit-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.benefit-card h3,
.benefit-card h4 {
  color: var(--color-yellow);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  margin: 0;
}

/* ========== FAQS ========== */
.faq-section {
  padding: 60px 20px;
  background: rgba(10, 10, 10, 0.95);
  margin-top: 40px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.faq-item {
  background-color: var(--color-bg-matte);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-yellow);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-base);
  font-family: var(--font-primary);
}

.faq-question:hover {
  color: var(--color-yellow);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: var(--color-yellow);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-question.active::after {
  content: 'âˆ’';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-answer.active {
  max-height: 800px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--color-yellow);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: var(--color-yellow-dark);
}

/* ========== BANNER DE COOKIES ========== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  border-top: 2px solid var(--color-yellow);
}

#cookie-banner.show {
  display: block;
}

#cookie-banner p {
  color: var(--color-text-muted);
  margin: 0 0 15px 0;
  text-align: center;
  line-height: 1.6;
}

#cookie-banner a {
  color: var(--color-yellow);
  text-decoration: underline;
}

#cookie-banner > div {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

#acceptCookies,
#declineCookies {
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  font-family: var(--font-primary);
}

#acceptCookies {
  background: var(--color-yellow);
  color: var(--color-black-bright);
}

#acceptCookies:hover {
  background: var(--color-yellow-dark);
  transform: translateY(-2px);
}

#declineCookies {
  background: transparent;
  border: 2px solid var(--color-yellow);
  color: var(--color-yellow);
}

#declineCookies:hover {
  background: var(--color-yellow);
  color: var(--color-black-bright);
}

/* ========== LAZY LOADING ========== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

.lazy-bg {
  background-color: var(--color-bg-matte);
  background-image: none !important;
  position: relative;
}

.lazy-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 0;
}

.bg-loaded::after {
  display: none;
}

/* ========== ANIMACIONES ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* ========== RESPONSIVE - CITY CARDS ========== */

/* Pantallas grandes (escritorio) */
@media (min-width: 1200px) {
  .cities-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Pantallas medianas (tablets landscape) */
@media (min-width: 992px) and (max-width: 1199px) {
  .cities-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .city-card {
    height: 320px;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .cities-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }
  
  .city-card {
    height: 300px;
  }
  
  .city-card-content {
    padding: 25px;
  }
  
  .city-card h3 {
    font-size: 1.3rem;
  }
}

/* MÃ³viles grandes */
@media (min-width: 481px) and (max-width: 767px) {
  .city-cards-section {
    padding: 60px 15px;
  }
  
  .cities-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
    max-width: 500px;
  }
  
  .city-card {
    height: 320px;
  }
}

/* MÃ³viles pequeÃ±os */
@media (max-width: 480px) {
  .city-cards-section {
    padding: 40px 10px;
  }
  
  .cities-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0;
  }
  
  .city-card {
    height: 280px;
  }
  
  .city-card-content {
    padding: 20px;
  }
  
  .city-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .city-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .btn-card {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ========== RESPONSIVE - GENERAL TABLETS ========== */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card,
  .benefit-card {
    padding: 30px 25px;
  }

  .buttons-container {
    flex-direction: column;
    align-items: stretch;
  }

  a.btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .steps-timeline::before {
    left: 40px;
  }

  .step-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .step-content {
    padding: 25px 20px;
  }

  .cta-dual {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 350px;
  }

  .content-section,
  .faq-section {
    padding: 40px 15px;
  }

  .content-text {
    text-align: left;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-banner > div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  #cookie-banner button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .steps-timeline::before {
    display: none;
  }

  .step-item {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .step-content {
    border-left: none;
    border-top: 4px solid var(--color-yellow);
  }

  .step-content:hover {
    transform: translateY(-5px) translateX(0);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-number {
    font-size: 2.5rem;
  }

  .btn-cta-large {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .audience-header {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== ACCESIBILIDAD ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

.city-card:focus-within {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

.dj-slide:focus-within {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
}

/* ========== PRINT STYLES ========== */
@media print {
  body {
    background: white;
    color: black;
  }
  
  header,
  #cookie-banner,
  .cta-button,
  .btn-card,
  .hire-btn {
    display: none;
  }
}