@import url(../css/clash-display.css);

:root {
    --c-dark: #212529;
    --c-shadow:#9E9E9E;
    --c-background-color: #F9F9F9;
    --c-boxes:#DFCEAE;
    --c-buttons:#F4F2F2;
    --c-donate:#FFD1DC;
    --c-donateheavy: #FF8BA7;
    --c-dntext: #FE2C55;
    --c-font-base:"ClashDisplay",sans-serif;
    --transition: all 0.5s ease;
}

body{
    font-family: var(--c-font-base);
    line-height: 1.7;
    color: var(--c-background-color);
    padding-top: 120px;
}

h1,h2,h3,h4,h5,h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-weight: 600;
}

a{
    text-decoration: none;
    transition: var(--transition);
}

img{
    max-width:100% ;
    height:auto;
}

.section_padding{
    padding-top: 140px;
    padding-bottom: 140px;
}

/*NAVBAR*/
.navbar{
    box-shadow: var(--c-shadow) ;
}

/*BTN Navbar*/
.btn{
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 10px 24px;
    margin-right: 10px;
}

.btn-donate{
    background-color: var(--c-donate);
    color:#FE2C55;
}

.btn-donate:hover{
    background-color: var(--c-donateheavy) ;
}

/* Video Section - TÉCNICA CORRECTA DE ASPECT RATIO */
#video {
    width: 100%;
    margin: 0 auto 60px auto;
    padding: 0;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 1365px;
    height: 504px;
    max-width: 100%;
    overflow: hidden;
    background-color: #000;
}

#video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#video .video-text {
    position: static;
    color: #000000 !important;
    margin: 20px 0 0 0;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0 20px;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    line-height: 1.4;
    text-shadow: none;
    text-align: center;
    font-family: var(--c-font-base);
    max-width: 1365px;
    display: block;
    opacity: 1;
}

/* Community Section - CON SEPARACIÓN SUPERIOR */
.community-section {
    background: linear-gradient(135deg, #E8D5F2 0%, #D4C5F9 100%);
    padding: 80px 20px 60px 20px;
    margin-top: 0;
    position: relative;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.community-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: var(--c-font-base);
}

.community-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--c-dark);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 900px;
    font-family: var(--c-font-base);
    padding: 0 10px;
}

/* Mission Vision Values Section - MEJORADO RESPONSIVO */
.mvv-section {
    background-color: var(--c-background-color);
    padding: 60px 20px;
}

.mvv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mvv-item {
    background: linear-gradient(135deg, #E8D5F2 0%, #D4C5F9 100%);
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content:center;
}

.mvv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mvv-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: 15px;
    font-family: var(--c-font-base);
}

.mvv-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--c-dark);
    line-height: 1.6;
    font-family: var(--c-font-base);
    flex-grow: 1;
    display: flex;
    align-items:center;
    text-align: justify;
}

/* Statistics Section */
.stats-section {
    background-color: var(--c-background-color);
    padding: 80px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 40px;
}

.stats-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: var(--c-font-base);
    line-height: 1;
}

.stats-item:nth-child(1) .stats-number {
    color: #FFB84D; /* Dorado para años */
}

.stats-item:nth-child(2) .stats-number {
    color: #4A90E2; /* Azul para voluntarios */
}

.stats-item:nth-child(3) .stats-number {
    color: #E85D75; /* Rosa/rojo para beneficiarios */
}

.stats-label {
    font-size: 1.2rem;
    color: var(--c-dark);
    font-weight: 500;
    font-family: var(--c-font-base);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-number {
        font-size: 3rem;
    }
}

/* Activities Section */
.activities-section {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
    padding: 80px 0;
    position: relative;
}

.activities-header {
    text-align: center;
    margin-bottom: 50px;
}

.activities-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: var(--c-font-base);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.activities-arrow {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

.activities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.activity-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-overlay {
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 40px 20px;
    display: block;
    text-align: left;
}

.activity-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--c-font-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    line-height: 1.2;
    margin: 0;
    z-index: 2;
}

.activity-card:hover .activity-title {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


.activity-description {
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: var(--c-font-base);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-description {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 1;
}

.activity-hover-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-top: 0px;
    padding-top: 0px;
}

.activity-card:hover .activity-hover-info {
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.hover-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFD93D;
    font-family: var(--c-font-base);
}

.hover-info-text {
    font-size: 0.95rem;
    line-height: 1.4;
    font-family: var(--c-font-base);
}

/* Background images for cards */
.activity-card:nth-child(1) {
    background-image: url('../images/Act-fisica.jpg');
}

.activity-card:nth-child(2) {
    background-image: url('../images/Artes_manualidades.jpg');
}

.activity-card:nth-child(3) {
    background-image: url('../images/Computo.jpg');
}

.activity-card:nth-child(4) {
    background-image: url('../images/Finanzas.jpg');
}

/* Responsive */
@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activities-title {
        font-size: 2.5rem;
    }
    
    .activity-card {
        height: 250px;
    }
    
    /* Ajuste de fuente en móvil para mejor legibilidad */
    .activity-title {
        font-size: 1rem;
    }
    
    .activity-card:hover .activity-title {
        font-size: 1.2rem;
    }
    
    .activity-card:nth-child(1) .activity-title {
        font-size: 0.9rem;
    }
    
    .activity-card:nth-child(1):hover .activity-title {
        font-size: 1.1rem;
    }
}

