/* ==========================================================================
   SOBRE: SECÇÃO 2 - HISTÓRIA
   ========================================================================== */
.about-story-section {
    padding: clamp(48px, 6vw, 64px) 0;
    position: relative;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

/* Layout Desktop (Lado a Lado - Imagem à esquerda) */
@media (min-width: 992px) {
    .about-story-grid {
        /* 1fr para a imagem, 1.1fr para o texto */
        grid-template-columns: 1fr 1fr; 
        gap: clamp(48px, 6vw, 64px);
    }
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-story-content .section-eyebrow {
    font-family: var(--font-body);
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary-600);
}

.about-story-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 36px); /* Ligeiramente menor que o H1 */
    font-weight: 600;
    color: var(--color-neutral-900);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.about-story-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Espaço entre os dois parágrafos */
}

.about-story-text {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--color-neutral-700);
    line-height: 1.6;
    margin: 0;
}

/* Imagem */
.about-story-visual {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}

.about-story-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3; 
}