/* =========================
   SOBRE — CSS DEDICADO
========================= */


/* =========================
   HERO
========================= */

.sobre-hero {
    position: relative;

    height: 100svh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background-color: var(--castanho);
}


.sobre-hero-bg-image {
    position: absolute;

    inset: 0;

    background-image: url('/static/imagens/colecaoprincipal.png');

    background-size: cover;

    background-position: center 30%;

    opacity: 0.18;

    transform: scale(1.04);

    transition: transform 6s ease;
}


.sobre-hero:hover .sobre-hero-bg-image {
    transform: scale(1);
}


.sobre-hero-content {
    position: relative;

    z-index: 2;

    max-width: 680px;

    padding: 0 24px;

    text-align: center;
}


.sobre-hero-eyebrow {
    display: block;

    margin-bottom: 28px;

    color: var(--creme-escuro);

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 7px;

    opacity: 0.7;
}


.sobre-hero-content h1 {
    margin-bottom: 32px;

    color: var(--creme);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(52px, 10vw, 100px);

    font-weight: 400;

    line-height: 0.95;
}


.sobre-hero-tagline {
    color: var(--creme-escuro);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(17px, 2.5vw, 22px);

    font-weight: 400;

    line-height: 1.6;

    opacity: 0.85;
}


.sobre-hero-divider {
    width: 1px;

    height: 56px;

    margin: 40px auto 0;

    background-color: var(--creme-escuro);

    opacity: 0.35;
}


/* =========================
   CONTEÚDO GERAL
========================= */

.sobre-poem {
    max-width: 680px;

    margin: 0 auto;

    padding: 100px 32px 120px;
}


/* =========================
   LABELS
========================= */

.poema-label {
    display: block;

    margin-bottom: 28px;

    color: var(--castanho);

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 6px;

    opacity: 0.45;
}


/* =========================
   TÍTULOS
========================= */

.poema-titulo {
    margin-bottom: 28px;

    color: var(--castanho);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(28px, 4vw, 40px);

    font-weight: 400;

    line-height: 1.2;
}


/* =========================
   TEXTO
========================= */

.poema-corpo,
.sobre-texto-seguido p,
.poema-manifesto p {
    color: var(--castanho);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(19px, 2.2vw, 23px);

    font-weight: 400;

    line-height: 1.85;
}


.poema-corpo p {
    margin-bottom: 24px;
}


.poema-corpo p:last-child {
    margin-bottom: 0;
}


/* =========================
   PRIMEIRA SECÇÃO
   TEXTO + IMAGEM
========================= */

.poema-estrofe--com-imagem {
    width: min(1200px, calc(100vw - 80px));

    max-width: 1200px;

    margin-left: 50%;

    transform: translateX(-50%);

    display: grid;

    grid-template-columns: minmax(0, 1fr) 420px;

    align-items: center;

    gap: 80px;
}


.poema-estrofe-texto {
    text-align: left;
}


.poema-estrofe-imagem {
    width: 100%;

    overflow: hidden;
}


.poema-estrofe-imagem img {
    display: block;

    width: 100%;

    height: 560px;

    object-fit: cover;
}


/* =========================
   SEPARADOR
========================= */

.poema-separador {
    width: 40px;

    height: 1px;

    margin: 80px auto;

    border: none;

    background-color: var(--castanho);

    opacity: 0.2;
}


/* =========================
   TEXTO CORRIDO
========================= */

.sobre-texto-seguido {
    width: 100%;
}


.sobre-texto-bloco {
    margin-bottom: 60px;
}


.sobre-texto-bloco:last-child {
    margin-bottom: 0;
}


.sobre-texto-bloco .poema-titulo {
    margin-bottom: 22px;
}


.sobre-texto-bloco p {
    margin-bottom: 24px;
}


.sobre-texto-bloco p:last-child {
    margin-bottom: 0;
}


/* =========================
   MANIFESTO FINAL
========================= */

.poema-manifesto {
    margin-top: 90px;

    padding-top: 65px;

    border-top: 1px solid var(--creme-escuro);

    text-align: center;
}


.poema-manifesto p {
    margin-bottom: 24px;
}


.poema-manifesto p:last-of-type {
    margin-bottom: 0;
}


.poema-manifesto-assinatura {
    display: block;

    margin-top: 48px;

    color: var(--castanho);

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 6px;

    opacity: 0.4;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 800px) {

    .poema-estrofe--com-imagem {
        width: 100%;

        margin-left: 0;

        transform: none;

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .poema-estrofe-imagem img {
        height: 400px;
    }

}


@media (max-width: 600px) {

    .sobre-poem {
        padding: 72px 24px 96px;
    }


    .sobre-hero-content h1 {
        font-size: 58px;
    }


    .sobre-hero-tagline {
        font-size: 18px;
    }


    .poema-estrofe-imagem img {
        height: 360px;
    }


    .poema-separador {
        margin: 60px auto;
    }


    .sobre-texto-bloco {
        margin-bottom: 50px;
    }


    .poema-manifesto {
        margin-top: 70px;

        padding-top: 50px;
    }

}