.neon-gold-text {
          color: #fff;
          text-shadow:
            0 0 8px #D4AF37,
            0 0 10px #D4AF37;
          font-weight: 700;
          letter-spacing: 4px;
        }
        
        /* Ajustes para móvil */
        @media (max-width: 768px) {
          .logo-image {
            max-height: 180px !important;
          }
          
          .neon-gold-text {
            font-size: 1.5rem;
            letter-spacing: 3px;
          }
        }
        
        @media (max-width: 576px) {
          .logo-image {
            max-height: 150px !important;
          }
          
          .neon-gold-text {
            font-size: 1.3rem;
            letter-spacing: 2px;
          }
        }

/* Mantengo el diseño original pero ajusto para móvil */
.intro-text-section {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2rem 1rem;
}

.intro-text-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Bloques de Introducción - diseño original */
.intro-block {
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.intro-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Bloque Principal - Negro */
.block-primary {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border-color: #d4af37;
}

.block-primary:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* Bloque Dorado */
.block-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
}

.block-gold:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Bloque Claro */
.block-light {
    background: #ffffff;
    color: #000000;
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.block-light:hover {
    border-color: #d4af37;
}

/* Bloque Acento */
.block-accent {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    border-color: #d4af37;
}

/* Iconos de Bloque */
.block-icon {
    float: left;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-bottom: 0rem;
}

.block-primary .block-icon {
    background: #d4af37;
    color: #000000;
}

.block-gold .block-icon {
    background: #000000;
    color: #d4af37;
}

.block-light .block-icon {
    background: #d4af37;
    color: #000000;
}

.block-accent .block-icon {
    background: #d4af37;
    color: #000000;
}

/* Texto de Bloque */
.block-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
    text-justify: inter-word;
}

.block-text strong {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive Design - SOLO para móvil */
@media (max-width: 767px) {
    .intro-text-section {
        padding: 1.5rem 0.5rem !important;
        width: 100% !important;
        left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .intro-block {
        padding: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .block-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        margin-right: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .block-text {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }
    
    .lema-box {
        margin: 1rem 0 !important;
        padding: 1rem !important;
    }
    
    .lema-text {
        font-size: 1.25rem !important;
    }
}

/* Desktop - diseño original */
@media (min-width: 768px) {
    .intro-row {
        grid-template-columns: repeat(3, 1fr);
    }
}


  /* Animaciones globales - Mantengo igual */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes shimmer {
    0% {
      background-position: -1000px 0;
    }
    100% {
      background-position: 1000px 0;
    }
  }

  .fade-in {
    animation: fadeInUp 0.8s ease-out;
  }

  /* Hero Section */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-section {
    background-color: #000000;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .logo-container {
    animation: fadeInUp 1s ease-out;
  }

  .logo-image {
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
  }

  .logo-image:hover {
    transform: scale(1.05);
  }

  .title-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }

  .subtitle-text {
    animation: fadeInUp 1.2s ease-out;
  }

  /* Welcome Section */
  .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
  }

  .lema-box {
    background-color: #000000;
    border-radius: 15px;
    border: 2px solid #D4AF37;
    box-shadow: 0 10px 10px #d4af37 !important;
    position: relative;
    overflow: hidden;
  }

  .lema-text {
    color: #D4AF37;
    font-style: italic;
    position: relative;
    z-index: 1;
  }

  .intro-text {
    animation: fadeInUp 1s ease-out 0.2s both;
  }

  /* Activity Cards */
  .activity-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
  }

  .activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  }

  .activity-card:hover .card-img-top {
    transform: scale(1.1);
  }

  .card-img-wrapper {
    position: relative;
  }

  .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .activity-card:hover .card-overlay {
    opacity: 1;
  }

  .card-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  .activity-card:hover .card-accent {
    width: 100%;
  }

  /* Sponsors Section */
  .sponsors-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 0, 0, 0.03) 35px, rgba(0, 0, 0, 0.03) 70px);
    pointer-events: none;
  }

  .sponsor-box {
    transition: all 0.3s ease;
  }

  .sponsor-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  }

  .sponsor-box:hover .sponsor-logo {
    filter: grayscale(0%) !important;
    transform: scale(1.1);
  }

  /* CTA Section */
  .cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
  }

  .btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .btn-gold:hover::before {
    left: 100%;
  }
  
  .btn-gold:hover {
    background: linear-gradient(135deg, #C5A028 0%, #B89020 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  }

  .btn-gold:active {
    transform: translateY(0);
  }
  
  .btn-outline-gold {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #D4AF37;
    transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .btn-outline-gold:hover::before {
    width: 300%;
    height: 300%;
  }
  
  .btn-outline-gold:hover {
    color: #000000;
    border-color: #D4AF37;
    transform: translateY(-2px);
  }

  .btn-outline-gold:active {
    transform: translateY(0);
  }

  /* Ajustes específicos para móvil */
  @media (max-width: 768px) {
    /* Ajustes generales */
    .py-5 {
      padding-top: 2rem !important;
      padding-bottom: 2rem !important;
    }
    
    .py-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
    
    .mb-5 {
      margin-bottom: 2rem !important;
    }
    
    .display-1 {
      font-size: 3rem !important;
    }
    
    .display-5 {
      font-size: 2rem !important;
    }
    
    .display-6 {
      font-size: 1.75rem !important;
    }
    
    /* Hero Section */
    .hero-section .py-4 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
    
    /* Welcome Section */
    .welcome-section {
      background-attachment: scroll !important;
      min-height: auto !important;
    }
    
    /* Sección de Actividades */
    .activities-section .col-md-6 {
      width: 100% !important;
    }
    
    .card-img-wrapper {
      height: 200px !important;
    }
    
    .card-body {
      padding: 1rem !important;
    }
    
    /* Sección de Patrocinadores */
    .sponsors-section .col-6 {
      width: 50% !important;
    }
    
    .sponsor-box {
      padding: 1rem !important;
    }
    
    .programas-section .logo-circle {
      width: 140px !important;
      height: 140px !important;
    }
    
    .programas-section .logo-circle img {
      max-width: 120px !important;
      max-height: 120px !important;
    }
    
    /* Call to Action */
    .btn-lg {
      padding: 0.75rem 2rem !important;
      font-size: 1rem;
    }
    
    /* Footer */
    .footer .col-md-6 {
      width: 100% !important;
      margin-bottom: 1.5rem !important;
    }
    
    .footer .logo-circle {
      width: 60px !important;
      height: 60px !important;
    }
    
    .footer .logo-circle img {
      max-width: 40px !important;
      max-height: 40px !important;
    }
    
    .footer .cefor-logo {
      width: 100px !important;
      height: 100px !important;
    }
    
    .footer .cefor-logo img {
      max-width: 80px !important;
      max-height: 80px !important;
    }
  }
  
  @media (max-width: 576px) {
    .display-5 {
      font-size: 1.75rem !important;
    }
    
    .display-6 {
      font-size: 1.5rem !important;
    }
    
    .fs-5 {
      font-size: 1rem !important;
    }
    
    .btn-lg {
      padding: 0.5rem 1.5rem !important;
      font-size: 0.9rem;
    }
    
    .form-select {
      max-width: 250px !important;
    }
  }


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}