/* Estilos para la página de organización */

/* Estilos generales de sección */
.organizacion-section {
    width: 100%;
    padding: 6rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-align: center;
}

.organizacion-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero section */
.organizacion-hero {
    width: 100%;
    padding: 10rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: var(--primary-color);
    background-image: var(--gradient-primary);
    color: white;
    margin-bottom: -4rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.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;
    background-color: black;
    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 {
    padding: 10rem 2rem 8rem;
    margin-bottom: -4rem;
    position: relative;
    z-index: 2;
}

.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;
}

/* Sección de partners */
.partners-section {
    padding: 6rem 2rem 4rem;
    background-color: var(--dark-bg-light);
    text-align: center;
    padding-bottom: 12rem;
    margin-bottom: -8rem;
    clip-path: polygon(0 0, 100% 4rem, 100% 100%, 0 100%);
}

.partners-titulo {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.logo-imagen {
    max-width: 100%;
    border-radius: 15px;
    height: 130px;
    object-fit: contain;
}


/* Sección de contacto */
.contacto-section {
    padding: 8rem 2rem 6rem;
    background-image: var(--gradient-accent);
    color: var(--light-text);
    position: relative;
    text-align: center;
    z-index: 1;
    clip-path: polygon(0 4rem, 100% 0, 100% 100%, 0% 100%);
}

.contacto-titulo {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contacto-texto {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.redes-sociales {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.red-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.5rem;
    background-color: white;
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.red-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.red-icono {
    font-size: 1.2rem;
}

/* Media queries para responsive */
@media (max-width: 768px) {
    .organizacion-hero {
        padding: 4rem 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    }
    
    .organizacion-nombre {
        font-size: 2.5rem;
    }
    
    .organizacion-lema {
        font-size: 1.2rem;
    }
    
    .historia-section {
        padding: 6rem 1rem 6rem;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        margin-bottom: -2rem;
    }
    
    .contacto-section {
        padding: 5rem 1rem 4rem;
        clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
    }
    
    .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;
    }
}