/* ==========================================================================
   BIKESUIO.COM - VARIABLES, TIPOGRAFÍA Y DISEÑO RESPONSIVE PREMIUM (SILK PRIDE)
   ========================================================================== */

:root {
  /* Colores Primarios - Orgullo LGBTQ+ Pride Vibrante */
  --rosa-primario: #E91E8C;
  --rosa-hover: #C2185B;
  --rosa-oscuro: #880E4F;

  --morado-primario: #9C27B0;
  --morado-hover: #7B1FA2;
  --morado-oscuro: #4A148C;

  --azul-neon: #00BCD4;
  --azul-hover: #0097A7;

  /* Fondo enriquecido con subtonos de club nocturno vibrante */
  --negro-primario: #0B0415; 
  --negro-card: #150E28;
  --negro-hover: #1E1238;

  /* Colores de Acento */
  --dorado-acento: #FFD700;
  --verde-whatsapp: #25D366;
  --verde-whatsapp-hover: #1EBE57;

  /* Gradientes */
  --gradient-pride: linear-gradient(135deg, #E91E8C 0%, #9C27B0 50%, #00BCD4 100%);
  --gradient-card: linear-gradient(145deg, rgba(23, 10, 46, 0.9) 0%, rgba(11, 4, 22, 0.95) 100%);
  
  /* Soporte */
  --blanco: #FFFFFF;
  --gris-texto: #F0E6FF; /* Tono lila claro */
  --gris-claro: #BCA6E0;
  --borde-neon: rgba(233, 30, 140, 0.45);
  --sombra-neon: 0 0 25px rgba(233, 30, 140, 0.35);
}

/* RESET GENERAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--negro-primario);
  color: var(--blanco);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--blanco);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Animación fluida para los gradientes Pride */
@keyframes prideflow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================================================
   SISTEMA DE ONDAS EN MOVIMIENTO 3D (RAINBOW SILK BACKGROUND)
   ========================================================================== */

.pride-rainbow-wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh; /* Cubre hero y parte de las secciones */
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Efecto seda multicolor animada */
.pride-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, 
    #ff007f 0%, 
    #ff5e00 15%, 
    #ffd700 30%, 
    #25d366 45%, 
    #00bcd4 60%, 
    #9c27b0 75%, 
    #ff007f 100%
  );
  background-size: 50% 100%;
  animation: silkMove 16s linear infinite;
  transform: translate3d(0, 0, 0);
}

