/* ========================================
   QUEM É
======================================== */

.quem-e {
    position: relative;
    z-index: 5;

    margin-top: -80px;
    padding: 110px 0 0px;

    background: #050505;

    clip-path: polygon(
        0 4%,
        7% 2%,
        14% 5%,
        22% 1%,
        31% 4%,
        40% 2%,
        49% 5%,
        58% 1%,
        67% 4%,
        76% 2%,
        85% 5%,
        93% 2%,
        100% 3%,
        100% 100%,
        0 100%
    );
}

.quem-e::before {
    content: "";
    position: absolute;

    inset: 0;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.012 .055' numOctaves='4' seed='18'/%3E%3CfeColorMatrix values='1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 .7 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' fill='white' opacity='.35'/%3E%3C/svg%3E");

    background-size: 650px 650px;
    background-repeat: repeat;

    opacity: 0.16;

    pointer-events: none;

    z-index: 0;
}


/* ========================================
   CONTEÚDO
======================================== */

.quem-e-content {
    position: relative;
    z-index: 2;

    width: min(1450px, 90%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 48% 52%;

    gap: 40px;

    align-items: center;
}


/* ========================================
   TEXTO
======================================== */

.quem-e-text {
      color: #fff;

      padding-left: 100px;

      display: flex;
      flex-direction: column;
      justify-content: center;

      transform: translateY(-30px);
  }

.section-label {
    display: block;

    margin-bottom: 10px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;

    color: #FFFFFF;
}

.quem-e h2 {
    margin: 0 0 35px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 0.78;
    text-transform: uppercase;
}

.quem-e h2 .paloma {
    color: #FFD400;
}

.quem-e h2 .nadal {
    color: #FFFFFF;
}

.quem-e p {
    max-width: 580px;

    margin: 0 0 22px;

    font-family: "Barlow", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}


/* ========================================
   IMAGEM
======================================== */

.quem-e-image {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;

    align-self: end;
}


.quem-e-image img {
    display: block;

    width: 100%;
    max-width: 700px;
    height: auto;

    margin-bottom: 0;

    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}



/* ========================================
   QUEM É — MOBILE
======================================== */

@media (max-width: 800px) {

    .quem-e {
        margin-top: -40px;
        padding: 90px 0 0;
    }

    .quem-e-content {
        width: 88%;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: flex-start;

        gap: 35px;
    }


    /* ========================================
       TEXTO
    ======================================== */

    .quem-e-text {
        width: 100%;

        padding-left: 0;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;

        transform: translateY(0);
    }

    .section-label {
        text-align: center;

        font-family: "Barlow Condensed", sans-serif;
        font-size: 24px;
        font-weight: 800;
        letter-spacing: 1px;

        margin-bottom: 12px;
    }

    .quem-e h2 {
        text-align: center;

        font-family: "Barlow Condensed", sans-serif;
        font-size: clamp(48px, 15vw, 68px);
        font-weight: 800;
        line-height: 0.85;
        white-space: nowrap;

        margin: 0 0 25px;
    }

    .quem-e p {
        width: 100%;
        max-width: 600px;

        text-align: center;

        font-size: 15px;
        line-height: 1.45;

        margin-bottom: 18px;
    }


    /* ========================================
       IMAGEM
    ======================================== */

    .quem-e-image {
        width: 100%;

        display: flex;
        align-items: flex-end;
        justify-content: center;

        align-self: center;

        margin-top: 0;
    }

    .quem-e-image img {
        display: block;

        width: 105%;
        max-width: 650px;

        height: auto;

        margin-bottom: 0;
    }

}
