/* ============================================
   SOBRE MIM - ESTILOS
   ============================================ */

/* ============================================
   DESKTOP (ORIGINAL)
   ============================================ */

.about-desktop {
    background: linear-gradient(to right, #2e1809, #2e200c);
    padding: 80px 0;
}

.about-desktop .small-label {
    color: #d6b88d;
}

.about-desktop .section-title {
    color: #d6b88d;
}

.about-description {
    color: #fff;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
}

.about-image-mobile {
    display: flex;
    justify-content: center;
}

.about-image-mobile img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 24px;
}

/* ============================================
   MOBILE (NOVO)
   ============================================ */

.about-mobile {
    background: linear-gradient(to right, #2e1809, #2e200c);
    padding: 50px 0;
}

.about-mobile .small-label {
    color: #d6b88d;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 800;
    text-align: center;
}

.section-title-mobile-about {
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-top: 12px;
}

.about-description-mobile {
    color: #fff;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 16px;
}

.about-image-mobile {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.about-image-mobile img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
}

/* ============================================
   RESPONSIVIDADE MOBILE EXTRA
   ============================================ */

@media (max-width: 480px) {
    .about-mobile {
        padding: 40px 0;
    }

    .section-title-mobile-about {
        font-size: 24px;
    }

    .about-description-mobile {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .about-image-mobile img {
        max-width: 220px;
        border-radius: 16px;
    }

    .about-mobile .small-label {
        font-size: 12px;
    }
}

/* ============================================
   CONTROLE DE EXIBIÇÃO
   ============================================ */

/* Mobile: mostra mobile, esconde desktop */
@media (max-width: 767px) {
    .about-desktop {
        display: none !important;
    }
    .about-mobile {
        display: block !important;
    }
}

/* Desktop: mostra desktop, esconde mobile */
@media (min-width: 768px) {
    .about-desktop {
        display: block !important;
    }
    .about-mobile {
        display: none !important;
    }
}