.activities-section {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
    padding: 80px 0;
    position: relative;
    border-radius: 25px; /* Esquinas redondeadas */
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px; /* Espacio hacia abajo */
}

/* Talleres Protegidos Section */
/* Talleres Protegidos Section */
.talleres-section {
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
    padding: 80px 0;
    position: relative;
}

.talleres-header {
    text-align: center;
    margin-bottom: 50px;
}

.talleres-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: var(--c-font-base);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.talleres-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.talleres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.taller-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.taller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.taller-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
    transition: all 0.3s ease;
}

.taller-card:hover .taller-overlay {
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.taller-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--c-font-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    line-height: 1.2;
    
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 20px;
}

.taller-card:hover .taller-title {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.taller-description {
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: var(--c-font-base);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.taller-card:hover .taller-description {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 1;
}

.taller-hover-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-top: 0px;
    padding-top: 0px;

}

.taller-card:hover .taller-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.taller-hover-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #81D4FA;
    font-family: var(--c-font-base);
}

.taller-hover-info-text {
    font-size: 0.95rem;
    line-height: 1.4;
    font-family: var(--c-font-base);
}

/* Background images for talleres cards */
.taller-card:nth-child(1) {
    background-image: url('../images/Huerto.jpg');
}

.taller-card:nth-child(2) {
    background-image: url('../images/Cosmetica.jpg');
}

.taller-card:nth-child(3) {
    background-image: url('../images/Cocina.jpg');
}

/* Responsive */
@media (max-width: 1200px) {
    .talleres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .talleres-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .talleres-title {
        font-size: 2.5rem;
    }
    
    .taller-card {
        height: 280px;
    }
    
    .taller-title {
        font-size: 1.1rem;
    }
    
    .taller-card:hover .taller-title {
        font-size: 1.3rem;
    }
}
/* Espacio entre secciones */
.talleres-section {
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
    padding: 80px 0;
    position: relative;
    margin-top: 40px; /* Espacio arriba de la sección azul */
}

.talleres-section {
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
    padding: 80px 0;
    position: relative;
    margin-top: 40px;
    border-radius: 25px; /* Esquinas redondeadas */
    margin-left: 20px;   /* Margen para que no toque los bordes */
    margin-right: 20px;  /* Margen para que no toque los bordes */
}
/* Programas Section - Una sola fila */
.programas-section {
    background: linear-gradient(135deg, #E1BEE7 0%, #D1C4E9 100%);
    padding: 60px 20px;
    position: relative;
    margin-top: 40px;
    border-radius: 25px;
    margin-left: 20px;
    margin-right: 20px;
}

.programas-header {
    text-align: center;
    margin-bottom: 40px;
}

.programas-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: var(--c-font-base);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

/* CONTENEDOR DEL CARRUSEL */
.programas-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.programas-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    width: 100%;
    min-height: 330px; /*Aumenta la altura*/
  }
  
  .programas-grid {
    display: flex;
    gap: 15px;
    padding: 10px;
    min-width: max-content;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    transition: transform 0.5s ease;

  }  

  .programa-item {
    position: relative;
    height: 250px;
    width: 250px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-attachment: scroll;
    will-change: transform;
  }

  .programa-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
  

.programa-item:hover {
    transform: scale(1); /* Más grande que antes */
    z-index: 100; /* Aparece encima de las otras */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); /* Sombra más pronunciada */
}

.programa-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 10px 8px 8px;
    color: white;
    transition: all 0.3s ease;
}

.programa-item:hover .programa-overlay {
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 15px 8px;
}

.programa-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    font-family: var(--c-font-base);
    line-height: 1.2;
    margin: 0;
    transition: all 0.3s ease;
        
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 20px;
}

.programa-item:hover .programa-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.programa-description {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-size: 0.8rem;
    line-height: 1.3;
    font-family: var(--c-font-base);
    text-align: center;
}

.programa-item:hover .programa-description {
    opacity: 1;
    transform: translateY(0);
}

/* Background images for each program */
.programa-item:nth-child(1) {
    background-image: url('../images/Inclusion_Laboral.jpg');
}

.programa-item:nth-child(2) {
    background-image: url('../images/Vida_Independiente.jpg');
}

.programa-item:nth-child(3) {
    background-image: url('../images/Integracion_social.jpg');
}

.programa-item:nth-child(4) {
    background-image: url('../images/Excursiones.jpg');
}

.programa-item:nth-child(5) {
    background-image: url('../images/Cultura.jpg');
}

.programa-item:nth-child(6) {
    background-image: url('../images/Deporte.jpg');
}

.programa-item:nth-child(7) {
    background-image: url('../images/Danza.jpg');
}

.programa-item:nth-child(8) {
    background-image: url('../images/Talleres_conferencias.jpg');
}
/* BOTONES DE NAVEGACIÓN DEL CARRUSEL - AGREGAR AL FINAL */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 200;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-left {
    left: -25px;
}

