/* ===== GLOBAL STARS BACKGROUND ===== */
.stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  min-height: 400px;
}

/* ===== STAR ANIMATIONS ===== */
@keyframes twinkle {
  0%, 100% { 
    opacity: 0.8;
    transform: scale(1);
    filter: brightness(1);
  }
  25% {
    opacity: 0.2;
    transform: scale(0.7);
    filter: brightness(0.4);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.3);
    filter: brightness(1.6);
  }
  75% {
    opacity: 0.3; 
    transform: scale(0.8);
    filter: brightness(0.6);
  }
}

.star {
  position: absolute;
  border-radius: 50%;
  animation: twinkle 2.5s infinite;
  box-shadow: 0 0 4px currentColor;
}

.star.red {
  background: linear-gradient(45deg, #ff4757, #ff6b7a);
  color: #ff4757;
}

.star.white {
  background: linear-gradient(45deg, #fff, #e0e0e0);
  color: #fff;
}

.star.purple {
  background: linear-gradient(45deg, #8e44ad, #9b59b6);
  color: #8e44ad;
}

/* === FEATURE LIST (Lista de atributos destacados) === */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 350px;
  margin: 2rem auto 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  border-radius: 1.2em;
  padding: 1.1em 1.5em;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.10);
  position: relative;
  transition: transform 0.18s;
}
.feature-item:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 24px 0 rgba(0,0,0,0.16);
}