/* Capa de onda 1 - Onda baja suave */
.wave-1 {
  opacity: 0.82;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'><path d='M0,450 C360,600 720,250 1440,500 L1440,0 L0,0 Z' fill='%23fff'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'><path d='M0,450 C360,600 720,250 1440,500 L1440,0 L0,0 Z' fill='%23fff'/></svg>");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

/* Capa de onda 2 - Intersección de olas del orgullo */
.wave-2 {
  opacity: 0.45;
  animation: silkMove 22s linear infinite reverse;
  filter: blur(8px);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'><path d='M0,380 C360,250 720,550 1440,400 L1440,0 L0,0 Z' fill='%23fff'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'><path d='M0,380 C360,250 720,550 1440,400 L1440,0 L0,0 Z' fill='%23fff'/></svg>");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

/* Capa de onda 3 - Brillo sutil de fondo */
.wave-3 {
  opacity: 0.35;
  animation: silkMove 32s linear infinite;
  filter: blur(25px);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'><path d='M0,280 C360,450 720,150 1440,300 L1440,0 L0,0 Z' fill='%23fff'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'><path d='M0,280 C360,450 720,150 1440,300 L1440,0 L0,0 Z' fill='%23fff'/></svg>");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

@keyframes silkMove {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   POP-UP DE VERIFICACIÓN DE EDAD
   ========================================================================== */

.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 3, 15, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(15px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-modal-card {
  background: linear-gradient(135deg, #1D0E30 0%, #0D0518 100%);
  border: 2px solid var(--rosa-primario);
  box-shadow: 0 0 45px rgba(233, 30, 140, 0.5), inset 0 0 20px rgba(156, 39, 176, 0.3);
  max-width: 480px;
  width: 100%;
  border-radius: 28px;
  padding: 45px 35px;
  text-align: center;
  animation: modalScaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.age-modal-icon {
  font-size: 3.8rem;
  background: var(--gradient-pride);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(233, 30, 140, 0.5));
}

.age-modal-card h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
  background: var(--gradient-pride);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.age-modal-card h2 .dot {
  -webkit-text-fill-color: var(--blanco);
}

.age-alert-main {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 12px;
}

.age-alert-sub {
  font-size: 0.95rem;
  color: var(--gris-claro);
  margin-bottom: 30px;
  line-height: 1.6;
}

.age-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-verify-accept {
  background-color: var(--verde-whatsapp);
  color: var(--blanco);
  border: none;
  padding: 16px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-verify-accept:hover {
  background-color: var(--verde-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.btn-verify-reject {
  background-color: transparent;
  color: #ff6060;
  border: 1px dashed rgba(255, 96, 96, 0.5);
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-verify-reject:hover {
  background-color: rgba(255, 96, 96, 0.1);
  color: #ff3333;
}

body.modal-open {
  overflow: hidden !important;
}

/* ==========================================================================
   NAVBAR COMPONENT WITH PRIDE LINE
   ========================================================================== */

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 5, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233, 30, 140, 0.25);
  transition: all 0.4s ease;
}

/* Línea brillante del orgullo LGBTQ+ arriba en la barra de navegación */
.custom-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E91E63, #9C27B0, #2196F3, #4CAF50, #FFEB3B, #FF9800);
  z-index: 1001;
}

.custom-navbar.scrolled {
  border-bottom: 2px solid var(--rosa-primario);
  box-shadow: var(--sombra-neon);
  background-color: rgba(11, 5, 22, 0.95);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px 18px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo i {
  color: var(--rosa-primario);
  filter: drop-shadow(0 0 5px var(--rosa-primario));
}

.navbar-logo .accent-text {
  background: var(--gradient-pride);
  background-size: 200% auto;
  animation: prideflow 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blanco);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--rosa-primario);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--rosa-primario);
  text-shadow: 0 0 10px rgba(233, 30, 140, 0.5);
}

.nav-cta-btn {
  background: var(--gradient-pride);
  background-size: 300% 300%;
  animation: prideflow 6s ease infinite;
  color: var(--blanco) !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.45);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(233, 30, 140, 0.7);
}

.navbar-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar-toggle-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--blanco);
  transition: all 0.3s ease;
}

.navbar-toggle-btn.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggle-btn.open .bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle-btn.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .navbar-toggle-btn {
    display: flex;
  }
  
  .navbar-menu {
    position: fixed;
    top: 77px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 77px);
    background-color: rgba(11, 5, 22, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 45px 20px;
    gap: 30px;
    transition: left 0.4s ease-in-out;
  }
  
  .navbar-menu.open {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   HERO SECTION & PARTICLES (VIBRANT GLOW)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* El fondo de seda de arriba se funde con un lila/violeta profundo */
  background: radial-gradient(circle at 50% 100%, #150E28 0%, rgba(11, 4, 22, 0) 80%);
  padding: 130px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  pointer-events: none;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.particle-heart, .particle-star {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.25;
  filter: drop-shadow(0 0 5px rgba(233, 30, 140, 0.6));
  animation: floatUp 8s infinite linear;
}

.particle-heart:nth-child(1) { left: 8%; animation-delay: 0s; font-size: 1.4rem; }
.particle-star:nth-child(2) { left: 28%; animation-delay: 2s; font-size: 2rem; }
.particle-heart:nth-child(3) { left: 58%; animation-delay: 1.5s; font-size: 1.6rem; }
.particle-star:nth-child(4) { left: 78%; animation-delay: 3.5s; font-size: 1.2rem; }
.particle-heart:nth-child(5) { left: 43%; animation-delay: 5s; font-size: 1.8rem; }
.particle-star:nth-child(6) { left: 88%; animation-delay: 0.5s; font-size: 1.5rem; }

@keyframes floatUp {
  0% {
    transform: translateY(110vh) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg) scale(1.3);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 5;
}

.badge-tag-hero {
  display: inline-flex;
  align-items: center;
  background-color: rgba(11, 4, 22, 0.7);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--rosa-primario);
  box-shadow: 0 0 15px rgba(233, 30, 140, 0.35);
  border-radius: 50px;
  padding: 10px 22px;
  margin-bottom: 30px;
  gap: 10px;
}

.badge-item {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blanco);
}

.badge-item i {
  color: var(--rosa-primario);
  margin-right: 4px;
  filter: drop-shadow(0 0 3px var(--rosa-primario));
}

.badge-separator {
  color: var(--rosa-primario);
  opacity: 0.8;
  font-weight: bold;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.hero-typing-sub {
  font-size: 1.35rem;
  color: var(--gris-texto);
  max-width: 800px;
  margin: 0 auto 45px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* CTAs HERO */
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--gradient-pride);
  background-size: 300% 300%;
  animation: prideflow 6s ease infinite;
  color: var(--blanco);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 14px;
  box-shadow: 0 4px 25px rgba(233, 30, 140, 0.55);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.8);
}

.btn-hero-secondary {
  background-color: var(--verde-whatsapp);
  color: var(--blanco);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-hero-secondary:hover {
  background-color: var(--verde-whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* STATS */
.hero-stats {
  margin-top: 30px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(23, 10, 46, 0.85) 0%, rgba(11, 4, 22, 0.95) 100%);
  border: 1.5px solid var(--borde-neon);
  box-shadow: 0 8px 32px 0 rgba(156, 39, 176, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--rosa-primario);
  box-shadow: var(--sombra-neon);
}

.stat-icon {
  font-size: 2.2rem;
  background: var(--gradient-pride);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 4px rgba(233, 30, 140, 0.4));
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--blanco);
  text-shadow: 0 0 10px rgba(233, 30, 140, 0.3);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gris-claro);
  font-weight: 600;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-typing-sub {
    font-size: 1.1rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    padding: 16px 20px;
  }
}

