/* ================================================= */
/* ===== 7. SECCIÓN DE CONTENIDO (ÁREAS) ===== */
/* ================================================= */

#areas {
    background-color: var(--color-blanco-puro); /* Fondo blanco */
    border-bottom: 1px solid #eee;
}


.area-item {
    display: flex;
    align-items: flex-start; 
    text-align: left;
    gap: 30px; 
    max-width: 900px; 
    margin: 40px auto 0; 
}

.area-icon {
    font-size: 3.5rem;
    color: var(--color-dorado-acento);
    padding-top: 10px;
    width: 60px; 
    text-align: center;
}

.area-text {
    flex: 1; 
}

.area-text h3 {
    font-size: 2rem;
    color: var(--color-gris-menu);
    margin-top: 0;
    margin-bottom: 15px;
}

.area-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.area-text ul {
    list-style: none;
    padding-left: 0;
}

.area-text ul li {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
}

.area-text ul li::before {
    content: '\f058'; /* Icono de check-circle de Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900; 
    color: var(--color-dorado-acento);
    position: absolute;
    left: 0;
    top: 5px;
}