.feature-icon {
  font-size: 2.1em;
  margin-right: 1.1em;
  filter: drop-shadow(0 2px 6px #0002);
  cursor: pointer;
}

.feature-number {
  font-size: 1.7em;
  font-weight: 700;
  color: #ffd700;
  margin-right: 0.7em;
  letter-spacing: 1px;
  min-width: 60px;
  text-shadow: 0 2px 8px #0002;
}

.feature-label {
  font-size: 1.1em;
  color: #fff;
  font-weight: 500;
  margin-right: 0.7em;
  letter-spacing: 0.5px;
}

.feature-tooltip {
  visibility: hidden;
  opacity: 0;
  background: #222;
  color: #ffd700;
  text-align: center;
  border-radius: 0.7em;
  padding: 0.5em 1em;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.98em;
  font-weight: 400;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
  white-space: nowrap;
}

.feature-item:hover .feature-tooltip,
.feature-item:focus-within .feature-tooltip {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 600px) {
  .feature-list {
    max-width: 100%;
    gap: 1.1rem;
  }
  .feature-item {
    padding: 0.9em 1em;
  }
  .feature-number {
    min-width: 48px;
    font-size: 1.2em;
  }
}
.mystery-band {
  position: relative;
  overflow: hidden;
}
.mystery-band .progress-line {
  position: absolute;
  left: 25%;
  bottom: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #F59E0B 0%, #EC4899 100%);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  z-index: 2;
}
.mystery-band .progress-line.active {
  width: 50%;
}
.mystery-band p {
  opacity: 0;
  transform: translateY(24px);
  color: #FFF;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.mystery-band p.visible {
  opacity: 1;
  transform: translateY(0);
}
/* === Mystery Quote (Caja flotante) === */
.mystery-quote {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mystery-quote blockquote {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding: 2.5rem 2rem 2rem 2.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-light);
  background: rgba(18, 18, 18, 0.7);
  border-left: 4px solid var(--accent-gold);
  border-radius: 1rem;
  font-style: italic;
  box-shadow: 0 8px 32px rgba(18,18,18,0.45);
  margin: 0;
}

.mystery-quote blockquote::before {
  content: "“";
  position: absolute;
  top: -1.2rem;
  left: 1rem;
  font-size: 3.5rem;
  color: var(--accent-pink);
  font-family: serif;
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 700px) {
  .mystery-quote { padding: 2rem 0.5rem; }
  .mystery-quote blockquote { font-size: 1rem; padding: 2rem 1rem 1.5rem 1.5rem; }
  .mystery-quote blockquote::before { font-size: 2.2rem; top: -0.7rem; left: 0.7rem; }
}
/* ===== VARIABLES GLOBALES ===== */
:root {
  --carbon-black: #121212;
  --carbon-overlay: rgba(18, 18, 18, 0.85);
  --carbon-full: rgba(18, 18, 18, 1);
  --accent-purple: #8B5CF6;
  --accent-gold: #F59E0B;
  --accent-pink: #EC4899;
  --text-light: #E5E7EB;
  --text-white: #FFFFFF;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  background-color: var(--carbon-black);
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  background-position: 0 0, 30px 30px;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

/* Overlay degradado */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(180deg, var(--carbon-overlay) 0%, var(--carbon-full) 100%);
  pointer-events: none;
  z-index: -1;
}

/* ===== NAVBAR ===== */
.main-navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
.navbar-logo {
  font-size: 1.5rem;
  color: var(--accent-purple);
  font-weight: 700;
  text-decoration: none;
}

.main-logo {
  height: 40px;
  width: auto;
}
.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.navbar-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.navbar-links a:hover {
  color: var(--accent-pink);
}

/* ===== HERO ===== */
.hero-section {
  min-height: 85vh;
  background-image: url('img/portada-sensual.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 1rem;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.65);
  z-index: 1;
}
.hero-section .content-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-title {
  font-family: 'Crimson Pro', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink), var(--accent-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
  margin-bottom: 1rem;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-pink);
  margin-bottom: 0.5rem;
}
.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.cta-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.25);
}
.cta-button.primary {
  background: var(--accent-purple);
  color: var(--text-white);
}
.cta-button.primary:hover {
  background: var(--accent-gold);
  color: var(--carbon-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

/* ===== EXPERIENCIAS (SERVICIOS) ===== */
#experiencias {
  position: relative;
  z-index: 1;
}

/* === Mystery Band (Cinta de misterio) === */
.mystery-band {
  background: linear-gradient(90deg, #1a1b2e 0%, #24253a 100%);
  padding: 3rem 1rem;
  text-align: center;
  margin: 0 auto 2rem auto;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(18,18,18,0.18);
  position: relative;
  z-index: 2;
}
.mystery-band p {
  font-size: 1.3rem;
  font-weight: 500;
  background: linear-gradient(45deg, var(--accent-pink), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}
/* === Fondo de estrellas SOLO en servicios - detrás de las tarjetas === */
.stars-bg-servicios {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1; /* Cambiado de 0 a -1 para estar detrás */
  overflow: hidden;
}
.star-servicio {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: 0.7;
}
@keyframes twinkle-servicio {
  0%, 100% { 
    opacity: 0.9; 
    transform: scale(1);
    filter: brightness(1);
  }
  25% { 
    opacity: 0.3; 
    transform: scale(0.8);
    filter: brightness(0.5);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.2);
    filter: brightness(1.5);
  }
  75% { 
    opacity: 0.4; 
    transform: scale(0.9);
    filter: brightness(0.7);
  }
}
.star-servicio {
  animation: twinkle-servicio 2s infinite;
  box-shadow: 0 0 6px currentColor;
}
.star-servicio.red {
  background: linear-gradient(45deg, #ff4757, #ff6b7a);
  color: #ff4757;
}
.star-servicio.white {
  background: linear-gradient(45deg, #ffffff, #f1f2f6);
  color: #ffffff;
}
.star-servicio.purple {
  background: linear-gradient(45deg, #a55eea, #8b5cf6);
  color: #a55eea;
}
.experiencias-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}
 .servicio-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
  min-height: 480px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(18,18,18,0.45);
  border: 1.5px solid rgba(139,92,246,0.18);
  background: rgba(18, 18, 18, 0.85); /* Fondo semi-transparente detrás de las tarjetas */
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
  position: relative; /* Para asegurar el contexto de apilamiento */
  z-index: 1; /* Las tarjetas están por encima del fondo de estrellas */
}
.servicio-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(245,158,11,0.25);
  z-index: 2;
}
.servicio-card-image {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px 12px 0 0;
  margin-bottom: 1rem;
}
.servicio-card-image img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.servicio1-image { background-image: url('img/servicios1.png'); }
.servicio2-image { background-image: url('img/servicios2.png'); }
.servicio3-image { background-image: url('img/servicios3.png'); }
.servicio-card-content {
  flex-grow: 1;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}
.servicio-card-title {
  font-family: 'Crimson Pro', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent-pink), var(--accent-purple), var(--accent-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
  margin-bottom: 1rem;
}
.servicio-card-desc {
  font-size: 0.88rem;
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.6;
}

/* ===== SECTION BASE ===== */
.section-base {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1rem;
}
.section-alt-bg {
  background: linear-gradient(135deg, rgba(18,18,18,0.7) 0%, rgba(30,30,47,0.6) 100%);
}
.section-textured {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 100px 100px, 70px 70px;
}

/* ===== SOBRE MÍ ===== */
/* Fondo de estrellas para sección Sobre Mí */
.stars-bg-sobre-mi {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.star-sobre-mi {
  position: absolute;
  border-radius: 50%;
  animation: twinkle-sobre-mi 2.5s infinite;
  box-shadow: 0 0 4px currentColor;
}

@keyframes twinkle-sobre-mi {
  0%, 100% { 
    opacity: 0.8; 
    transform: scale(1);
    filter: brightness(1);
  }
  25% { 
    opacity: 0.2; 
    transform: scale(0.7);
    filter: brightness(0.4);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.3);
    filter: brightness(1.6);
  }
  75% { 
    opacity: 0.3; 
    transform: scale(0.8);
    filter: brightness(0.6);
  }
}

.star-sobre-mi.gold {
  background: linear-gradient(45deg, #f39c12, #f1c40f);
  color: #f39c12;
}
.star-sobre-mi.purple {
  background: linear-gradient(45deg, #8e44ad, #9b59b6);
  color: #8e44ad;
}
.star-sobre-mi.pink {
  background: linear-gradient(45deg, #e91e63, #ff4081);
  color: #e91e63;
}

.star-sobre-mi.red {
  background: linear-gradient(45deg, #ff4757, #ff6b7a);
  color: #ff4757;
}

.star-sobre-mi.white {
  background: linear-gradient(45deg, #fff, #e0e0e0);
  color: #fff;
}

.sobre-mi-imagen img {
  box-shadow: none;
  transition: box-shadow 1s cubic-bezier(.4,0,.2,1);
}
.sobre-mi-imagen img.visible {
  box-shadow: 0 0 32px 0 rgba(245, 158, 11, 0.25), 0 0 0 4px rgba(245, 158, 11, 0.10) inset;
}
/* Efecto Revelado de Niebla para la foto de Sobre Mí */
.sobre-mi-imagen img {
  opacity: 0.3;
  filter: blur(12px);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), filter 1.2s cubic-bezier(.4,0,.2,1), box-shadow 1.2s;
  box-shadow: 0 0 32px 0 rgba(245, 158, 11, 0.18);
}
.sobre-mi-imagen img.visible {
  opacity: 1;
  filter: blur(0);
  box-shadow: 0 0 32px 0 rgba(245, 158, 11, 0.38);
}
/* Fade-in secuencial para párrafos de Sobre Mí */
.sobre-mi-texto p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.sobre-mi-texto p.visible {
  opacity: 1;
  transform: translateY(0);
}
#historia {
  position: relative; /* Contexto para posicionamiento absoluto */
  overflow: hidden; /* Contiene las estrellas */
}
.sobre-mi-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  padding: 0 1rem;
  position: relative; /* Para asegurar que esté por encima de las estrellas */
  z-index: 1;
}
.sobre-mi-imagen img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(18,18,18,0.35);
  object-fit: cover;
}
.section-title {
  font-family: 'Crimson Pro', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin-bottom: 2rem;
}

/* Aplicar formato hero-title a Sobre Mí */
#historia .section-title {
  font-family: 'Crimson Pro', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink), var(--accent-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
  margin-bottom: 2rem;
}
.section-description {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ===== METRIC CARDS ===== */
.metric-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 1000px;
}

.metric-card {
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(30, 30, 47, 0.8) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  min-width: 200px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(18, 18, 18, 0.3);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.2);
}

.metric-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.metric-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for metric cards */
@media (max-width: 768px) {
  .metric-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .metric-card {
    width: 100%;
    max-width: 300px;
    padding: 2rem 1.5rem;
  }
  
  .metric-icon {
    font-size: 2.5rem;
  }
  
  .metric-number {
    font-size: 2rem;
  }
  
  .metric-label {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .metric-card {
    padding: 1.5rem 1rem;
  }
  
  .metric-icon {
    font-size: 2rem;
  }
  
  .metric-number {
    font-size: 1.8rem;
  }
}

/* ===== TESTIMONIALS ===== */
/* Centrado y tamaño reducido para "Confianza Real" */
#opiniones .hero-title {
  text-align: center;
  font-size: 3.4rem; /* 15% menos que 4rem */
  margin-bottom: 2rem;
}

/* FEATURE LIST en testimonios - horizontal */
.testimonial-metrics {
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 100%;
}

.testimonial-metrics .feature-item {
  flex: 0 1 auto;
  min-width: 200px;
}

@media (max-width: 768px) {
  .testimonial-metrics {
    flex-direction: column !important;
    gap: 1.5rem;
  }
  .testimonial-metrics .feature-item {
    min-width: 280px;
  }
}

/* Badges de métricas clave */
.metric-badges-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 2.5rem 0 1.5rem 0;
  flex-wrap: wrap;
}