/* ==========================================================================
   SECCIONES COMUNES
   ========================================================================== */

section {
  padding: 110px 0;
  position: relative;
  z-index: 3;
}

.section-header {
  margin-bottom: 60px;
}

.subtitle-neon {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--azul-neon);
  background-color: rgba(11, 4, 22, 0.8);
  border: 1.5px solid rgba(0, 188, 212, 0.5);
  box-shadow: 0 0 12px rgba(0, 188, 212, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 18px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--gris-texto);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  section {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-desc {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   CÓMO FUNCIONA
   ========================================================================== */

.how-it-works-section {
  background: radial-gradient(circle at 10% 30%, rgba(25, 10, 46, 0.95) 0%, var(--negro-primario) 100%);
}

.step-card {
  background: linear-gradient(145deg, rgba(23, 10, 46, 0.9) 0%, rgba(11, 4, 22, 0.98) 100%);
  border: 1.5px solid rgba(156, 39, 176, 0.25);
  padding: 45px 30px;
  border-radius: 28px;
  position: relative;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--rosa-primario);
  box-shadow: var(--sombra-neon);
}

.step-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  background: var(--gradient-pride);
  background-size: 200% auto;
  animation: prideflow 3s linear infinite;
  color: var(--blanco);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.5);
}

.step-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background-color: rgba(233, 30, 140, 0.1);
  border: 2px solid var(--borde-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--rosa-primario);
  margin: 15px auto 25px;
  filter: drop-shadow(0 0 8px rgba(233, 30, 140, 0.4));
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 1rem;
  color: var(--gris-claro);
  line-height: 1.6;
}

/* ==========================================================================
   PERFILES (TARJETAS GLOW LGBTQ+)
   ========================================================================== */

.profiles-section {
  background: radial-gradient(circle at 90% 80%, rgba(156, 39, 176, 0.15) 0%, var(--negro-primario) 100%);
}

.profile-card {
  background: linear-gradient(145deg, rgba(23, 10, 46, 0.9) 0%, rgba(11, 4, 22, 0.98) 100%);
  border: 1.5px solid var(--borde-neon);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--rosa-primario);
  box-shadow: 0 20px 45px rgba(233, 30, 140, 0.4), 0 0 10px rgba(0, 188, 212, 0.2);
}

.profile-image-container {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background-color: #10081C;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.profile-card:hover .profile-img {
  transform: scale(1.08);
}

.profile-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pride-gradient {
  background: var(--gradient-pride);
  background-size: 200% auto;
  animation: prideflow 4s linear infinite;
  color: var(--blanco);
}

.profile-badge-secondary {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(11, 5, 22, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--blanco);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.profile-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.profile-age {
  font-size: 1rem;
  font-weight: 800;
  color: var(--rosa-primario);
  display: flex;
  align-items: center;
  gap: 5px;
  text-shadow: 0 0 5px rgba(233, 30, 140, 0.3);
}

.profile-location {
  font-size: 1rem;
  color: var(--azul-neon);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 0 5px rgba(0, 188, 212, 0.3);
}

.profile-location i {
  margin-right: 5px;
}

.profile-bio {
  font-size: 1rem;
  color: var(--gris-texto);
  margin-bottom: 22px;
  line-height: 1.6;
  flex-grow: 1;
}

.profile-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.interest-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--rosa-primario);
  background-color: rgba(233, 30, 140, 0.12);
  border: 1px solid rgba(233, 30, 140, 0.35);
  padding: 6px 14px;
  border-radius: 50px;
}