.carousel-btn-right {
    right: -25px;
}
/* Responsive Design */
@media (max-width: 1400px) {
    .programas-container {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .programas-grid {
        justify-content: flex-start;
        padding-bottom: 20px;
    }
    
    .programas-title {
        font-size: 2.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn-left {
        left: -20px;
    }

    .carousel-btn-right {
        right: -20px;
    }


}


/* Somos el Cambio Section */
.somos-cambio-section {
    background-color: var(--c-background-color);
    padding: 80px 0;
    position: relative;
}

.somos-cambio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.somos-cambio-content {
    flex: 1;
    text-align: center;
}

.somos-cambio-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.somos-cambio-subtitle {
    font-size: 1.2rem;
    color: var(--c-dark);
    font-family: var(--c-font-base);
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.8;
}

.somos-cambio-year {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--c-dark);
    font-family: var(--c-font-base);
    margin: 0;
}

.somos-cambio-video {
    flex: 1;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #81D4FA;
    font-family: var(--c-font-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-dimensions {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 30px;
}

.play-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(129, 212, 250, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(129, 212, 250, 1);
    transform: scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-real {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contacto Section */
.contacto-section {
    background-color: var(--c-background-color);
    padding: 80px 0;
    position: relative;
}

.contacto-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.redes-section h2,
.contacto-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--c-dark) !important;
    font-family: var(--c-font-base);
    margin-bottom: 40px;
}

.redes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.red-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: var(--c-dark) !important;
    font-family: var(--c-font-base);
    transition: transform 0.3s ease;
}

.red-item:hover {
    transform: translateX(10px);
}

.red-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.red-icon:hover {
    transform: scale(1.1);
}

.red-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.red-icon.email {
    color: #34495E;
    font-size: 1.5rem;
    font-weight: bold;
}

.contacto-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
    color: var(--c-dark) !important;
    font-family: var(--c-font-base);
    font-weight: 600;
}

.contacto-item:hover {
    transform: translateX(5px);
}

.contacto-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
}


.red-link,
.contacto-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--c-dark) !important;
    width: 100%;
}

.red-link:hover,
.contacto-link:hover {
    color: var(--c-dark) !important;
    text-decoration: none;
}

.red-link span,
.contacto-link span {
    color: var(--c-dark) !important;
}

.mapa-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.mapa-content {
    height: 400px;
    background: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapa-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #666;
    font-family: var(--c-font-base);
    font-size: 1.2rem;
}

.direccion-completa {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    font-family: var(--c-font-base);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.1rem;
}

.direccion-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* RESPONSIVE MEDIA QUERIES - TÉCNICA CORREGIDA */
@media (max-width: 1400px) {
    .video-container {
        width: 95%;
        height: auto;
        aspect-ratio: 1365 / 504; /* Proporción exacta original */
    }
    
    #video .video-text {
        max-width: 95%;
    }
    
    .programas-container {
        padding: 0 10px;
    }
}

@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .talleres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .redes-section h2,
    .contacto-info h2 {
        font-size: 2rem;
    }
    
    .somos-cambio-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .somos-cambio-logo {
        max-width: 300px;
    }

    .video-placeholder {
        height: 300px;
    }

    .video-title {
        font-size: 3rem;
    }
    
    .video-real {
        height: 300px;
    }
}

@media (max-width: 768px) {
    #video {
        margin-bottom: 40px;
    }
    
    .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9; /* Proporción 16:9 estándar para móviles */
    }

    #video .video-text {
        font-size: 1.2rem;
        margin: 15px 0 0 0;
        padding: 0 15px;
        text-align: center;
        max-width: 100%;
        color: #000000 !important;
    }

    .community-section {
        padding: 60px 15px 40px 15px;
    }

    .mvv-section {
        padding: 40px 15px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvv-item {
        min-height: 250px;
        padding: 30px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activities-title {
        font-size: 2.5rem;
    }
    
    .activity-card {
        height: 250px;
    }
    
    .activity-title {
        font-size: 1rem;
    }
    
    .activity-card:hover .activity-title {
        font-size: 1.2rem;
    }
    
    .activity-card:nth-child(1) .activity-title {
        font-size: 0.9rem;
    }
    
    .activity-card:nth-child(1):hover .activity-title {
        font-size: 1.1rem;
    }
    
    .talleres-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .talleres-title {
        font-size: 2.5rem;
    }
    
    .taller-card {
        height: 280px;
    }
    
    .taller-title {
        font-size: 1.1rem;
    }
    
    .taller-card:hover .taller-title {
        font-size: 1.3rem;
    }
    
    .programas-grid {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    .programas-title {
        font-size: 2.5rem;
    }
    
    .somos-cambio-logo {
        max-width: 250px;
    }

    .video-placeholder {
        height: 250px;
    }

    .video-title {
        font-size: 2.5rem;
    }

    .somos-cambio-year {
        font-size: 2rem;
    }
    
    .video-real {
        height: 250px;
    }
    
    .mapa-content {
        height: 300px;
    }

    .direccion-completa {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .location-icon {
        margin-right: 0;
    }

    .red-item,
    .contacto-item {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #video {
        margin-bottom: 30px;
    }
    
    .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9; /* Mantiene 16:9 en móviles pequeños */
    }

    #video .video-text {
        font-size: 1.1rem;
        margin: 12px 0 0 0;
        padding: 0 10px;
        line-height: 1.3;
        color: #000000 !important;
    }

    .community-title {
        margin-bottom: 20px;
    }

    .community-description {
        padding: 0 5px;
    }

    .mvv-item {
        min-height: 220px;
        padding: 25px 15px;
    }

    .mvv-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .mvv-icon img {
        width: 45px;
        height: 45px;
    }
}

/* Fallback para navegadores que no soporten aspect-ratio */
@supports not (aspect-ratio: 16/9) {
    @media (max-width: 768px) {
        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 usando padding-bottom */
        }
        
        #video video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    }
    
    @media (max-width: 1400px) {
        .video-container {
            position: relative;
            width: 95%;
            height: 0;
            padding-bottom: 36.92%; /* 1365:504 usando padding-bottom */
        }
    }
}

/* Mejora para video en dispositivos con orientación landscape */
@media (orientation: landscape) and (max-height: 600px) {
    .video-container {
        aspect-ratio: 16 / 9;
        max-height: 70vh;
    }

    #video .video-text {
        font-size: 1rem;
        margin: 10px 0 0 0;
        padding: 0 12px;
    }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .mvv-item {
        transition: none;
    }
    
    .mvv-item:hover {
        transform: none;
    }
    
    .stats-item {
        transition: none;
    }
    
    .stats-item:hover {
        transform: none;
    }
    
    .activity-card {
        transition: none;
    }
    
    .activity-card:hover {
        transform: none;
    }
    
    .taller-card {
        transition: none;
    }
    
    .taller-card:hover {
        transform: none;
    }
    
    .programa-item {
        transition: none;
    }
    
    .programa-item:hover {
        transform: none;
    }
}