.metric-badge {
  width: 100px;
  height: 100px;
  background: var(--bg-contrast, var(--carbon-black));
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.08) inset, 0 2px 16px rgba(245, 158, 11, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.metric-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 10px rgba(245, 158, 11, 0.18) inset, 0 4px 24px rgba(245, 158, 11, 0.18);
  z-index: 2;
}

.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  margin-bottom: 2px;
}

.metric-number {
  font-size: 1.7rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 2px;
  margin-top: 2px;
  letter-spacing: 1px;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .metric-badges-row {
    gap: 1rem;
    margin: 1.5rem 0 1rem 0;
  }
  .metric-badge {
    width: 80px;
    height: 80px;
  }
  .metric-icon svg {
    width: 24px;
    height: 24px;
  }
  .metric-number {
    font-size: 1.2rem;
  }
  .metric-label {
    font-size: 0.7rem;
  }
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: #16151A;
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid #5F3DC4;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.25);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial-author {
  color: var(--accent-purple);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Métricas clave (badges) */
.metric-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.metric-badges-centered {
  width: 100%;
  justify-content: center;
}
.metric-badge {
  width: 100px;
  height: 100px;
  background: var(--bg-contrast, var(--carbon-black));
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.07) inset, 0 2px 12px rgba(245, 158, 11, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  outline: none;
}
.metric-badge:focus {
  box-shadow: 0 0 0 3px var(--accent-gold), 0 0 0 8px rgba(245,158,11,0.12);
}
.metric-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12) inset, 0 2px 18px rgba(245, 158, 11, 0.12);
  z-index: 2;
}
.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 2px;
  margin-top: 2px;
  letter-spacing: 1px;
  text-align: center;
}
.metric-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .metric-badges-row {
    gap: 1rem;
    margin-top: 1rem;
  }
  .metric-badge {
    width: 80px;
    height: 80px;
  }
  .metric-icon svg {
    width: 22px;
    height: 22px;
  }
  .metric-number {
    font-size: 1.3rem;
  }
  .metric-label {
    font-size: 0.7rem;
  }
}
/* Historias reales (testimonios) */
.real-stories {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.real-stories .section-title {
  margin-bottom: 2rem;
  text-align: center;
}
.real-stories .testimonials-grid {
  margin-top: 0;
  gap: 2rem;
}
@media (max-width: 600px) {
  .real-stories {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .real-stories .section-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .real-stories .testimonials-grid {
    gap: 1rem;
  }
}

/* ===== CONTACTO - NUEVO DISEÑO ===== */
.contact-card {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid #C084FC;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.contact-intro {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #f1f1f1;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.contact-form {
  width: 100%;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 132, 252, 0.3);
  border-radius: 0.75rem;
  color: #FFF;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FFD700;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-button {
  background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
  color: #FFF;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
  margin-top: 1rem;
}

.submit-button:hover {
  background: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

/* Responsive para contacto */
@media (max-width: 768px) {
  .contact-card {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }

  .contact-intro {
    font-size: 1.3rem;
  }
  
  .submit-button {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-card {
    margin: 0 0.5rem;
    padding: 1.5rem 1rem;
  }
  
  .contact-intro {
    font-size: 1.2rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 47, 0.85) 100%);
  padding: 3rem 1rem;
  margin-top: 4rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-contact {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-contact a {
  color: var(--accent-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-gold);
}
/* ===== CONFESIONES PRIVADAS ===== */
#opiniones {
  background-color: #0e0d11 !important;
}

#opiniones .hero-title {
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 3rem;
}

.confesiones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.confesion-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.confesion-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

.confesion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.confesion-card:hover::before {
  left: 100%;
}

.confesion-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.confesion-card:hover .confesion-icon {
  opacity: 1;
}

.confesion-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.confesion-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .confesiones-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .confesion-card {
    padding: 2rem 1.5rem;
  }
  
  .confesion-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #opiniones .hero-title {
    font-size: 2.8rem;
  }
  
  .confesion-card {
    padding: 1.5rem 1rem;
  }
}
/* ===== CONFESIONES PRIVADAS ===== */
#opiniones {
  background-color: #0e0d11 !important;
}

#opiniones .hero-title {
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 3rem;
}

.confesiones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.confesion-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.confesion-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

.confesion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.confesion-card:hover::before {
  left: 100%;
}

.confesion-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.confesion-card:hover .confesion-icon {
  opacity: 1;
}

.confesion-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.confesion-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .confesiones-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .confesion-card {
    padding: 2rem 1.5rem;
  }
  
  .confesion-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #opiniones .hero-title {
    font-size: 2.8rem;
  }
  
  .confesion-card {
    padding: 1.5rem 1rem;
  }
}
/* ===== AJUSTES TAMAÑO REDUCIDO PARA CONFESIONES ===== */
.confesiones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.confesion-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 1rem;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.confesion-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.confesion-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.confesion-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .confesiones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .confesiones-grid {
    grid-template-columns: 1fr;
  }
}
