/* === About Us Page (Option 2) Styles === */

/* Sección Introducción */
.about-intro-section {
    padding: 60px 0;
}

.about-intro-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.about-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5f5f5f;
}

.about-intro-content .check-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.about-intro-content .check-list li {
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #444;
}

.about-intro-content .check-list i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Sección de Estadísticas */
.stats-section {
    padding: 50px 0;
}

.stat-box {
    background-color: #ffffff;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Sección Sobre y Valores */
.about-values-section .section-title p {
    font-size: 1.1rem;
}

.value-item-op2 {
    text-align: center;
}

.value-item-op2 .value-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.value-item-op2:hover .value-icon {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.value-item-op2:hover .value-icon img {
    filter: brightness(0) invert(1);
}

.value-item-op2 .value-icon img {
    max-width: 90px;
    transition: filter 0.3s ease;
}

.value-item-op2 h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item-op2 p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Sección Historia */
.history-section {
    padding: 80px 0;
}

.history-section .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.history-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.wala-logo {
    max-width: 400px;
    /* opacity: 0.9; */
}

.final-phrase {
    font-style: italic;
    color: #555;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.final-welcome {
    font-weight: 600;
    color: var(--heading-color);
}

/* Clases de fondo reutilizables */
.light-background {
  background-color: #f8f9fa;
}