.direccion-completa {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    font-family: var(--c-font-base);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.1rem;
}

.direccion-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1400px) {
    .video-container {
        width: 95%;
        height: calc(95vw * 0.369);
        max-height: 504px;
    }
    
    #video .video-text {
        max-width: 95%;
    }
    
    .programas-container {
        padding: 0 10px;
    }
}

@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .talleres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .redes-section h2,
    .contacto-info h2 {
        font-size: 2rem;
    }
    
    .somos-cambio-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .somos-cambio-logo {
        max-width: 300px;
    }

    .video-placeholder {
        height: 300px;
    }

    .video-title {
        font-size: 3rem;
    }
    
    .video-real {
        height: 300px;
    }
}

@media (max-width: 768px) {
    #video {
        margin-bottom: 40px;
    }
    
    .video-container {
        width: 100%;
        height: 56.25vw; /* Proporción 16:9 para móviles */
        min-height: 250px;
        max-height: 400px;
    }

    #video .video-text {
        font-size: 1.2rem;
        margin: 15px 0 0 0;
        padding: 0 15px;
        text-align: center;
        max-width: 100%;
        color: #000000 !important;
    }

    .community-section {
        padding: 60px 15px 40px 15px;
    }

    .mvv-section {
        padding: 40px 15px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvv-item {
        min-height: 250px;
        padding: 30px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activities-title {
        font-size: 2.5rem;
    }
    
    .activity-card {
        height: 250px;
    }
    
    .activity-title {
        font-size: 1rem;
    }
    
    .activity-card:hover .activity-title {
        font-size: 1.2rem;
    }
    
    .activity-card:nth-child(1) .activity-title {
        font-size: 0.9rem;
    }
    
    .activity-card:nth-child(1):hover .activity-title {
        font-size: 1.1rem;
    }
    
    .talleres-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .talleres-title {
        font-size: 2.5rem;
    }
    
    .taller-card {
        height: 280px;
    }
    
    .taller-title {
        font-size: 1.1rem;
    }
    
    .taller-card:hover .taller-title {
        font-size: 1.3rem;
    }
    
    .programas-grid {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    .programas-title {
        font-size: 2.5rem;
    }
    
    .somos-cambio-logo {
        max-width: 250px;
    }

    .video-placeholder {
        height: 250px;
    }

    .video-title {
        font-size: 2.5rem;
    }

    .somos-cambio-year {
        font-size: 2rem;
    }
    
    .video-real {
        height: 250px;
    }
    
    .mapa-content {
        height: 300px;
    }

    .direccion-completa {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .location-icon {
        margin-right: 0;
    }

    .red-item,
    .contacto-item {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #video {
        margin-bottom: 30px;
    }
    
    .video-container {
        width: 100%;
        height: 56.25vw; /* Proporción 16:9 para móviles pequeños */
        min-height: 200px;
        max-height: 300px;
    }

    #video .video-text {
        font-size: 1.1rem;
        margin: 12px 0 0 0;
        padding: 0 10px;
        line-height: 1.3;
        color: #000000 !important;
    }

    .community-title {
        margin-bottom: 20px;
    }

    .community-description {
        padding: 0 5px;
    }

    .mvv-item {
        min-height: 220px;
        padding: 25px 15px;
    }

    .mvv-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .mvv-icon img {
        width: 45px;
        height: 45px;
    }
}

/* Mejoras adicionales para navegadores modernos */
@supports (aspect-ratio: 16/9) {
    @media (max-width: 768px) {
        .video-container {
            aspect-ratio: 16/9;
            height: auto;
        }
    }
}

/* Mejora para video en dispositivos con orientación landscape */
@media (orientation: landscape) and (max-height: 600px) {
    .video-container {
        height: 70vh;
        min-height: 250px;
        max-height: 400px;
    }

    #video .video-text {
        font-size: 1rem;
        margin: 10px 0 0 0;
        padding: 0 12px;
    }
}

/* Fallback para navegadores que no soporten object-fit */
@supports not (object-fit: cover) {
    #video video {
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
    }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .mvv-item {
        transition: none;
    }
    
    .mvv-item:hover {
        transform: none;
    }
    
    .stats-item {
        transition: none;
    }
    
    .stats-item:hover {
        transform: none;
    }
    
    .activity-card {
        transition: none;
    }
    
    .activity-card:hover {
        transform: none;
    }
    
    .taller-card {
        transition: none;
    }
    
    .taller-card:hover {
        transform: none;
    }
    
    .programa-item {
        transition: none;
    }
    
    .programa-item:hover {
        transform: none;
    }
}  

