/* ================================================================= */
/* ARCHIVO: css/style.css */
/* CSS COMPLETO UNIFICADO CON CONTORNO BLANCO SUAVE */
/* INCLUYE: DONACIONES, TESTIMONIOS VACÍOS, BIOGRAFÍA COLAPSIBLE */
/* ================================================================= */

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================= */
/* EFECTOS DE NEÓN - CONTORNO BLANCO SUAVE ✨ */
/* ================================================================= */
.neon-text {
    color: #4DD0E1; /* Cyan suavizado */
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),  /* Contorno blanco suave */
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        0 0 5px #4DD0E1,
        0 0 10px #4DD0E1,
        0 0 15px #4DD0E1,
        0 0 20px #4DD0E1;
    -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.4); /* Contorno más suave */
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.neon-icon {
    color: #4DD0E1; /* Cyan suavizado */
    filter: drop-shadow(0 0 10px #4DD0E1) drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.4); /* Contorno blanco suave */
    animation: iconPulse 2s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.glowing-text {
    color: #ffffff;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-text-stroke: 0.2px rgba(255, 255, 255, 0.3);
}

/* ================================================================= */
/* ANIMACIONES - ACTUALIZADAS */
/* ================================================================= */
@keyframes neonGlow {
    from {
        text-shadow: 
            0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
            -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
            0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
            -0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
            0 0 5px #4DD0E1,
            0 0 10px #4DD0E1,
            0 0 15px #4DD0E1,
            0 0 20px #4DD0E1;
    }
    to {
        text-shadow: 
            0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
            -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
            0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
            -0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
            0 0 10px #4DD0E1,
            0 0 20px #4DD0E1,
            0 0 30px #4DD0E1,
            0 0 40px #4DD0E1;
    }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* ================================================================= */
/* NAVEGACIÓN */
/* ================================================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(77, 208, 225, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
}

.nav-logo:hover {
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.4),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.4),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.4),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.4),
        0 0 8px #4DD0E1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.4),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.4),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.4),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.4),
        0 0 8px #4DD0E1;
    background: rgba(77, 208, 225, 0.1);
}

.nav-link.active {
    color: #4DD0E1;
    background: rgba(77, 208, 225, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #4DD0E1, #ff006e);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4DD0E1;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background: #ffffff;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ================================================================= */
/* HERO SECTION */
/* ================================================================= */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUp 1.5s ease 0.5s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: slideUp 1.5s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1.5s ease 1.1s both;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: #4DD0E1;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    animation-delay: 1s;
    top: 20%;
    left: 10%;
}

.floating-icon:nth-child(3) {
    animation-delay: 2s;
    top: 60%;
    right: 15%;
}

.floating-icon:nth-child(4) {
    animation-delay: 0.5s;
    bottom: 30%;
    left: 80%;
}

.floating-icon:nth-child(5) {
    animation-delay: 1.5s;
    top: 40%;
    left: 5%;
}

.floating-icon:nth-child(6) {
    animation-delay: 2.5s;
    bottom: 20%;
    right: 10%;
}

/* ================================================================= */
/* BOTONES */
/* ================================================================= */
.btn-primary, .btn-secondary, .neon-btn, .glow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.neon-btn {
    background: linear-gradient(45deg, #4DD0E1, #26A69A);
    color: #000000;
    box-shadow: 0 0 20px rgba(77, 208, 225, 0.5);
    text-shadow: none;
}

.neon-btn:hover {
    background: linear-gradient(45deg, #26A69A, #4DD0E1);
    box-shadow: 0 0 30px rgba(77, 208, 225, 0.8);
    transform: translateY(-2px);
}

.glow-btn {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.glow-btn:hover {
    background: linear-gradient(45deg, #8338ec, #ff006e);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(45deg, #4DD0E1, #26A69A);
    color: #000000;
    box-shadow: 0 5px 15px rgba(77, 208, 225, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #26A69A, #4DD0E1);
    box-shadow: 0 8px 25px rgba(77, 208, 225, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #4DD0E1;
    border: 2px solid #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: #4DD0E1;
    color: #000000;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 208, 225, 0.4);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #4DD0E1, #26A69A);
    color: #000000;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #26A69A, #4DD0E1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(77, 208, 225, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ================================================================= */
/* BOTONES ESPECIALES - BIOGRAFÍA Y DONACIONES */
/* ================================================================= */
.btn-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: rgba(77, 208, 225, 0.1);
    color: #4DD0E1;
    border: 2px solid #4DD0E1;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.btn-toggle:hover {
    background: #4DD0E1;
    color: #000000;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 208, 225, 0.3);
}

.btn-voice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.btn-voice:hover {
    background: linear-gradient(45deg, #8338ec, #ff006e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

.btn-voice.speaking {
    animation: pulse 1s ease-in-out infinite;
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, #f59e0b, #eab308);
    color: #000000;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    text-shadow: none;
}

.btn-donate:hover {
    background: linear-gradient(45deg, #eab308, #f59e0b);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.btn-donate .heart-icon {
    animation: heartBeat 1.5s ease-in-out infinite;
    font-size: 1.5rem;
    color: #dc2626;
}

/* ================================================================= */
/* SECCIONES GENERALES */
/* ================================================================= */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================================================================= */
/* MENTOR SECTION - CON BIOGRAFÍA COLAPSIBLE */
/* ================================================================= */
.mentor-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(30, 30, 30, 0.9));
    position: relative;
}

.mentor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    animation: fadeIn 1s ease;
}

.mentor-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.mentor-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(77, 208, 225, 0.3);
    transition: all 0.3s ease;
}

.mentor-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(77, 208, 225, 0.5);
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #4DD0E1, #ff006e, #8338ec);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    animation: gradientShift 3s ease infinite;
}

.mentor-info {
    animation: slideIn 1s ease 0.3s both;
}

.mentor-name {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.mentor-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-weight: 600;
}

.mentor-bio {
    margin-bottom: 2rem;
}

.mentor-bio-content {
    transition: all 0.5s ease;
    overflow: hidden;
}

.mentor-bio-content.collapsed {
    max-height: 150px;
}

.mentor-bio-content.expanded {
    max-height: 1000px;
}

.mentor-bio p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-align: justify;
    line-height: 1.7;
    opacity: 0.9;
}

.bio-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.mentor-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.5);
    border: 2px solid rgba(77, 208, 225, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #4DD0E1;
    background: rgba(77, 208, 225, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: bold;
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ================================================================= */
/* PROGRAMAS SECTION */
/* ================================================================= */
.programs-section {
    padding: 6rem 0;
    background: rgba(15, 15, 15, 0.9);
    position: relative;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(77, 208, 225, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: #4DD0E1;
    box-shadow: 0 20px 40px rgba(77, 208, 225, 0.2);
}

.program-card.featured {
    border-color: #ff006e;
    background: rgba(30, 20, 30, 0.8);
    position: relative;
}

.program-card.featured::before {
    content: '⭐ DESTACADO';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.program-card.featured:hover {
    border-color: #ff006e;
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s ease infinite;
}

.program-card.featured .card-icon {
    color: #ff006e;
}

.program-card h3 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.program-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.program-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
    font-weight: bold;
    font-size: 1.1rem;
}

.program-card.featured .program-features li::before {
    color: #ff006e;
}

.btn-program {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #4DD0E1, #26A69A);
    color: #000000;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-program:hover {
    background: linear-gradient(45deg, #26A69A, #4DD0E1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(77, 208, 225, 0.3);
}

.program-card.featured .btn-program {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
}

.program-card.featured .btn-program:hover {
    background: linear-gradient(45deg, #8338ec, #ff006e);
    box-shadow: 0 10px 20px rgba(255, 0, 110, 0.3);
}

/* ================================================================= */
/* DONACIONES SECTION - NUEVO */
/* ================================================================= */
.donations-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(25, 20, 5, 0.9), rgba(45, 35, 10, 0.9));
    position: relative;
    overflow: hidden;
}

.donations-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.donations-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.donations-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    z-index: -1;
}

.donations-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.donations-icon {
    font-size: 4rem;
    color: #f59e0b;
    margin-bottom: 2rem;
    animation: heartBeat 2s ease-in-out infinite;
    display: block;
}

.donations-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #f59e0b, #eab308, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.donations-message {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donations-message p {
    margin-bottom: 1.5rem;
}

.donations-highlight {
    color: #fbbf24;
    font-weight: bold;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

.donations-button-container {
    margin-top: 2rem;
}

/* ================================================================= */
/* TESTIMONIOS SECTION - RECUADROS VACÍOS */
/* ================================================================= */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(40, 40, 40, 0.9));
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(77, 208, 225, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeIn 0.8s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #4DD0E1;
    box-shadow: 0 15px 30px rgba(77, 208, 225, 0.2);
}

.testimonial-card.featured {
    border-color: #ff006e;
    background: rgba(40, 30, 40, 0.8);
}

.testimonial-card.featured:hover {
    border-color: #ff006e;
    box-shadow: 0 15px 30px rgba(255, 0, 110, 0.2);
}

.testimonial-placeholder {
    text-align: center;
    opacity: 0.6;
}

.testimonial-placeholder i {
    font-size: 3rem;
    color: #4DD0E1;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

.testimonial-card.featured .testimonial-placeholder i {
    color: #ff006e;
}

.testimonial-placeholder h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.testimonial-placeholder p {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* ================================================================= */
/* CONTACTO SECTION */
/* ================================================================= */
.contact-section {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #4DD0E1;
    width: 20px;
    text-align: center;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(77, 208, 225, 0.1);
    border: 2px solid #4DD0E1;
    border-radius: 50%;
    color: #4DD0E1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4DD0E1;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(77, 208, 225, 0.3);
}

.contact-form {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(77, 208, 225, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(77, 208, 225, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4DD0E1;
    box-shadow: 0 0 10px rgba(77, 208, 225, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

/* ================================================================= */
/* CHATBOT SECTION - CON VIDEO DE FONDO */
/* ================================================================= */
.chatbot-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(35, 35, 35, 0.9));
    position: relative;
    overflow: hidden;
}

.chatbot-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.chatbot-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.chatbot-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    z-index: -1;
}

.chatbot-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(77, 208, 225, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(30, 30, 30, 0.9);
    border-bottom: 2px solid rgba(77, 208, 225, 0.3);
}

.chatbot-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4DD0E1, #26A69A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

.chatbot-info {
    flex: 1;
}

.chatbot-info h3 {
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.status {
    font-size: 0.9rem;
    opacity: 0.8;
}

.status.online {
    color: #4ade80;
}

.status.thinking {
    color: #f59e0b;
}

.chatbot-controls {
    display: flex;
    gap: 0.5rem;
}

.voice-btn, .clear-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(77, 208, 225, 0.2);
    color: #4DD0E1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.voice-btn:hover, .clear-btn:hover {
    background: #4DD0E1;
    color: #000;
    transform: scale(1.1);
}

.chatbot-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(5px);
}

.message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.bot-message .message-avatar {
    background: linear-gradient(45deg, #4DD0E1, #26A69A);
    color: #000;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
}

.message-content {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    max-width: 80%;
    line-height: 1.5;
}

.bot-message .message-content {
    background: rgba(77, 208, 225, 0.1);
    border: 1px solid rgba(77, 208, 225, 0.3);
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background: rgba(77, 208, 225, 0.2);
    border: 1px solid #4DD0E1;
    border-bottom-right-radius: 5px;
}

.message-content p {
    margin: 0;
}

.typing-indicator {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-style: italic;
    opacity: 0.7;
}

.typing-indicator.show {
    display: flex;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4DD0E1;
    animation: bounce 1.4s ease-in-out infinite both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

.chatbot-quick-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(25, 25, 25, 0.8);
    border-top: 1px solid rgba(77, 208, 225, 0.3);
    flex-wrap: wrap;
}

.quick-action {
    padding: 0.5rem 1rem;
    background: rgba(77, 208, 225, 0.1);
    border: 1px solid #4DD0E1;
    border-radius: 20px;
    color: #4DD0E1;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

.quick-action:hover {
    background: #4DD0E1;
    color: #000;
    text-shadow: none;
    transform: translateY(-2px);
}

.chatbot-input-container {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.9);
    border-top: 1px solid rgba(77, 208, 225, 0.3);
}

.chatbot-input {
    flex: 1;
    padding: 1rem;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(77, 208, 225, 0.3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.chatbot-input:focus {
    outline: none;
    border-color: #4DD0E1;
    box-shadow: 0 0 10px rgba(77, 208, 225, 0.3);
}

.chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.send-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4DD0E1, #26A69A);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: linear-gradient(45deg, #26A69A, #4DD0E1);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(77, 208, 225, 0.3);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ================================================================= */
/* FOOTER */
/* ================================================================= */
.footer {
    background: rgba(5, 5, 5, 0.95);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(77, 208, 225, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4DD0E1;
    text-shadow: 
        0.5px 0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
        -0.5px 0.5px 0px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(77, 208, 225, 0.2);
    opacity: 0.7;
}

/* ================================================================= */
/* RESPONSIVO */
/* ================================================================= */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(77, 208, 225, 0.1);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .mentor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bio-controls {
        justify-content: center;
    }
    
    .btn-toggle,
    .btn-voice {
        margin: 0.25rem;
    }
    
    .chatbot-input-container {
        padding: 1rem;
    }
    
    .donations-message {
        font-size: 1.1rem;
    }
    
    .btn-donate {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .mentor-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .program-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .chatbot-container {
        margin: 0 1rem;
    }
    
    .chatbot-messages {
        height: 300px;
    }
    
    .floating-icon {
        display: none;
    }
}

/* ================================================================= */
/* UTILIDADES */
/* ================================================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

.fade-in { animation: fadeIn 0.5s ease; }
.slide-up { animation: slideUp 0.5s ease; }

/* ================================================================= */
/* SCROLLBAR PERSONALIZADA */
/* ================================================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(20, 20, 20, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4DD0E1, #26A69A);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #26A69A, #4DD0E1);
}