* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Psicológica Principal */
    --primary-color: #1a5f4f; /* Verde Bosque - Confianza, Crecimiento, Esperanza */
    --secondary-color: #f4a261; /* Naranja Cálido - Energía, Optimismo, Acción */
    --accent-color: #e76f51; /* Coral - Calidez, Humanidad, Pasión por el cambio */
    --peace-color: #264653; /* Verde Petróleo - Estabilidad, Paz, Profundidad */
    --nature-color: #2a9d8f; /* Verde Azulado - Naturaleza, Renovación, Armonía */
    --earth-color: #e9c46a; /* Amarillo Tierra - Abundancia, Riqueza cultural, Sol */
    --heritage-color: #8b5a3c; /* Marrón Cálido - Tradición, Raíces, Ancestralidad */
    /* Colores de Apoyo */
    --success-color: #06d6a0; /* Verde Vibrante - Éxito, Logros, Vitalidad */
    --warning-color: #ffd166; /* Amarillo Suave - Atención, Cuidado, Prevención */
    --danger-color: #f72585; /* Rosa Intenso - Urgencia, Acción inmediata */
    /* Tonos de Texto */
    --text-dark: #264653; /* Verde Oscuro - Legibilidad, Seriedad, Profesionalismo */
    --text-medium: #2a9d8f; /* Verde Medio - Subtítulos, Enlaces */
    --text-light: #6b7280; /* Gris Cálido - Texto secundario */
    --text-accent: #e76f51; /* Coral - CTAs, Enlaces importantes */
    /* Fondos */
    --bg-primary: #f8fffe; /* Blanco Cálido - Limpieza, Claridad */
    --bg-secondary: #f1f8f6; /* Verde Muy Claro - Secciones alternas */
    --bg-accent: #fff5f0; /* Coral Muy Claro - Destacados */
    /* Gradientes Emocionales */
    --gradient-primary: linear-gradient(135deg, #264653 0%, #2a9d8f 50%, #e9c46a 100%); /* Naturaleza a Prosperidad */
    --gradient-secondary: linear-gradient(135deg, #f4a261 0%, #e76f51 100%); /* Energía y Pasión */
    --gradient-peace: linear-gradient(135deg, #1a5f4f 0%, #264653 100%); /* Tranquilidad Profunda */
    --gradient-nature: linear-gradient(135deg, #2a9d8f 0%, #06d6a0 100%); /* Vida y Crecimiento */
    --gradient-culture: linear-gradient(135deg, #8b5a3c 0%, #e9c46a 100%); /* Tradición a Abundancia */
    /* Sombras Cálidas */
    --shadow-soft: 0 4px 20px rgba(42, 157, 143, 0.15); /* Verde suave */
    --shadow-medium: 0 8px 30px rgba(38, 70, 83, 0.2); /* Verde petróleo */
    --shadow-strong: 0 12px 40px rgba(26, 95, 79, 0.25); /* Verde bosque */
    /* Overlays */
    --overlay-dark: rgba(38, 70, 83, 0.8); /* Verde petróleo transparente */
    --overlay-light: rgba(248, 255, 254, 0.9); /* Blanco cálido transparente */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header y Navegación */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .logo img {
        height: 50px;
        width: auto;
        display: block !important;
        object-fit: contain;
        max-width: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Ocultar cualquier elemento circular de respaldo */
    .logo > div:first-child:not(.logo-text) {
        display: none !important;
    }

/* Fallback para logo */
.logo-fallback {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Botón de acceso al correo institucional */
.email-access {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 999;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(26, 95, 79, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

    .email-access:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(26, 95, 79, 0.4);
    }

.email-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 1rem;
    min-width: 250px;
    display: none;
    margin-top: 0.5rem;
}

    .email-dropdown.active {
        display: block;
    }

.email-option {
    display: block;
    padding: 0.8rem;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .email-option:hover {
        background: var(--bg-secondary);
        border-color: var(--primary-color);
    }

    .email-option i {
        color: var(--primary-color);
        margin-right: 0.5rem;
    }

/* Panel de métricas */
.metrics-panel {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 998;
    min-width: 280px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    transform: translateX(-100%);
}

    .metrics-panel.visible {
        transform: translateX(0);
    }

.metrics-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-secondary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

    .metrics-toggle:hover {
        transform: scale(1.1);
    }

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.metrics-title {
    font-weight: bold;
    color: var(--primary-color);
}

.metrics-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .metrics-close:hover {
        background: rgba(231, 111, 81, 0.1);
        color: var(--accent-color);
    }

.metric-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
}

.metric-label {
    color: var(--text-light);
}

.metric-value {
    font-weight: bold;
    color: var(--primary-color);
}

.metrics-section {
    margin-bottom: 1rem;
}

.metrics-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 600%; /* 6 slides × 100% = 600% */
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
    z-index: 1;
}

.hero-slide {
    width: 16.666%; /* 100% ÷ 6 slides = 16.666% */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 70, 83, 0.75) 0%, rgba(42, 157, 143, 0.65) 50%, rgba(233, 196, 106, 0.75) 100%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 3;
}

/* Indicadores del slider */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .hero-indicator.active {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1.2);
    }

/* Modal del formulario */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

    .modal-overlay.active {
        display: flex;
    }

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        backdrop-filter: blur(20px);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .modal-close:hover {
        background: rgba(231, 111, 81, 0.9);
        color: white;
        transform: rotate(90deg);
    }

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(26, 95, 79, 0.3);
    animation: pulse 2s infinite;
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .form-label i {
        color: var(--primary-color);
        font-size: 1rem;
    }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(26, 95, 79, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 0 0 4px rgba(26, 95, 79, 0.1), 0 4px 20px rgba(26, 95, 79, 0.15);
        transform: translateY(-2px);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.3rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(26, 95, 79, 0.3);
    position: relative;
    overflow: hidden;
}

    .form-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .form-submit:hover::before {
        left: 100%;
    }

    .form-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(26, 95, 79, 0.4);
    }

    .form-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        box-shadow: 0 4px 15px rgba(26, 95, 79, 0.2);
    }

        .form-submit:disabled::before {
            display: none;
        }

/* Indicador de envío */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

    .form-status.success {
        background: rgba(6, 214, 160, 0.1);
        color: var(--success-color);
        border: 1px solid rgba(6, 214, 160, 0.3);
    }

    .form-status.error {
        background: rgba(247, 37, 133, 0.1);
        color: var(--danger-color);
        border: 1px solid rgba(247, 37, 133, 0.3);
    }

    .form-status.loading {
        background: rgba(244, 162, 97, 0.1);
        color: var(--secondary-color);
        border: 1px solid rgba(244, 162, 97, 0.3);
    }

/* Efectos de cristal */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem;
        margin: 1rem;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .email-access {
        right: 10px;
        top: 80px;
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .metrics-panel {
        bottom: 10px;
        left: 10px;
        min-width: 250px;
        font-size: 0.8rem;
    }

    .metrics-toggle {
        bottom: 10px;
        left: 10px;
        width: 45px;
        height: 45px;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 4;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
}

.impact-preview {
    text-align: center;
    color: white;
}

    .impact-preview h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.impact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.impact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.impact-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Secciones principales */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Mision y Vision */
.mission-vision {
    background: var(--bg-secondary);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .mission-card::before, .vision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }

    .mission-card:hover, .vision-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Áreas de intervención */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .area-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }

    .area-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.area-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.area-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.area-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

    .area-link:hover {
        gap: 1rem;
    }

/* Estructura organizacional */
.structure-section {
    background: var(--bg-secondary);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.structure-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
}

    .structure-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }

.structure-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.structure-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.structure-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Valores */
.values-section {
    background: var(--gradient-secondary);
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .value-card:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
    }

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-text {
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-section ul li a:hover {
                color: white;
            }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
    }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

.pulse-animation {
    animation: pulse 2s infinite;
}