/* ==========================================================================
   Cultura Latitud — Seção Missão / Visão / Valores (Sobre)
   ========================================================================== */

.cultura {
    position: relative;
    /* padding-top: compensa o overlap do hero (var(--hero-clip-v)) + respiro compactado p/ 70% (fluido) */
    padding: calc(var(--hero-clip-v) + clamp(34px, 2.66vw, 51px)) 0 clamp(27px, 2.08vw, 40px);
    background-color: #FAFAFA;
    overflow: visible;             /* Permite watermark estourar pra cima */
    margin-top: calc(-1 * var(--hero-clip-v));  /* Sobrepõe o corte diagonal do hero (mesmo token) */
    z-index: 1;                    /* Atrás do hero (que recebe z-index: 2) */
    /* Corte diagonal nos DOIS cantos inferiores: o timeline escuro aparece pelos cantos */
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - var(--hero-clip-v)),
        calc(100% - var(--hero-clip-h)) 100%,
        var(--hero-clip-h) 100%,
        0 calc(100% - var(--hero-clip-v))
    );
}

/* Watermark decorativo — escala fluida com o viewport (>768) */
.cultura__watermark {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(290px, 40vw, 550px);
    height: clamp(265px, 40vw, 550px);
    background: url('../images/sobre-cultura-watermark.webp') no-repeat top right / contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.cultura__inner {
    position: relative;
    z-index: 1;
}

/* ===== Header ===== */

.cultura__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: clamp(19px, 1.46vw, 28px);
}

.cultura__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cultura__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: var(--fs-label);
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: #252B37;
}

.cultura__line {
    display: inline-block;
    width: 71px;
    height: 0;
    border-top: 1px solid var(--color-primary);
    flex-shrink: 0;
}

.cultura__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-section-lg);
    line-height: 1.19;
    color: #252B37;
}

.cultura__description {
    font-family: var(--font-text-alt);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.7;
    color: #414651;
    max-width: 760px;
}

/* ===== Items ===== */

.cultura__items {
    display: flex;
    flex-direction: column;
}

.cultura__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(12px, 0.94vw, 18px) 0;
    border-top: 1px solid #E9EAEB;
}

.cultura__item-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cultura__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 44px;
    background: #F5F5F5;
    border: 1px solid #155EEF;
    border-radius: 4px;
    flex-shrink: 0;
}

.cultura__item-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-body-lg);
    line-height: 1.3;
    color: #252B37;
    white-space: nowrap;
}

.cultura__item-text {
    font-family: var(--font-text-alt);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.7;
    color: #414651;
    max-width: 622px;
}

/* ===== Responsivo ===== */

@media (max-width: 768px) {
    .cultura__watermark {
        top: -10px;               /* Posição mobile fixa */
        width: 345px;
        height: 320px;
    }

    .cultura__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cultura__item-title {
        white-space: normal;
    }

    .cultura__item-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cultura__header {
        margin-bottom: var(--gap-sm);
    }

    .cultura__watermark {
        top: -10px;               /* Per feedback do usuário no view mobile */
        width: 290px;
        height: 265px;
    }
}
