/* ==========================================================================
   Estilos para la página Sobre Nosotros
   ========================================================================== */

.sobre-nosotros {
    padding: 3rem 0;
}

.sobre-nosotros .entry-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sobre-nosotros .entry-title {
    font-size: 4rem;
    color: var(--color-primary);
    font-family: var(--font-headings);
}

.sobre-nosotros .entry-content section {
    margin-bottom: 4rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 0.5rem;
}

.sobre-nosotros .entry-content h2 {
    font-size: 2.8rem;
    color: var(--color-dark-gray);
    font-family: var(--font-headings);
    margin-bottom: 1.5rem;
    text-align: center;
}

.sobre-nosotros .entry-content p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #555;
}

.sobre-nosotros .entry-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.sobre-nosotros .entry-content .llamada-accion {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sobre-nosotros .entry-title {
        font-size: 3.2rem;
    }

    .sobre-nosotros .entry-content h2 {
        font-size: 2.4rem;
    }

    .sobre-nosotros .entry-content p {
        font-size: 1.6rem;
    }
}