/* HEADER PRINCIPAL */
.nosotros-header {
    text-align: center;
    margin-bottom: 60px;
}

.nosotros-titulo {
    margin-top: 90px;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    color: #333;
}

.nosotros-linea {
    width: 30%;
    height: 3px;
    background-color: #333;
    margin: 10px auto;
    opacity: 34%;
}

/* SECCIÓN DE IMAGEN CON TEXTO */
.nosotros-section {
    background-image: url('imgs/quienes_somos.png'); /* Reemplaza por tu imagen real */
    background-size: cover;
    background-position: center;
    height: auto;
    min-height: 350px;
    position: relative;
    margin-bottom: 3rem;
}

.nosotros-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center; /* <<< CENTRA TODO EL TEXTO */
}

.nosotros-texto {
    max-width: 900px;
    font-size: 18px;
    line-height: 1.7;
    text-align: center; /* <<< TEXTO CENTRADO */
}

.nosotros-subtitulo {
    font-size: 30px;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.nosotros-linea-sub {
    width: 80px;
    height: 3px;
    background-color: #fff;
    opacity: 40%;
    margin: 10px auto 25px auto; /* Espaciado arriba, laterales y abajo */
}


/* Estilo para la sección de Visión y Misión */
/* Estilo para la sección de Misión */
.mision-section {
    background-image: url('imgs/mision.png'); /* Reemplaza con la imagen de fondo de Misión */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta la altura según lo necesites */
    position: relative;
    margin-bottom: 3rem; /* Espacio entre secciones */
}

.vision-section {
    background-image: url('imgs/vision.jpg'); /* Reemplaza con la imagen de fondo de Visión */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta la altura según lo necesites */
    position: relative;
    margin-bottom: 3rem; /* Espacio entre secciones */
}

/* Capa de overlay semi-transparente */
.overlay {
    background: rgba(0, 0, 0, 0.4); /* Capa negra semi-transparente */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* Centra el contenido */
    flex-direction: column;
    padding: 20px;
    color: white;
    text-align: center;
}

/* Estilo para los textos de Misión y Visión */
.titulo {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.decorador {
    width: 80px;
    height: 3px;
    background-color: white;
    margin: 0 auto;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.mision-section p, .vision-section p {
    font-size: 20px;
    text-align: justify;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.valores-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.valores-header {
    text-align: center;
    margin-bottom: 30px;
}

.valores-titulo {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.valores-linea {
    width: 50px;
    height: 3px;
    background-color: #333;
    margin: 10px auto;
    opacity: 50%;
}

.valores-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.valor-item {
    background-color: white;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    min-width: 250px;
    border-radius: 8px;
}

.valor-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.valor-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.valor-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.logo-container {
    text-align: center;
    margin-top: 40px;
}

.logo-container img {
    width: 100px;
    height: auto;
}

.seo-text {
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.seo-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.seo-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}


/* Responsividad */
@media (max-width: 1024px) {
    .titulo {
        font-size: 32px;
    }

    .mision p, .vision p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .titulo {
        font-size: 28px;
    }

    .mision p, .vision p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .titulo {
        font-size: 24px;
    }

    .mision p, .vision p {
        font-size: 14px;
    }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .nosotros-titulo {
        font-size: 36px;
    }

    .nosotros-subtitulo {
        font-size: 24px;
    }

    .nosotros-texto {
        font-size: 16px;
    }
}
