/* sobre-nosotros.css - ESTILOS ESPECÍFICOS DE SOBRE NOSOTROS.HTML */

section {
    min-height: 100vh;
}

#quienes-somos {
    display: flex;
    align-items: center;
}

.image-container {
    height: 100vh;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    padding: 50px;
    border: 1px solid #e0e0e0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.text-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-green);
    text-transform: uppercase;
}

.text-container p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Sección Misión y Visión */
#mision-vision {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.mission-vision-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission, .vision {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.mission-image, .vision-image {
    height: 400px;
    overflow: hidden;
}

.mission-image img, .vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-content, .vision-content {
    padding: 30px 20px;
    background-color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mission-content h2, .vision-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
    text-align: center;
}

.mission-content p, .vision-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

#valores {
    padding: 80px 50px;
    background-color: #f8f9fa;
}

.valores-container {
    max-width: 1200px;
    margin: 0 auto;
}

.valor-item {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.valor-item:last-child {
    border-bottom: none;
}

.valor-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.valor-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.proposito {
    text-align: center;
    padding: 40px 30px;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
}

.proposito h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.proposito p {
    font-size: 1.1rem;
    line-height: 1.6;
}

footer {
    background-color: #f8f9fa;
    padding: 50px 0 0;
}

.footer-images {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-image-item {
    text-align: center;
    width: 30%;
}

.footer-image-item img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-links {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    background-color: #e9ecef;
}

.footer-links a {
    color: #013836;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #8d4c2c;
}

.legal {
    display: none;
}

/* Responsive específico para sobre-nosotros.html */
@media (max-width: 992px) {
    #quienes-somos {
        flex-direction: column;
    }
    
    .image-container, .text-container {
        height: auto;
        width: 100%;
    }
    
    .mission-vision-container {
        flex-direction: column;
    }
    
    .mission, .vision {
        width: 100%;
    }
    
    .mission-image, .vision-image {
        height: 350px;
    }
    
    .footer-images {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-image-item {
        width: 80%;
        margin-bottom: 30px;
    }
    
    .footer-links {
        padding: 15px;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    #valores {
        padding: 50px 20px;
    }
    
    .text-container {
        padding: 30px;
    }
    
    .text-container h1 {
        font-size: 2rem;
    }
    
    .mission-content, .vision-content {
        padding: 20px;
    }
    
    .mission-content h2, .vision-content h2 {
        font-size: 1.8rem;
    }
    
    .mission-image, .vision-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .valor-item {
        padding: 20px 0;
    }
    
    .text-container {
        padding: 20px;
    }
    
    .mission-content, .vision-content {
        padding: 15px;
    }
    
    .mission-image, .vision-image {
        height: 250px;
    }
}