/**
 * Wide Studio - Sobre Page Styles
 */

/* =================================
   LAYOUT (side-by-side desktop)
   ================================= */
.sobre-layout {
    padding: 160px var(--padding-x) 120px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* =================================
   TEXTO (left)
   ================================= */
.sobre-texto {
    flex: 1;
    min-width: 0;
    padding-top: 20px;
}

.sobre-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0 0 30px;
}

.sobre-manifesto {
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.6;
    max-width: 520px;
}

/* =================================
   FOTOS (right)
   ================================= */
.sobre-fotos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.sobre-carousel {
    position: relative;
    width: 380px;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
}

body[data-dark-mode="true"] .sobre-carousel {
    background: rgba(255, 255, 255, 0.04);
}

.carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.carousel-img.active {
    opacity: 1;
}

/* Caption */
.sobre-foto-legenda {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.4;
    text-align: center;
    margin: 0;
}

/* Dots */
.carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.carousel-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.2;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.carousel-dot.active {
    opacity: 0.55;
    transform: scale(1.3);
}

/* =================================
   RESPONSIVE
   ================================= */
@media (max-width: 900px) {
    .sobre-layout {
        flex-direction: column;
        padding: 120px var(--padding-x) 80px;
        gap: 50px;
    }

    .sobre-fotos {
        width: 100%;
        align-items: center;
    }

    .sobre-carousel {
        width: 100%;
        max-width: 440px;
        height: 460px;
    }
}