/* ===== SECCIÓN ¿QUIÉNES SOMOS? ===== */
.quienes-somos-container {
    background: linear-gradient(135deg, #a8c8ec 0%, #7fb3d3 100%);
    padding: 40px 0;
    position: relative;
    border-radius: 25px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    
}

.quienes-somos-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.quienes-somos-container .main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.quienes-somos-container .description-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 50px;
    backdrop-filter: none;
}

.quienes-somos-container .description-text {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #000000;
    text-align: center;
    font-weight: 500;
    max-width: 1200px;
    margin: 0 auto;
}

.quienes-somos-container .circles-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.quienes-somos-container .circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.quienes-somos-container .circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.quienes-somos-container .circle:hover .circle-image {
    transform: scale(1.1);
}

.quienes-somos-container .circle:hover {
    transform: translateY(-10px);
}

/* Eliminar las nubes decorativas ya que ahora usamos imágenes reales */

.quienes-somos-container .circle.highlighted {
    /* Círculo del medio sin borde morado */
}

/* Responsive para ¿Quiénes Somos? */
@media (max-width: 768px) {
    .quienes-somos-container {
        padding: 60px 0;
        margin-left: 10px;
        margin-right: 10px;
    }

    .quienes-somos-container .main-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .quienes-somos-container .description-text {
        font-size: 1.4rem;
    }

    .quienes-somos-container .circles-container {
        gap: 20px;
    }

    .quienes-somos-container .circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .quienes-somos-container .main-title {
        font-size: 2.5rem;
    }

    .quienes-somos-container .description-text {
        font-size: 1.2rem;
    }

    .quienes-somos-container .circle {
        width: 120px;
        height: 120px;
    }
}

