
.about{
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, var(--color-principal), #1f0f05);
    color: var(--color-crema);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* HEADER CON LOGO */
.about-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* LOGO */
.about-logo{
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* TITULO PRINCIPAL */
.about-header h2{
    font-size: 22px;
    color: var(--color-dorado);
    margin: 0;
}

/* SUBTÍTULOS */
.about h2{
    font-size: 18px;
    color: var(--color-dorado);
    margin-top: 25px;
    margin-bottom: 10px;
}

/* TEXTO */
.about p{
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--color-crema);
    opacity: .95;
    margin-bottom: 15px;
}

/* IMÁGENES */
.about-img{
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,.15);
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    margin: 10px 0 15px;
    transition: .3s;
}

.about-img:hover{
    transform: scale(1.05);
    border-color: var(--color-dorado);
}

/* RESPONSIVE */
@media (max-width: 768px){

    .about{
        padding: 20px;
    }

    .about-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

    .about-logo{
        width: 100px;
        height: 100px;
    }

    .about-img{
        width: 140px;
        height: 140px;
        margin: 10px auto;
        display: block;
    }

    .about p{
        text-align: justify;
    }
}