/* Estilos para la página de organización */

/* Estilos generales de sección */
.organizacion-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.organizacion-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero section */
.organizacion-hero {   
    display: flex;
    justify-content: center;
    background: var(--color-4);
    color: var(--color-1);
    clip-path: polygon(0 0, 100% 0, 100% 100% , 0% calc(100% - 3vw));
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    flex-direction: row;
    display: flex;
}

.hero-text {
    margin-left: 2rem;
    text-align: left;
}

.hero-imagen {
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 250px;
    height: 250px;
    margin-bottom: 1.5rem;
}

.organizacion-nombre {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.organizacion-lema {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.organizacion-descripcion {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Sección de historia */
.historia-section {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 0% 100%);
    z-index: 9;
}

.historia-titulo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.historia-texto {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.historia-texto p {
    text-wrap: pretty;
    margin-bottom: 1.5rem;
}

/* Sección de partners */
.partners-section {
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 100% , 0% calc(100% - 3vw));
    position: relative;
    z-index: 8;
}

.partners-titulo {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner-logo {
    display: inline-block;
    transition: transform 0.3s ease;
    max-width: min(100%, 500px);
}

.partner-logo:hover {
    transform: scale(1.05);
}

.logo-imagen {
    max-width: min(100%, 500px);
    border-radius: 15px;
    height: 130px;
    object-fit: contain;
}


/* Media queries para responsive */
@media (max-width: 768px) {
    
    .organizacion-nombre {
        font-size: 2.5rem;
    }
    
    .organizacion-lema {
        font-size: 1.2rem;
    }
    
    .redes-sociales {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text {
        margin-left: 0;
        text-align: center;
    }
    
    .hero-imagen {
        width: 200px;
        height: 200px;
    }
}