/* ===== SECCIÓN ¿QUÉ HACEMOS? ===== */
.que-hacemos-container {
    background: linear-gradient(135deg, #f4e4a6 0%, #e6d073 100%);
    padding: 40px 0px;
    position: relative;
    border-radius: 25px;
    margin-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;

}


.que-hacemos-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.que-hacemos-container .main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.que-hacemos-container .description-text {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #000000;
    text-align: center;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.que-hacemos-container .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.que-hacemos-container .main-image {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Responsive para ¿Qué Hacemos? */
@media (max-width: 768px) {
    .que-hacemos-container .main-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .que-hacemos-container .description-text {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .que-hacemos-container {
        padding: 60px 0;
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media (max-width: 480px) {
    .que-hacemos-container .main-title {
        font-size: 2.5rem;
    }

    .que-hacemos-container .description-text {
        font-size: 1.1rem;
    }
    
    .que-hacemos-container .main-image {
        max-width: 350px;
        width: 90%;
        height: auto;
        border-radius: 10px;
        margin-top: 20px;
    }
}
/* ===== SECCIÓN SOMOS EL CAMBIO ===== */
.somos-cambio-container {
    background: linear-gradient(135deg, #d4c5f9 0%, #b8a9e0 100%);
    padding: 80px 0;
    position: relative;
    border-radius: 25px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.somos-cambio-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.somos-cambio-container .main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.somos-cambio-container .description-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #000000;
    text-align: center;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.metodologia-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metodologia-icon {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.metodologia-icon:hover {
    transform: scale(1.1);
}

/* Colores específicos para cada icono */
.metodologia-item:nth-child(1) .metodologia-icon {
    background: #ffffff;
}

.metodologia-item:nth-child(2) .metodologia-icon {
    background: #ffffff;
}

.metodologia-item:nth-child(3) .metodologia-icon {
    background: #ffffff;
}

.metodologia-item:nth-child(4) .metodologia-icon {
    background: #ffffff;
}

.icon-image {
    width: 120%;
    height:120%;
    object-fit: contain;
}

.metodologia-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.metodologia-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #000000;
    font-weight: 500;
    max-width: 250px;
}

/* Responsive para Somos el Cambio */
@media (max-width: 1200px) {
    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .somos-cambio-container {
        padding: 60px 0;
        margin-left: 10px;
        margin-right: 10px;
    }

    .somos-cambio-container .main-title {
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .somos-cambio-container .description-text {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .metodologia-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .metodologia-icon {
        width: 100px;
        height: 100px;
    }

    .icon-image {
        width: 120px;
        height:120px;
    }
}

@media (max-width: 480px) {
    .somos-cambio-container .main-title {
        font-size: 2rem;
    }

    .somos-cambio-container .description-text {
        font-size: 1.1rem;
    }

    .metodologia-title {
        font-size: 1.3rem;
    }

    .metodologia-description {
        font-size: 1rem;
    }
}

/* ===== SECCIÓN FUNDADORAS ===== */

.fundadoras-section-container {
    background: linear-gradient(135deg, #a8c8ec 0%, #7fb3d3 100%);
    padding: 80px 0;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;´
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.fundadoras-section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
    display: flex;
    text-align: center;

}

.fundadoras-section-container .main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
 /*   .team-section {
        padding: 60px 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .team-member {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .team-member img {
        border-radius: 50%;
        width: 250px;
        height: 250px;
        object-fit: cover;
    }

    .team-member h5 {
        margin-top: 15px;
        margin-bottom: 5px;
        font-weight: bold;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
        color: #000000;
    }

    .team-member h6 {
        margin-bottom: 10px;
        font-size: 0.95rem;
        font-weight: normal;
        text-align: center;
        color: #000000;
    }

    .team-member p {
        margin: 0 auto 10px;
        color: #777;
        max-width: 90%;
        color: #000000;
        text-align: center;
    }
    */
/* Responsive para Fundadoras */
@media (max-width: 480px) {
    .fundadoras-section-container .main-title {
        font-size: 2rem;
    }
    .fundadoras-section-container{
        padding: 60px 0;
        margin-left: 10px;
        margin-right: 10px;
    }  
    
}

@media (max-width: 768px) {
    .fundadoras-section-container .main-title {
        font-size: 2rem;
    }
    .fundadoras-section-container{
        padding: 60px 0;
        margin-left: 10px;
        margin-right: 10px;
    }  
    
}

/* ===== SECCIÓN Avanzando Juntos ===== */
.avanzando-juntos-container {
    padding: 80px 0;
    background-color: #ffffff;
}

.avanzando-juntos-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.main-title {
    font-size: 4rem;
    font-weight: 600;
    color: #000000; /* Asegura que sea negro sólido */
    opacity: 1; /* Evita transparencia */
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.description-text {
    font-size: 1.6rem;
    color: #333333;
    opacity: 1;
}

.image-container .main-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .avanzando-juntos-container {
    padding: 40px 0;
  }

  .avanzando-juntos-content {
    padding: 0 15px;
  }

  .main-title {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  .description-text {
    font-size: 1.2rem;
  }

  .image-container .main-image {
    max-width: 100%;
    height: auto;
  }
}




/* ===== SECCIÓN Directoras ===== */
.directoras-section-container {
    background: #f5f0d8; /* Color amarillo suave del mockup */
    padding: 60px 0;
    position: relative;
    border-radius: 25px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.directoras-section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}

.directoras-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.directoras-section-container .main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 500; /* Reducir de 700 a 600 */
    color: #000000 !important;
    margin-bottom: 20px;
    letter-spacing: 3px;
    opacity: 1 !important;
}

/* Subtítulo centrado */
.directoras-section-container .sub-title,
.directoras-section-container h3 {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    font-weight: 400 !important; /* Reducir de 600 a 400 */
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto 50px auto !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
}

.team-section {
    padding: 60px 0;
}

/* Contenedor para las directoras */
.directoras-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
}
    
.directoras-section-container .main-title {
        font-size: 4rem !important;
        letter-spacing: 2px !important;
        font-weight: 600;
    }
    
.team-member {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 250px; /* Ancho fijo para consistencia */
    flex: 0 0 auto; /* No crecer ni encogerse */
}

/* Contenedor de imagen */
.team-member-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px auto; /* Centrar horizontalmente y reducir margen inferior */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fondo decorativo (si se usa) */
.team-member-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Imagen de perfil de la persona */
.team-member img {
    position: relative;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    z-index: 2;
    display: block;
    margin: 0 auto; /* Centrar la imagen */
}

/* Textos del equipo con override fuerte */
.directoras-section-container .team-member h5 {
    margin-top: 15px !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
    text-align: center !important;
    font-size: 1.5rem !important;
    color: #000000 !important;
    z-index: 3 !important;
    position: relative !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
    width: 100% !important;
}

.directoras-section-container .team-member h6 {
    margin-bottom: 10px !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    text-align: center !important;
    color: #000000 !important;
    z-index: 3 !important;
    position: relative !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
    width: 100% !important;
}

.directoras-section-container .team-member p {
    margin: 0 auto 10px !important;
    color: #000000 !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    z-index: 3 !important;
    position: relative !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
    width: 100% !important;
}

/* Override global para todos los elementos de texto en esta sección */
.directoras-section-container *,
.directoras-section-content * {
    color: #000000 !important;
    opacity: 1 !important;
}

/* OVERRIDE ESPECÍFICO PARA BOOTSTRAP - Poner al final */
.directoras-section-container h1,
.directoras-section-container h2,
.directoras-section-container h3,
.directoras-section-container h4,
.directoras-section-container h5,
.directoras-section-container h6,
.directoras-section-container p,
.directoras-section-container span,
.directoras-section-container div {
    color: #000000 !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Override específico para clases de Bootstrap */
.directoras-section-container .text-muted,
.directoras-section-container .text-secondary,
.directoras-section-container .text-light {
    color: #000000 !important;
    opacity: 1 !important;
}

/* Selector de máxima especificidad - último recurso */
section.directoras-section-container div.directoras-section-content h3.sub-title {
    color: #000000 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

/* Responsive para Directoras */
@media (max-width: 768px) {
    .directoras-container {
        flex-direction: column;
        gap: 40px;
        max-width: 300px;
    }
    
    .team-member {
        width: 200px;
    }
    
    .team-member-image-container {
        width: 160px;
        height: 160px;
    }
    
    .team-member img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .directoras-section-container .main-title {
        font-size: 2.5rem !important;
        letter-spacing: 2px !important;
        font-weight: 600;
    }
    
    .directoras-section-container {
        padding: 40px 0;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .directoras-section-container .sub-title,
    .directoras-section-container h3 {
        font-size: 1rem !important;
        padding: 0 20px !important;
    }
    
    .directoras-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* ===== SECCIÓN COORDINADORAS ===== */
.coordinadoras-section-container {
    background: linear-gradient(135deg, #a8c8ec 0%, #7fb3d3 100%);
    padding: 60px 0;
    position: relative;
    border-radius: 25px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.coordinadoras-section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coordinadoras-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.coordinadoras-section-container .main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: #000000; !important;
    margin-bottom: 20px;
    letter-spacing: 3px;
    opacity: 1 !important;
}

/* Subtítulo centrado */
.coordinadoras-section-container .sub-title,
.coordinadoras-section-container h3 {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: #000000; !important;
    font-weight: 400 !important;
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto 50px auto !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Contenedor para las coordinadoras */
.coordinadoras-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.coordinadora-member {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 250px;
    flex: 0 0 auto;
}

/* Contenedor de imagen sin fondo decorativo */
.coordinadora-member-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen de la coordinadora */
.coordinadora-member img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 50%; /* Hacer la imagen circular */
}

/* Textos con colores blancos */
.coordinadoras-section-container .coordinadora-member h5 {
    margin-top: 15px !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
    text-align: center !important;
    font-size: 1.5rem !important;
    color: #000000 !important;
    z-index: 3 !important;
    position: relative !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
    width: 100% !important;
}

.coordinadoras-section-container .coordinadora-member h6 {
    margin-bottom: 10px !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    text-align: center !important;
    color: #000000 !important;
    z-index: 3 !important;
    position: relative !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
    width: 100% !important;
}

.coordinadoras-section-container .coordinadora-member p {
    margin: 0 auto 10px !important;
    color: #000000 !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    z-index: 3 !important;
    position: relative !important;
    opacity: 1 !important;
    text-shadow: none !important;
    filter: none !important;
    width: 100% !important;
}

/* Override global para todos los elementos de texto en esta sección */
.coordinadoras-section-container *,
.coordinadoras-section-content * {
    color: #000000; !important;
    opacity: 1 !important;
}

/* Responsive para coordinadoras */
@media (max-width: 992px) {
    .coordinadoras-container {
        gap: 40px;
    }
    
    .coordinadora-member {
        width: 220px;
    }
    
    .coordinadora-member-container {
        width: 220px;
        height: 220px;
    }
    
    .coordinadora-member img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .coordinadoras-container {
        flex-direction: column;
        gap: 30px;
        max-width: 300px;
    }
    
    .coordinadora-member {
        width: 200px;
    }
    
    .coordinadora-member-container {
        width: 200px;
        height: 200px;
    }
    
    .coordinadora-member img {
        width: 200px;
        height: 200px;
    }
    
    .coordinadoras-section-container .main-title {
        font-size: 2rem;
        letter-spacing: 2px
        margin-bottom: 30px;
    }
    
    .coordinadoras-section-container {
        padding: 40px 0;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .coordinadoras-section-container .sub-title,
    .coordinadoras-section-container h3 {
        font-size: 1rem !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 480px){

    .coordinadoras-section-container .main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}
    

/* ===== SECCIÓN Profesores ===== */
.profesores-section-container {
    background: linear-gradient(135deg, #a8c8ec 0%, #7fb3d3 100%);
    padding: 80px 0;
    position: relative;
    border-radius: 25px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.profesores-section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.profesores-section-container .main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

/* Contenedor de profesores con flexbox para mejor centrado */
.profesores-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
}

.profesor-card {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 250px; /* Ancho fijo pero flexible */
    max-width: 280px;
}

.profesor-card img {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.profesor-card img:hover {
    transform: scale(1.05);
}

.profesor-card h5 {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.profesor-card h6 {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profesor-card p {
    margin: 0;
    color: #34495e;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.4;
    padding: 0 10px;
}

/* Responsive para Profesores */
@media (max-width: 768px) {
    .profesores-grid {
        gap: 20px;
    }
    
    .profesor-card {
        flex: 0 1 100%;
        max-width: 300px;
    }
    
    .profesor-card img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .profesores-section-container .main-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .profesores-section-container {
        padding: 60px 0;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .profesor-card img {
        width: 160px;
        height: 160px;
    }
    
    .profesor-card h5 {
        font-size: 1.2rem;
    }
}


/*SECCIÓN DONAR*/
/* ===== SECCIÓN DONAR ===== */
.donar-ahora-container {
    background: linear-gradient(135deg, #a8c8ec 0%, #7fb3d3 100%);
    padding: 80px 0;
    position: relative;
    border-radius: 25px;
    margin: 0 20px 40px;
}

.donar-ahora-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; /* centrado del contenido */
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 30px;
    max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Botón de donar principal (ahora compatible con <a>) */
.donate-btn {
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
    color: #000000;
    text-decoration: none;
    border: none;
    padding: 25px 50px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.donate-btn::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;
    z-index: 0;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
}

.donate-btn > * {
    position: relative;
    z-index: 1;
}

/* ===== SECCIONES DE CONTENIDO ===== */
.content-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.section-title {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
    display: none;

}

/* ===== OTRAS FORMAS DE AYUDAR ===== */
.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.help-card {
    background: linear-gradient(135deg, #E1BEE7 0%, #D1C4E9 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.help-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.help-description {
    font-size: 1rem;
    opacity: 0.9;
    color: #000000;
}

/* ===== CUENTAS BANCARIAS ===== */
.bank-accounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    color: #000000;
    
}

.bank-card {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.bank-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
}

.account-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
    color: #000000;
    backdrop-filter: blur(5px);
}

.account-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.account-number {
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    user-select: all;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: #000000;
}

.account-number:hover {
    background: rgba(255, 255, 255, 0.1);
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    color: black;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== INFORMACIÓN ADICIONAL ===== */
.info-box {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.info-box h4 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box p {
    color: #000000;
    font-size: 0.95rem;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .hero-section,
    .content-section {
        padding: 25px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .donate-btn {
        padding: 20px 35px;
        font-size: 1.2rem;
    }

    .hero-image {
        height: 250px;
    }

    .bank-accounts {
        grid-template-columns: 1fr;
    }
}

/* ===== TESTIMONIOS ===== */

.testimonios-container {
  background: linear-gradient(135deg, #E1BEE7 0%, #D1C4E9 100%);
  padding: 40px 20px;
  position: relative;
  border-radius: 25px;
  margin: 0 20px;
  margin-bottom: 60px;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-title {
  font-size: 4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-clip: text;
}

.testimonial-subtitle {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 500;
}

/* ===== Cards de testimonios en grid ===== */

.testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.testimonial {
  background: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(102, 126, 234, 0.3);
  font-family: Georgia, serif;
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  line-height: 1;
  text-align: center;
  z-index: 1;
}

.avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  z-index: 0;
}

.avatar-c {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.avatar-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.avatar-img:hover {
  transform: scale(1.05);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 15px;
  font-style: italic;
  margin-top: 0;
}

.testimonial-author {
  font-weight: 600;
  color: #e74c3c;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.testimonial.con-inicial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(102, 126, 234, 0.3);
  font-family: Georgia, serif;
}

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 2rem;
  }

  .testimonios-container {
    padding: 40px 10px;
    margin: 40px auto;
  }

  .testimonial {
    padding: 20px;
  }

  .avatar {
    margin: 0 auto 15px;
  }

  .testimonial::before {
    top: 0;
    left: 10px;
    font-size: 3rem;
  }
}

/* ===============================================
   ESTILOS PARA SECCIÓN SÚMATE AL CAMBIO
   =============================================== */

.sumate-header {
    background-color: #c8a9db;
    color: #333;
    padding: 60px 0;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
}

.sumate-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

.sumate-subtitle {
    font-size: 1.3em;
    opacity: 0.8;
}

.intro-section {
    background: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.intro-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

.colaboracion-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.colaboracion-card.morado {
    border-top: 8px solid #c8a9db;
}

.colaboracion-card.verde {
    border-top: 8px solid #b8d4c8;
}

.colaboracion-card.azul {
    border-top: 8px solid #a8c5e8;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
}

.card-icon.morado {
    background-color: #c8a9db;
}

.card-icon.verde {
    background-color: #b8d4c8;
}

.card-icon.azul {
    background-color: #a8c5e8;
}

.colaboracion-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-weight: bold;
}

.colaboracion-description {
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.contact-section-sumate {
    background-color: #c8a9db;
    color: #333;
    padding: 60px 0;
    text-align: center;
    border-radius: 30px;
    margin: 40px 0;
}

.contact-section-sumate h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-info-sumate {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-item-sumate {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.9);
    padding: 20px 30px;
    border-radius: 25px;
    transition: transform 0.3s ease;
    color: #333;
    text-decoration: none;
}

.contact-item-sumate:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #333;
}

.gallery-section {
    padding: 80px 0;
    background: white;
    border-radius: 30px;
    margin: 40px 0;
}

.gallery-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #333;
    font-weight: bold;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.testimonios-section {
    padding: 80px 0;
    background: white;
    border-radius: 30px;
    margin: 40px 0;
}

.testimonios-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.testimonios-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
}

.testimonio-card {
    color: white;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.testimonio-card.morado {
    background-color: #c8a9db;
}

.testimonio-card.verde {
    background-color: #b8d4c8;
}

.testimonio-card.azul {
    background-color: #a8c5e8;
}

.testimonio-card.amarillo {
    background-color: #f4e5a3;
    color: #333;
}

.testimonio-card:hover {
    transform: translateY(-5px);
}

.testimonio-card::before {
    content: '"';
    font-size: 4em;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonio-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonio-author {
    font-weight: bold;
    font-size: 1.1em;
}

.testimonio-role {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive para sección Súmate al Cambio */
@media (max-width: 768px) {
    .sumate-header h1 {
        font-size: 2em;
    }
    
    .contact-info-sumate {
        flex-direction: column;
        align-items: center;
    }
}