.btn-whatsapp-profile {
  background-color: var(--verde-whatsapp);
  color: var(--blanco);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-profile:hover {
  background-color: var(--verde-whatsapp-hover);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   POR QUÉ BIKESUIO (FEATURES)
   ========================================================================== */

.features-section {
  background: radial-gradient(circle at 50% 10%%, #110522 0%, var(--negro-primario) 100%);
}

.feature-card {
  background: linear-gradient(135deg, rgba(23, 10, 46, 0.9) 0%, rgba(11, 4, 20, 0.98) 100%);
  border: 1.5px solid rgba(156, 39, 176, 0.15);
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--borde-neon);
  box-shadow: var(--sombra-neon);
}

.feature-icon {
  font-size: 2.4rem;
  background: var(--gradient-pride);
  background-size: 200% auto;
  animation: prideflow 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 5px rgba(233, 30, 140, 0.4));
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gris-claro);
  line-height: 1.6;
}

/* ==========================================================================
   POLÍTICAS Y TÉRMINOS (ACCORDION)
   ========================================================================== */

.policy-section {
  background-color: rgba(11, 5, 22, 0.3);
}

.custom-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: linear-gradient(145deg, rgba(28, 15, 53, 0.9) 0%, rgba(12, 5, 25, 0.98) 100%);
  border: 1.5px solid rgba(233, 30, 140, 0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: var(--rosa-primario);
  box-shadow: var(--sombra-neon);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--blanco);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header i.fa-solid {
  color: var(--rosa-primario);
  margin-right: 12px;
  filter: drop-shadow(0 0 4px var(--rosa-primario));
}

.accordion-header .arrow {
  color: var(--gris-claro);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .arrow {
  transform: rotate(180deg);
  color: var(--rosa-primario);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background-color: rgba(9, 3, 15, 0.4);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.accordion-content ul {
  padding: 10px 30px 30px 55px;
  list-style-type: square;
  color: var(--gris-texto);
}

.accordion-content ul li {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.6;
}

.accordion-content ul li::marker {
  color: var(--rosa-primario);
}

/* ==========================================================================
   BOTÓN FLOTANTE WHATSAPP (CON GLOW EXTRA)
   ========================================================================== */

.whatsapp-floating-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--verde-whatsapp);
  color: var(--blanco);
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-floating-button:hover {
  background-color: var(--verde-whatsapp-hover);
  transform: scale(1.06);
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
  }
}

@media (max-width: 575px) {
  .whatsapp-floating-button {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .floating-btn-text {
    display: none;
  }
}

/* ==========================================================================
   FOOTER (RAINBOW FINALE)
   ========================================================================== */

.main-footer {
  background-color: #080311;
  padding: 85px 0 45px;
  position: relative;
  z-index: 4;
}

/* Línea arcoíris de firma de cierre */
.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E91E63, #9C27B0, #2196F3, #4CAF50, #FFEB3B, #FF9800);
}

.footer-logo {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.footer-logo .accent-text {
  background: var(--gradient-pride);
  background-size: 200% auto;
  animation: prideflow 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo i {
  color: var(--rosa-primario);
  filter: drop-shadow(0 0 4px var(--rosa-primario));
}

.footer-tagline {
  color: var(--gris-claro);
  margin-top: 8px;
  font-size: 1rem;
  font-style: italic;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gris-texto);
}

.footer-nav a:hover {
  color: var(--rosa-primario);
  text-shadow: 0 0 8px var(--rosa-primario);
}

.lgbt-badge {
  display: inline-block;
  background-color: rgba(233, 30, 140, 0.15);
  border: 1.5px solid var(--borde-neon);
  box-shadow: 0 0 10px rgba(233, 30, 140, 0.2);
  color: var(--blanco);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.footer-whatsapp-text {
  font-size: 0.95rem;
  color: var(--gris-claro);
}

.footer-whatsapp-text a {
  color: var(--verde-whatsapp);
  font-weight: 800;
}

.footer-whatsapp-text a:hover {
  color: var(--blanco);
  text-shadow: 0 0 5px var(--verde-whatsapp);
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 40px 0 25px;
}

.copyright-text {
  font-size: 0.9rem;
  color: var(--gris-claro);
  line-height: 1.7;
}

.footer-legal-mention {
  font-size: 0.8rem;
  color: var(--gris-claro);
  opacity: 0.7;
}