.about-page-body {
    background-color: #fff6ed; /* Var --bg-light */
    margin: 0;
    padding: 0;
}

/* --- BLOQUE 1: HERO CONFIG --- */
.leonora-hero-section {
    padding: 60px 5%;
    background-color: #fff6ed;
}

.leonora-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.leonora-hero-text {
    flex: 1.2;
}

.leonora-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #5d544b; /* --text-dark */
    margin-bottom: 30px;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.leonora-p-main {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5d544b;
    margin-bottom: 20px;
}

.leonora-p-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5d544b;
    opacity: 0.85;
}

.leonora-hero-image {
    flex: 0.8;
    width: 100%;
}

.leonora-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(233, 195, 158, 0.25);
}

/* --- BLOQUE 2: FRASE CENTRADA --- */
.leonora-quote-section {
    background-color: #ffffff;
    padding: 60px 10%;
    text-align: center;
    border-top: 1px solid #f3dbc3;
    border-bottom: 1px solid #f3dbc3;
}

.leonora-quote-container h3 {
    max-width: 950px;
    margin: 0 auto;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    color: #5d544b;
}

/* --- BLOQUE 3: VALORES (CARDS CUADRADAS) --- */
.leonora-values-section {
    padding: 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.values-main-title {
    font-size: 2rem;
    color: #5d544b;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-box-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(233, 195, 158, 0.15);
    text-align: left;
    border: 1px solid rgba(243, 219, 195, 0.5);
    transition: transform 0.3s ease;
}

.value-box-card:hover {
    transform: translateY(-5px);
}

.value-box-icon {
    font-size: 1.8rem;
    color: #e9c39e; /* --vibrant-color */
    margin-bottom: 20px;
}

.value-box-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5d544b;
    margin-bottom: 12px;
}

.value-box-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5d544b;
    opacity: 0.9;
    margin: 0;
}

/* --- ESTILO EXTRA PARA LA CÁPSULA EN INDEX --- */
.btn-acerca-capsula {
    border-color: #e9c39e !important;
    background-color: #fdecda !important; /* Resalta un poco sobre los otros */
    cursor: pointer;
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .leonora-hero-container {
        flex-direction: column;
        gap: 30px;
    }
    .leonora-title { font-size: 2.5rem; }
    .values-grid-container { grid-template-columns: 1fr; }
    .leonora-hero-image img { height: 300px; }
}