/* =========================================================
   LIBRIS MEMRA
   Seção de Alas, Avaliação e Autores
   ========================================================= */

   .lm-section {
    --lm-paper: #f4f0e7;
    --lm-paper-light: #faf8f2;
    --lm-paper-dark: #e8e1d4;

    --lm-ink: #242323;
    --lm-muted: #69665f;
    --lm-faint: #aaa49a;

    --lm-red: #9d2029;
    --lm-red-light: #b52b35;

    --lm-blue: #24588b;
    --lm-blue-light: #326fa8;

    --lm-border: rgba(36, 35, 35, 0.15);

    background: var(--lm-paper);
    color: var(--lm-ink);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow: hidden;
}


/* =========================================================
   ESTRUTURA
   ========================================================= */

.lm-container {
    width: min(1180px, calc(100% - 50px));
    margin-inline: auto;
}


/* =========================================================
   TIPOGRAFIA
   ========================================================= */

.lm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--lm-red);

    font-size: 0.67rem;
    font-weight: 750;

    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.lm-kicker::before {
    content: "";

    width: 26px;
    height: 1px;

    background: currentColor;
}

.lm-heading {
    max-width: 780px;

    padding-top: 115px;
    padding-bottom: 60px;
}

.lm-heading h2 {
    margin: 20px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -0.055em;
}

.lm-heading h2 em {
    color: var(--lm-red);

    font-style: normal;
}

.lm-heading p {
    max-width: 620px;

    color: var(--lm-muted);

    line-height: 1.75;
}


/* =========================================================
   HERO
   ========================================================= */

.lm-hero {
    min-height: 760px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(157, 32, 41, 0.08),
            transparent 35%
        ),
        var(--lm-paper-light);

    border-bottom: 1px solid var(--lm-border);
}

.lm-hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;

    padding: 100px 0;
}

.lm-hero-copy h2 {
    margin: 22px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(3.8rem, 7vw, 7.4rem);

    font-weight: 400;

    line-height: 0.88;

    letter-spacing: -0.065em;
}

.lm-hero-copy h2 em {
    color: var(--lm-red);

    font-style: normal;
}

.lm-hero-copy > p {
    max-width: 560px;

    margin: 30px 0;

    color: var(--lm-muted);

    font-size: 1.08rem;

    line-height: 1.8;
}

.lm-hero-actions {
    display: flex;

    align-items: center;

    gap: 24px;

    margin-top: 35px;
}


/* =========================================================
   HERO MOBILE — REORDENAÇÃO:
   título → quadro → texto → botões
   ========================================================= */

@media (max-width: 800px) {

    .lm-hero-grid {
        gap: 0;
    }

    .lm-hero-copy {
        display: contents;
    }

    .lm-hero-copy .lm-kicker { order: 1; }
    .lm-hero-copy h2        { order: 2; }
    .lm-hero-grid .lm-acervo-section__visual { order: 3; }
    .lm-hero-copy > p       { order: 4; }
    .lm-hero-actions        { order: 5; }
}


/* =========================================================
   BOTÕES
   ========================================================= */

.lm-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 23px;

    border: 1px solid transparent;

    text-decoration: none;

    font-size: 0.69rem;
    font-weight: 750;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.lm-button:hover {
    transform: translateY(-3px);
}

.lm-button-primary {
    background: var(--lm-red);

    color: #fff;
}

.lm-button-primary:hover {
    background: var(--lm-red-light);
}

.lm-button-outline {
    border-color: rgba(36, 35, 35, 0.25);

    color: var(--lm-ink);

    background: transparent;
}

.lm-button-outline:hover {
    border-color: var(--lm-red);

    color: var(--lm-red);
}

.lm-button-text {
    color: var(--lm-muted);
}

.lm-button-text:hover {
    color: var(--lm-red);
}


/* =========================================================
   HERO — ILUSTRAÇÃO DO LIVRO
   ========================================================= */

.lm-hero-art {
    position: relative;

    min-height: 500px;
}

.lm-paper-shadow {
    position: absolute;

    width: 390px;
    height: 310px;

    left: 50%;
    top: 52%;

    transform:
        translate(-50%, -50%)
        rotate(-7deg);

    background: rgba(0,0,0,0.08);

    filter: blur(20px);
}

.lm-open-book {
    position: absolute;

    width: 420px;
    height: 300px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-5deg);

    display: flex;

    filter:
        drop-shadow(
            0 25px 25px rgba(0,0,0,0.18)
        );
}

.lm-book-page {
    position: relative;

    width: 50%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #e4ddcf,
            #faf7ef
        );

    box-sizing: border-box;

    padding: 35px;
}

.lm-book-left {
    border-radius: 5px 0 0 5px;

    transform:
        perspective(700px)
        rotateY(6deg);
}

.lm-book-right {
    border-radius: 0 5px 5px 0;

    transform:
        perspective(700px)
        rotateY(-6deg);
}

.lm-book-spine {
    position: absolute;

    left: 50%;

    width: 8px;
    height: 100%;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.18),
            rgba(255,255,255,0.3),
            rgba(0,0,0,0.12)
        );

    z-index: 3;
}

.lm-page-number {
    color: #aaa297;

    font-size: 0.55rem;
}

.lm-page-lines {
    width: 85%;
    height: 3px;

    margin-top: 30px;

    background: rgba(80,70,60,0.12);
}

.lm-page-lines + .lm-page-lines {
    margin-top: 14px;
}

.lm-page-lines.short {
    width: 55%;
}

.lm-page-lines.medium {
    width: 70%;
}

.lm-page-title {
    display: block;

    margin-top: 35px;

    color: var(--lm-red);

    font-family: Georgia, serif;

    font-size: 1.35rem;

    line-height: 1;
}

.lm-page-subtitle {
    display: block;

    margin-top: 13px;

    color: #777169;

    font-size: 0.55rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.lm-page-seal {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-top: 45px;

    border: 1px solid var(--lm-red);

    border-radius: 50%;

    color: var(--lm-red);

    font-size: 0.6rem;
    font-weight: 700;
}


/* =========================================================
   CARTA FLUTUANTE
   ========================================================= */

.lm-floating-card {
    position: absolute;

    background: var(--lm-paper-light);

    border: 1px solid var(--lm-border);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.12);
}

.lm-card-letter {
    width: 170px;

    padding: 22px;

    left: 2%;
    top: 15%;

    transform: rotate(-8deg);
}

.lm-card-label {
    display: block;

    margin-bottom: 20px;

    color: var(--lm-red);

    font-size: 0.52rem;

    font-weight: 750;

    letter-spacing: 0.1em;
}

.lm-card-lines {
    width: 100%;
    height: 2px;

    margin-bottom: 10px;

    background: rgba(50,45,40,0.12);
}

.lm-card-lines.short {
    width: 65%;
}

.lm-card-seal {
    right: 2%;
    bottom: 13%;

    padding: 16px 20px;

    transform: rotate(7deg);

    color: var(--lm-red);

    font-size: 0.53rem;

    letter-spacing: 0.11em;

    text-align: center;
}

.lm-card-seal strong {
    display: block;

    margin-top: 4px;

    font-size: 0.68rem;
}


/* =========================================================
   ALAS
   ========================================================= */

.lm-wings {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    padding-bottom: 120px;
}

.lm-wing {
    position: relative;

    min-height: 520px;

    padding: 34px;

    border: 1px solid var(--lm-border);

    background: var(--lm-paper-light);

    box-shadow:
        0 12px 35px rgba(50,45,35,0.05);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.lm-wing:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(50,45,35,0.10);
}

.lm-wing::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--lm-red);
}

.lm-wing-studium::before {
    background: var(--lm-blue);
}

.lm-wing-imaginarium::before {
    background: #777;
}

.lm-wing-top {
    display: flex;

    justify-content: space-between;
}

.lm-wing-index {
    color: #aaa49b;

    font-family: Georgia, serif;

    font-size: 2rem;
}

.lm-wing-category {
    color: #99948a;

    font-size: 0.58rem;

    font-weight: 700;

    letter-spacing: 0.15em;
}

.lm-wing-symbol {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin-top: 45px;

    border: 1px solid var(--lm-red);

    border-radius: 50%;

    color: var(--lm-red);

    font-family: Georgia, serif;

    font-size: 1.5rem;
}

.lm-wing-studium .lm-wing-symbol {
    border-color: var(--lm-blue);

    color: var(--lm-blue);
}

.lm-wing-imaginarium .lm-wing-symbol {
    border-color: #777;

    color: #777;
}

.lm-wing h3 {
    margin: 25px 0 15px;

    font-family: Georgia, serif;

    font-size: 3rem;

    font-weight: 400;

    letter-spacing: -0.05em;
}

.lm-wing p {
    color: var(--lm-muted);

    font-size: 0.91rem;

    line-height: 1.75;
}

.lm-wing-topics {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 28px;
}

.lm-wing-topics span {
    padding: 7px 9px;

    border: 1px solid var(--lm-border);

    color: #777168;

    font-size: 0.59rem;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}

.lm-wing-footer {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 30px;

    padding-top: 20px;

    border-top: 1px solid var(--lm-border);
}

.lm-wing-footer span {
    display: block;

    margin-bottom: 5px;

    color: #aaa49b;

    font-size: 0.52rem;

    letter-spacing: 0.13em;
}

.lm-wing-footer strong {
    font-size: 0.63rem;

    letter-spacing: 0.08em;
}


/* =========================================================
   MANIFESTO
   ========================================================= */

.lm-manifesto {
    padding: 130px 0;

    background: var(--lm-ink);

    color: var(--lm-paper);
}

.lm-manifesto-inner {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.lm-manifesto .lm-kicker {
    color: #c8a6a9;
}

.lm-manifesto h2 {
    margin: 28px 0 10px;

    font-family: Georgia, serif;

    font-size: clamp(2.6rem, 5vw, 5rem);

    font-weight: 400;

    letter-spacing: -0.05em;
}

.lm-manifesto p {
    margin: 0;

    color: #aaa6a0;

    font-family: Georgia, serif;

    font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.lm-manifesto strong {
    color: #e1b0b3;

    font-weight: 400;
}


/* =========================================================
   AVALIAÇÃO
   ========================================================= */

.lm-evaluation {
    padding-bottom: 120px;
}

.lm-evaluation-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.lm-evaluation-card {
    border: 1px solid var(--lm-border);

    background: var(--lm-paper-light);

    overflow: hidden;
}

.lm-evaluation-featured {
    border-top: 3px solid var(--lm-red);
}

.lm-evaluation-card:not(.lm-evaluation-featured) {
    border-top: 3px solid var(--lm-blue);
}

.lm-evaluation-visual {
    position: relative;

    height: 270px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ebe5d9;

    overflow: hidden;
}

.lm-evaluation-content {
    padding: 35px;
}

.lm-option {
    color: var(--lm-red);

    font-size: 0.6rem;

    font-weight: 750;

    letter-spacing: 0.16em;
}

.lm-evaluation-card:not(.lm-evaluation-featured)
    .lm-option {
    color: var(--lm-blue);
}

.lm-evaluation-content h3 {
    margin: 12px 0;

    font-family: Georgia, serif;

    font-size: 2.3rem;

    font-weight: 400;

    letter-spacing: -0.04em;
}

.lm-evaluation-content > p {
    color: var(--lm-muted);

    line-height: 1.75;
}

.lm-evaluation-content ul {
    margin: 25px 0;

    padding: 0;

    list-style: none;
}

.lm-evaluation-content li {
    padding: 9px 0;

    border-bottom: 1px solid rgba(36,35,35,0.08);

    color: #69645d;

    font-size: 0.77rem;
}

.lm-evaluation-content li::before {
    content: "—";

    margin-right: 9px;

    color: var(--lm-red);
}

.lm-price {
    display: flex;

    align-items: end;

    justify-content: space-between;

    margin: 30px 0;
}

.lm-price small {
    color: #99938a;

    font-size: 0.55rem;

    letter-spacing: 0.1em;
}

.lm-price strong {
    color: var(--lm-ink);

    font-family: Georgia, serif;

    font-size: 2rem;

    font-weight: 400;
}

.lm-important-note {
    display: flex;

    gap: 12px;

    margin-top: 20px;

    padding: 20px 24px;

    border-left: 2px solid var(--lm-red);

    background: rgba(157,32,41,0.04);

    font-size: 0.72rem;

    line-height: 1.6;
}

.lm-important-note strong {
    color: var(--lm-ink);
}

.lm-important-note span {
    color: var(--lm-muted);
}


/* =========================================================
   CARTA
   ========================================================= */

.lm-mini-letter {
    position: absolute;

    width: 180px;
    height: 125px;

    padding: 18px;

    background: #faf8f2;

    box-shadow: 0 15px 30px rgba(0,0,0,0.12);

    transform: rotate(-8deg);

    left: 24%;
}

.lm-mini-letter > span {
    color: var(--lm-red);

    font-size: 0.48rem;

    letter-spacing: 0.1em;
}

.lm-mini-letter div {
    width: 85%;
    height: 2px;

    margin-top: 14px;

    background: rgba(50,45,40,0.13);
}

.lm-mini-letter div.short {
    width: 55%;
}

.lm-mini-letter small {
    position: absolute;

    right: 15px;
    bottom: 10px;

    color: #aaa49b;

    font-family: Georgia, serif;

    font-size: 0.5rem;
}

.lm-mini-book {
    position: absolute;

    width: 120px;
    height: 165px;

    right: 22%;

    transform: rotate(8deg);

    box-shadow: 10px 15px 25px rgba(0,0,0,0.16);
}

.lm-mini-book-cover {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    background: var(--lm-red);

    color: white;

    font-family: Georgia, serif;

    font-size: 0.8rem;

    line-height: 1.1;

    text-align: center;

    letter-spacing: 0.08em;
}


/* =========================================================
   CERTIFICADO
   ========================================================= */

.lm-visual-certificate {
    background:
        radial-gradient(
            circle,
            rgba(36,88,139,0.07),
            transparent 65%
        ),
        #ebe5d9;
}

.lm-certificate {
    position: relative;

    width: 240px;
    height: 165px;

    padding: 25px;

    box-sizing: border-box;

    border: 1px solid #c4bbaa;

    background: #faf8f1;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.12);

    text-align: center;

    transform: rotate(4deg);
}

.lm-certificate > span {
    display: block;

    color: var(--lm-blue);

    font-size: 0.42rem;

    font-weight: 750;

    letter-spacing: 0.18em;
}

.lm-certificate strong {
    display: block;

    margin-top: 12px;

    font-family: Georgia, serif;

    font-size: 1.2rem;

    font-weight: 400;
}

.lm-certificate > small {
    color: #8f887d;

    font-size: 0.42rem;

    letter-spacing: 0.08em;
}

.lm-certificate-line {
    width: 65px;
    height: 1px;

    margin: 12px auto;

    background: #aaa296;
}

.lm-certificate em {
    color: #777169;

    font-family: Georgia, serif;

    font-size: 0.55rem;
}

.lm-certificate-seal {
    position: absolute;

    right: 15px;
    bottom: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border: 1px solid var(--lm-blue);

    border-radius: 50%;

    color: var(--lm-blue);

    font-size: 0.42rem;
}


/* =========================================================
   PROCESSO
   ========================================================= */

.lm-process-section {
    padding: 120px 0;

    background: #eae4d9;

    border-top: 1px solid var(--lm-border);
    border-bottom: 1px solid var(--lm-border);
}

.lm-process {
    position: relative;

    max-width: 900px;

    margin: auto;
}

.lm-process-line {
    position: absolute;

    top: 30px;
    bottom: 30px;

    left: 29px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--lm-red),
            rgba(157,32,41,0.08)
        );
}

.lm-process-step {
    position: relative;

    display: grid;

    grid-template-columns: 58px 160px 1fr;

    gap: 30px;

    align-items: center;

    padding: 35px 0;
}

.lm-process-number {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border: 1px solid var(--lm-red);

    border-radius: 50%;

    background: #eae4d9;

    color: var(--lm-red);

    font-size: 0.65rem;

    font-weight: 750;
}

.lm-process-object {
    position: relative;

    width: 130px;
    height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(36,35,35,0.18);

    background: rgba(250,248,242,0.65);

    color: #8d877d;

    font-size: 0.49rem;

    letter-spacing: 0.12em;
}

.lm-object-letter {
    transform: rotate(-4deg);
}

.lm-object-letter::after {
    content: "";

    position: absolute;

    left: 20px;
    right: 20px;

    top: 44px;

    height: 1px;

    background: #b5afa5;

    box-shadow:
        0 8px #c3bdb3,
        0 16px #c3bdb3;
}

.lm-object-analysis {
    background: rgba(36,88,139,0.05);
}

.lm-scan-lines {
    position: absolute;

    left: 15px;
    right: 15px;

    bottom: 15px;

    height: 3px;

    background: var(--lm-blue);

    box-shadow:
        0 -9px rgba(36,88,139,0.25),
        0 -18px rgba(36,88,139,0.15);
}

.lm-object-book {
    width: 95px;

    background: var(--lm-red);

    color: white;

    transform: rotate(-4deg);
}

.lm-object-council {
    flex-direction: column;
}

.lm-council-dots {
    display: flex;

    gap: 8px;

    margin-top: 12px;
}

.lm-council-dots i {
    display: block;

    width: 15px;
    height: 15px;

    border: 1px solid var(--lm-red);

    border-radius: 50%;
}

.lm-object-report {
    flex-direction: column;
}

.lm-report-lines {
    width: 75%;

    height: 2px;

    margin-top: 12px;

    background: #aaa49a;

    box-shadow:
        0 8px #c4beb5,
        0 16px #c4beb5;
}

.lm-object-certificate {
    background: #f7f4ec;

    border-color: #aaa296;
}

.lm-object-certificate div {
    position: absolute;

    right: 10px;
    bottom: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border: 1px solid var(--lm-red);

    border-radius: 50%;

    color: var(--lm-red);

    font-size: 0.4rem;
}

.lm-process-label {
    color: var(--lm-red);

    font-size: 0.55rem;

    font-weight: 750;

    letter-spacing: 0.13em;
}

.lm-process-step h3 {
    margin: 7px 0;

    font-family: Georgia, serif;

    font-size: 1.7rem;

    font-weight: 400;
}

.lm-process-step p {
    margin: 0;

    color: var(--lm-muted);

    line-height: 1.7;

    font-size: 0.88rem;
}


/* =========================================================
   RECONHECIMENTO
   ========================================================= */

.lm-recognition {
    padding: 130px 0;

    background: var(--lm-paper-light);
}

.lm-recognition-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.lm-recognition-copy h2 {
    margin: 20px 0;

    font-family: Georgia, serif;

    font-size: clamp(3rem, 5vw, 5rem);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -0.055em;
}

.lm-recognition-copy h2 em {
    color: var(--lm-red);

    font-style: normal;
}

.lm-recognition-copy > p {
    max-width: 570px;

    color: var(--lm-muted);

    line-height: 1.8;
}

.lm-seal-explanation {
    display: flex;

    gap: 20px;

    align-items: center;

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid var(--lm-border);
}

.lm-large-seal {
    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 100px;
    height: 100px;

    border: 2px solid var(--lm-red);

    border-radius: 50%;

    color: var(--lm-red);

    text-align: center;
}

.lm-large-seal span {
    font-size: 0.45rem;

    letter-spacing: 0.12em;
}

.lm-large-seal strong {
    margin-top: 4px;

    font-family: Georgia, serif;

    font-size: 0.9rem;

    font-weight: 400;
}

.lm-seal-explanation > div:last-child > strong {
    font-family: Georgia, serif;

    font-size: 1.1rem;

    font-weight: 400;
}

.lm-seal-explanation p {
    margin: 7px 0 0;

    color: var(--lm-muted);

    font-size: 0.78rem;

    line-height: 1.6;
}


/* CERTIFICADO GRANDE */

.lm-recognition-art {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 500px;

    background:
        radial-gradient(
            circle,
            rgba(157,32,41,0.07),
            transparent 65%
        );
}

.lm-certificate-large {
    position: relative;

    width: 390px;
    min-height: 300px;

    padding: 50px;

    box-sizing: border-box;

    border: 1px solid #bcb3a5;

    outline: 8px solid rgba(188,179,165,0.25);
    outline-offset: 8px;

    background: #faf8f0;

    box-shadow:
        0 25px 50px rgba(40,35,28,0.12);

    text-align: center;

    transform: rotate(3deg);
}

.lm-certificate-large::before {
    content: "";

    position: absolute;

    inset: 14px;

    border: 1px solid rgba(157,32,41,0.25);

    pointer-events: none;
}

.lm-certificate-large > span {
    display: block;

    color: var(--lm-red);

    font-size: 0.58rem;

    font-weight: 750;

    letter-spacing: 0.18em;
}

.lm-certificate-large > small {
    display: block;

    margin-top: 12px;

    color: #8e887e;

    font-size: 0.5rem;

    letter-spacing: 0.12em;
}

.lm-certificate-large h3 {
    margin: 25px 0 10px;

    font-family: Georgia, serif;

    font-size: 2.1rem;

    font-weight: 400;
}

.lm-cert-rule {
    width: 70px;
    height: 1px;

    margin: 18px auto;

    background: var(--lm-red);
}

.lm-certificate-large p {
    color: #777168;

    font-family: Georgia, serif;

    font-size: 0.75rem;

    line-height: 1.5;
}

.lm-cert-bottom {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-top: 35px;
}

.lm-cert-bottom > span {
    color: var(--lm-red);

    font-size: 0.58rem;

    letter-spacing: 0.1em;
}

.lm-cert-round {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border: 1px solid var(--lm-red);

    border-radius: 50%;

    color: var(--lm-red);

    font-size: 0.55rem;
}


/* =========================================================
   AUTORES CONVIDADOS
   ========================================================= */

.lm-invited {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: center;

    padding: 130px 0;
}

.lm-invited-letter {
    position: relative;

    width: min(370px, 100%);

    min-height: 280px;

    padding: 38px;

    box-sizing: border-box;

    background: #faf8f0;

    border: 1px solid var(--lm-border);

    box-shadow:
        0 25px 45px rgba(40,35,28,0.10);

    transform: rotate(-3deg);
}

.lm-letter-header {
    color: var(--lm-red);

    font-size: 0.58rem;

    font-weight: 750;

    letter-spacing: 0.18em;
}

.lm-letter-title {
    margin-top: 35px;

    font-family: Georgia, serif;

    font-size: 1.7rem;
}

.lm-letter-lines {
    margin-top: 20px;
}

.lm-letter-lines span {
    display: block;

    width: 90%;
    height: 2px;

    margin-top: 10px;

    background: #d2cbc0;
}

.lm-letter-lines span.medium {
    width: 70%;
}

.lm-letter-signature {
    position: absolute;

    right: 35px;
    bottom: 30px;

    color: #8d867b;

    font-family: Georgia, serif;

    font-size: 0.75rem;

    font-style: italic;
}

.lm-invited-copy h2 {
    margin: 20px 0;

    font-family: Georgia, serif;

    font-size: clamp(3rem, 5vw, 5rem);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -0.055em;
}

.lm-invited-copy h2 em {
    color: var(--lm-red);

    font-style: normal;
}

.lm-invited-copy p {
    max-width: 620px;

    color: var(--lm-muted);

    line-height: 1.8;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.lm-final-cta {
    padding: 130px 0;

    background:
        linear-gradient(
            120deg,
            #302629,
            #283039
        );

    color: var(--lm-paper);
}

.lm-final-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 90px;

    align-items: center;
}

.lm-final-copy h2 {
    margin: 20px 0;

    font-family: Georgia, serif;

    font-size: clamp(3rem, 5.5vw, 5.8rem);

    line-height: 0.93;

    font-weight: 400;

    letter-spacing: -0.06em;
}

.lm-final-copy h2 em {
    color: #d59da1;

    font-style: normal;
}

.lm-final-copy > p {
    max-width: 570px;

    color: #c1bab8;

    line-height: 1.8;
}

.lm-final-email {
    display: inline-block;

    margin: 25px 0;

    padding-bottom: 8px;

    border-bottom: 1px solid #b97076;

    color: #f2d9da;

    font-family: Georgia, serif;

    font-size: 1.15rem;
}

.lm-final-button {
    display: flex;

    width: fit-content;
}


/* CARTA FINAL */

.lm-final-letter {
    display: flex;

    align-items: center;
    justify-content: center;
}

.lm-letter-paper {
    width: min(390px, 100%);

    min-height: 440px;

    padding: 48px;

    box-sizing: border-box;

    background: #faf8f0;

    color: var(--lm-ink);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.25);

    transform: rotate(3deg);
}

.lm-letter-brand {
    color: var(--lm-red);

    font-size: 0.62rem;

    font-weight: 750;

    letter-spacing: 0.18em;
}

.lm-letter-date {
    margin-top: 7px;

    color: #aaa49a;

    font-size: 0.5rem;

    letter-spacing: 0.1em;
}

.lm-letter-paper p {
    margin-top: 35px;

    font-family: Georgia, serif;

    font-size: 0.95rem;

    line-height: 1.65;
}

.lm-letter-paper p + p {
    margin-top: 15px;
}

.lm-writing-lines {
    margin-top: 25px;
}

.lm-writing-lines span {
    display: block;

    width: 100%;
    height: 2px;

    margin-top: 11px;

    background: #d1c9bd;
}

.lm-writing-lines span.short {
    width: 60%;
}

.lm-letter-footer {
    display: flex;

    justify-content: space-between;

    margin-top: 45px;

    color: #a39c91;

    font-size: 0.48rem;

    letter-spacing: 0.1em;
}


/* =========================================================
   ENCERRAMENTO
   ========================================================= */

.lm-closing {
    padding: 110px 0;

    background: var(--lm-paper);

    text-align: center;
}

.lm-closing h2 {
    margin: 22px 0 0;

    font-family: Georgia, serif;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -0.06em;
}

.lm-closing h2 em {
    color: var(--lm-red);

    font-style: normal;
}


/* =========================================================
   ANIMAÇÕES
   ========================================================= */

.lm-reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.lm-reveal.lm-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 950px) {

    .lm-hero-grid,
    .lm-recognition-grid,
    .lm-final-grid {
        grid-template-columns: 1fr;
    }

    .lm-hero {
        min-height: auto;
    }

    .lm-hero-art {
        min-height: 430px;
    }

    .lm-wings,
    .lm-evaluation-grid {
        grid-template-columns: 1fr;
    }

    .lm-invited {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .lm-invited-letter {
        margin: auto;
    }

    .lm-recognition-art {
        min-height: 430px;
    }

    .lm-final-copy {
        max-width: 700px;
    }

}


@media (max-width: 650px) {

    .lm-container {
        width: calc(100% - 32px);
    }

    .lm-hero-grid {
        padding: 75px 0;
    }

    .lm-hero-copy h2 {
        font-size: 3.6rem;
    }

    .lm-hero-actions {
        align-items: stretch;

        flex-direction: column;
    }

    .lm-button {
        width: 100%;
    }

    .lm-hero-art {
        min-height: 350px;
    }

    .lm-open-book {
        width: 310px;
        height: 220px;
    }

    .lm-card-letter {
        width: 130px;

        padding: 15px;
    }

    .lm-card-seal {
        padding: 12px 15px;
    }

    .lm-heading {
        padding-top: 80px;
    }

    .lm-heading h2 {
        font-size: 3rem;
    }

    .lm-wing {
        min-height: 500px;
    }

    .lm-process-step {
        grid-template-columns: 50px 1fr;

        gap: 20px;
    }

    .lm-process-object {
        display: none;
    }

    .lm-process-line {
        left: 24px;
    }

    .lm-process-number {
        width: 50px;
        height: 50px;
    }

    .lm-important-note {
        flex-direction: column;
    }

    .lm-certificate-large {
        width: 330px;
        min-height: 280px;

        padding: 40px 30px;
    }

    .lm-seal-explanation {
        align-items: flex-start;
    }

    .lm-final-cta {
        padding: 90px 0;
    }

    .lm-letter-paper {
        padding: 35px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .lm-reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }

    .lm-button,
    .lm-wing {
        transition: none;
    }

}


/* =========================================================
   LIBRIS MEMRA — ACERVO
   ========================================================= */

   .lm-acervo {
    width: 100%;
    padding: 90px 24px;
    background: #f8f7f4;
    color: #20201e;
    box-sizing: border-box;
  }
  
  .lm-acervo *,
  .lm-acervo *::before,
  .lm-acervo *::after {
    box-sizing: border-box;
  }
  
  .lm-acervo__container {
    width: min(1180px, 100%);
    margin: 0 auto;
  }
  
  /* ---------- INTRO ---------- */
  
  .lm-acervo__intro {
    max-width: 620px;
    margin-bottom: 48px;
  }
  
  .lm-acervo__eyebrow {
    display: block;
    margin-bottom: 14px;
  
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  
    opacity: 0.55;
  }
  
  .lm-acervo__intro h2 {
    margin: 0 0 14px;
  
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
  }
  
  .lm-acervo__intro p {
    max-width: 520px;
    margin: 0;
  
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
  
    color: #676661;
  }
  
  
  /* ---------- ALAS ---------- */
  
  .lm-acervo__alas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  
    border-top: 1px solid rgba(32, 32, 30, 0.16);
    border-bottom: 1px solid rgba(32, 32, 30, 0.16);
  }
  
  .lm-ala {
    position: relative;
  
    display: flex;
    gap: 22px;
  
    min-height: 138px;
    padding: 30px 32px;
  
    align-items: flex-start;
  }
  
  .lm-ala + .lm-ala {
    border-left: 1px solid rgba(32, 32, 30, 0.16);
  }
  
  .lm-ala__number {
    padding-top: 3px;
  
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
  
    opacity: 0.4;
  }
  
  .lm-ala h3 {
    margin: 0 0 8px;
  
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
  }
  
  .lm-ala p {
    max-width: 230px;
    margin: 0;
  
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.55;
  
    color: #686762;
  }
  
  
  /* ---------- BOTTOM ---------- */
  
  .lm-acervo__bottom {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  
    margin-top: 34px;
  
    gap: 50px;
    align-items: center;
  }
  
  
  /* Status */
  
  .lm-acervo__status {
    display: flex;
    gap: 13px;
    align-items: flex-start;
  }
  
  .lm-acervo__status-dot {
    position: relative;
  
    display: block;
  
    width: 8px;
    height: 8px;
    margin-top: 6px;
  
    border-radius: 50%;
    background: #77756e;
  }
  
  .lm-acervo__status strong,
  .lm-acervo__status span {
    display: block;
  }
  
  .lm-acervo__status strong {
    margin-bottom: 4px;
  
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
  }
  
  .lm-acervo__status div span {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
  
    color: #77756f;
  }
  
  
  /* Author CTA */
  
  .lm-acervo__author {
    display: flex;
  
    justify-content: space-between;
    align-items: center;
  
    gap: 30px;
    padding-left: 36px;
  
    border-left: 1px solid rgba(32, 32, 30, 0.16);
  }
  
  .lm-acervo__author > div > span {
    display: block;
  
    margin-bottom: 5px;
  
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  
    opacity: 0.5;
  }
  
  .lm-acervo__author strong {
    display: block;
  
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
  }
  
  
  /* Button */
  
  .lm-acervo__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  
    flex-shrink: 0;
  
    padding: 12px 0;
  
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
  
    color: #20201e;
    text-decoration: none;
  
    border-bottom: 1px solid #20201e;
  
    transition:
      gap 0.25s ease,
      opacity 0.25s ease;
  }
  
  .lm-acervo__button span {
    font-size: 17px;
    font-weight: 400;
  }
  
  .lm-acervo__button:hover {
    gap: 19px;
    opacity: 0.65;
  }
  
  
  /* ---------- RESPONSIVE ---------- */
  
  @media (max-width: 850px) {
  
    .lm-acervo {
      padding: 70px 22px;
    }
  
    .lm-acervo__alas {
      grid-template-columns: 1fr;
    }
  
    .lm-ala {
      min-height: auto;
      padding: 25px 20px;
    }
  
    .lm-ala + .lm-ala {
      border-left: none;
      border-top: 1px solid rgba(32, 32, 30, 0.16);
    }
  
    .lm-acervo__bottom {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .lm-acervo__author {
      padding-left: 0;
      padding-top: 30px;
  
      border-left: none;
      border-top: 1px solid rgba(32, 32, 30, 0.16);
    }
  }
  
  
  @media (max-width: 560px) {
  
    .lm-acervo {
      padding: 60px 20px;
    }
  
    .lm-acervo__intro {
      margin-bottom: 35px;
    }
  
    .lm-acervo__intro h2 {
      font-size: 34px;
    }
  
    .lm-acervo__author {
      display: block;
    }
  
    .lm-acervo__button {
      margin-top: 22px;
    }
  }

  .lm-acervo__intro,
.lm-acervo__alas,
.lm-acervo__bottom {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.lm-acervo--visible .lm-acervo__intro {
  opacity: 1;
  transform: translateY(0);
}

.lm-acervo--visible .lm-acervo__alas {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.lm-acervo--visible .lm-acervo__bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}



/* =========================================================
   LIBRIS MEMRA — LIBRARY INTRO
   Seção completamente isolada
   ========================================================= */

   /* ============================================================
   LIBRIS MEMRA — SEÇÃO ACERVO
   ============================================================ */

.lm-acervo-section {

    --lm-red: #ed0033;
    --lm-red-dark: #c7002c;

    --lm-blue: #087cf0;
    --lm-blue-dark: #1857a5;

    --lm-white: #ffffff;
    --lm-black: #101114;

    position: relative;

    width: 100%;

    min-height: 760px;

    overflow: hidden;

    background: #ffffff;

    color: var(--lm-black);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    isolation: isolate;
}


/* ============================================================
   FORMAS DECORATIVAS
   ============================================================ */

.lm-acervo-section__shape {

    position: absolute;

    pointer-events: none;

    z-index: 10;
}


/* grande forma vermelha */

/* ============================================================
   CÍRCULO VERMELHO — ACERVO
   ============================================================ */

   .lm-acervo-section__shape--red {

    width: 570px;
    height: 570px;

    top: -330px;
    right: -210px;

    border-radius: 50%;

    background: var(--lm-red);

    transform: rotate(-8deg);

    display: flex;

    align-items: flex-end;
    justify-content: center;

    padding-bottom: 100px;

    overflow: hidden;
}


.lm-acervo-section__shape--red span {

    position: relative;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 62px;

    font-weight: 400;

    letter-spacing: -.045em;

    transform: rotate(8deg);

    white-space: nowrap;
}




/* ============================================================
   ÁREA INTERNA
   ============================================================ */

.lm-acervo-section__content {

    position: relative;

    width: min(1280px, calc(100% - 80px));

    min-height: 760px;

    margin: 0 auto;

    padding: 90px 0 55px;
}


/* ============================================================
   CABEÇALHO
   ============================================================ */

.lm-acervo-section__heading {

    position: relative;

    z-index: 5;

    width: 560px;
}


.lm-acervo-section__eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--lm-red);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .22em;
}


.lm-acervo-section__eyebrow::before {

    content: "";

    width: 30px;
    height: 3px;

    background: var(--lm-red);
}


.lm-acervo-section__heading h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(52px, 5.8vw, 82px);

    line-height: .95;

    font-weight: 400;

    letter-spacing: -.055em;
}


.lm-acervo-section__heading h2 span {

    color: var(--lm-red);

    font-style: italic;
}


.lm-acervo-section__heading p {

    width: 430px;

    margin: 28px 0 0;

    color: #60636a;

    font-size: 15px;

    line-height: 1.7;
}


/* ============================================================
   CARROSSEL CENTRAL
   ============================================================ */

   .lm-acervo-section__visual {

    position: absolute;

    top: 80px;
    right: 55px;

    width: 600px;
    height: 390px;

    z-index: 5;
}


/* Palavra ACERVO antiga — não será mais utilizada */

.lm-acervo-section__visual-word {
    display: none;
}


/* ============================================================
   CARROSSEL
   ============================================================ */

.lm-carousel {

    position: relative;

    width: 100%;
    height: 100%;
}


/* ============================================================
   MOLDURA AZUL
   ============================================================ */

.lm-carousel__frame {

    position: absolute;

    inset: 15px 25px 35px;

    padding: 9px;

    background:
        linear-gradient(
            135deg,
            #0b315e 0%,
            #174d89 35%,
            #0a294d 70%,
            #1b5b9d 100%
        );

    box-shadow:
        0 25px 50px rgba(15, 35, 65, .22),
        inset 0 0 0 2px rgba(255,255,255,.16);

    border-radius: 4px;

    z-index: 2;
}


/* detalhes internos da moldura */

.lm-carousel__frame::before {

    content: "";

    position: absolute;

    inset: 5px;

    border: 1px solid rgba(255,255,255,.3);

    pointer-events: none;

    z-index: 5;
}


/* ============================================================
   IMAGEM
   ============================================================ */

.lm-carousel__image-wrap {

    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #101722;
}


.lm-carousel__image-wrap img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity .45s ease,
        transform .8s ease;

    opacity: 1;
}


.lm-carousel__image-wrap img.is-changing {

    opacity: 0;

    transform: scale(1.035);
}


/* ============================================================
   SOMBRA SOBRE A IMAGEM
   ============================================================ */

.lm-carousel__shade {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,13,25,.92) 0%,
            rgba(4,13,25,.65) 38%,
            rgba(4,13,25,.12) 75%,
            rgba(4,13,25,.08) 100%
        );

    pointer-events: none;
}


/* ============================================================
   INFORMAÇÕES
   ============================================================ */

.lm-carousel__information {

    position: absolute;

    left: 42px;
    bottom: 38px;

    width: 245px;

    color: #ffffff;

    z-index: 4;
}


.lm-carousel__area {

    display: block;

    margin-bottom: 14px;

    color: #ff214b;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .16em;
}


.lm-carousel__information h3 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 39px;

    line-height: 1.02;

    font-weight: 400;

    letter-spacing: -.035em;
}


.lm-carousel__line {

    width: 42px;
    height: 2px;

    margin: 18px 0;

    background: #ffffff;
}


.lm-carousel__work-label {

    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.7);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .14em;
}


.lm-carousel__information p {

    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    line-height: 1.35;
}


/* ============================================================
   SETAS
   ============================================================ */

.lm-carousel__arrow {

    position: absolute;

    top: 50%;

    width: 48px;
    height: 48px;

    transform: translateY(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #123d70;

    color: #ffffff;

    font-family:
        Georgia,
        serif;

    font-size: 34px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);

    transition:
        background .2s ease,
        transform .2s ease;
}


.lm-carousel__arrow:hover {

    background: var(--lm-red);

    transform:
        translateY(-50%)
        scale(1.08);
}


.lm-carousel__arrow--prev {

    left: 0;
}


.lm-carousel__arrow--next {

    right: 0;
}


/* ============================================================
   INDICADORES
   ============================================================ */

.lm-carousel__dots {

    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    z-index: 10;
}


.lm-carousel__dot {

    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c5ccd5;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease;
}


.lm-carousel__dot.is-active {

    background: var(--lm-red);

    transform: scale(1.35);
}


.lm-carousel__dot:hover {

    background: var(--lm-blue);
}


/* ============================================================
   TRÊS ALAS
   ============================================================ */

.lm-acervo-section__alas {

    position: absolute;

    left: 0;
    right: 0;

    bottom: 155px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 0;

    border-top: 1px solid rgba(16,17,20,.14);
    border-bottom: 1px solid rgba(16,17,20,.14);

    z-index: 5;
}


.lm-ala {

    position: relative;

    display: grid;

    grid-template-columns: 42px 58px 1fr 25px;

    align-items: center;

    min-height: 145px;

    padding: 20px 25px;

    transition:
        transform .3s ease,
        background .3s ease;
}


.lm-ala + .lm-ala {

    border-left:
        1px solid rgba(16,17,20,.14);
}


/* número */

.lm-ala__index {

    align-self: start;

    padding-top: 3px;

    font-size: 10px;

    font-weight: 800;

    opacity: .4;
}


/* símbolo */

.lm-ala__symbol {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    font-family:
        Georgia,
        serif;

    font-size: 19px;

    font-weight: 700;

    color: white;
}


.lm-ala--memra .lm-ala__symbol {

    background: var(--lm-red);
}


.lm-ala--studium .lm-ala__symbol {

    background: var(--lm-blue);
}


.lm-ala--imaginarium .lm-ala__symbol {

    background:
        linear-gradient(
            135deg,
            var(--lm-red),
            var(--lm-blue)
        );
}


/* texto */

.lm-ala__text {

    padding-left: 15px;
}


.lm-ala__text h3 {

    margin: 0 0 6px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    font-weight: 400;
}


.lm-ala__text p {

    max-width: 190px;

    margin: 0;

    color: #6c6e73;

    font-size: 11px;

    line-height: 1.5;
}


/* seta */

.lm-ala__arrow {

    justify-self: end;

    font-size: 20px;

    opacity: .35;

    transition:
        transform .3s ease,
        opacity .3s ease;
}


.lm-ala:hover {

    background: rgba(255,255,255,.75);

    transform: translateY(-4px);
}


.lm-ala:hover .lm-ala__arrow {

    opacity: 1;

    transform:
        translate(3px,-3px);
}


/* ============================================================
   RODAPÉ / CTA
   ============================================================ */

.lm-acervo-section__footer {

    position: absolute;

    left: 0;
    right: 0;

    bottom: 48px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 8;
}


/* status */

.lm-acervo-section__status {

    display: flex;

    align-items: center;

    gap: 12px;
}


.lm-status-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--lm-red);

    box-shadow:
        0 0 0 5px rgba(237,0,51,.1);
}


.lm-acervo-section__status strong {

    display: block;

    margin-bottom: 3px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .1em;
}


.lm-acervo-section__status span {

    color: #707278;

    font-size: 11px;
}


/* autores */

.lm-acervo-section__author {

    display: flex;

    align-items: center;

    gap: 30px;
}


.lm-acervo-section__author > div {

    text-align: right;
}


.lm-author-label {

    display: block;

    margin-bottom: 5px;

    color: var(--lm-red);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .18em;
}


.lm-acervo-section__author strong {

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-weight: 400;
}


/* botão grande */

/* ============================================================
   BOTÃO — APRESENTAR MINHA OBRA
   ============================================================ */

   .lm-author-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    min-width: 250px;
    min-height: 62px;

    padding: 0 25px;

    background: var(--lm-red);

    color: #ffffff !important;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .04em;

    box-shadow:
        0 12px 25px rgba(237,0,51,.20);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;

    cursor: pointer;
}


/* IMPORTANTE:
   o texto NÃO muda de cor */

.lm-author-button:hover,
.lm-author-button:focus,
.lm-author-button:active {

    color: #ffffff !important;

    background: var(--lm-red-dark);

    transform: translateY(-3px);

    box-shadow:
        0 17px 30px rgba(237,0,51,.28);
}


.lm-author-button b {

    color: #ffffff !important;

    font-size: 21px;

    font-weight: 400;

    transition:
        transform .25s ease;
}


.lm-author-button:hover b {

    color: #ffffff !important;

    transform:
        translateX(5px);
}


/* ============================================================
   ANIMAÇÕES
   ============================================================ */

.lm-acervo-section__heading,
.lm-acervo-section__visual,
.lm-acervo-section__alas,
.lm-acervo-section__footer {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);
}


.lm-acervo-section__visual {

    transform:
        translateY(25px)
        scale(.95);
}


.lm-acervo-section.is-visible
.lm-acervo-section__heading {

    opacity: 1;

    transform:
        translateY(0);
}


.lm-acervo-section.is-visible
.lm-acervo-section__visual {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    transition-delay: .12s;
}


.lm-acervo-section.is-visible
.lm-acervo-section__alas {

    opacity: 1;

    transform:
        translateY(0);

    transition-delay: .22s;
}


.lm-acervo-section.is-visible
.lm-acervo-section__footer {

    opacity: 1;

    transform:
        translateY(0);

    transition-delay: .34s;
}


/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1050px) {

    .lm-acervo-section__content {

        width:
            calc(100% - 50px);
    }

    .lm-acervo-section__visual {

        right: 0;
    }

    .lm-acervo-section__heading {

        width: 50%;
    }

    .lm-acervo-section__heading h2 {

        font-size: 60px;
    }
}


@media (max-width: 800px) {

    .lm-acervo-section {

        min-height: auto;
    }

    .lm-acervo-section__content {

        min-height: auto;

        padding:
            75px 0 55px;
    }

    .lm-acervo-section__heading {

        width: 100%;
    }

    .lm-acervo-section__heading p {

        width: min(500px,100%);
    }

    .lm-acervo-section__visual {

        position: relative;

        top: auto;
        right: auto;

        width: 100%;

        height: 290px;

        margin:
            20px auto 10px;
    }

    .lm-acervo-section__alas {

        position: relative;

        left: auto;
        right: auto;
        bottom: auto;
    }

    .lm-acervo-section__footer {

        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        margin-top: 30px;

        gap: 25px;

        flex-direction: column;

        align-items: stretch;
    }

    .lm-acervo-section__author {

        justify-content: space-between;
    }
}


@media (max-width: 600px) {

    .lm-acervo-section__content {

        width:
            calc(100% - 36px);
    }

    .lm-acervo-section__heading h2 {

        font-size: 50px;
    }

    .lm-acervo-section__alas {

        grid-template-columns: 1fr;
    }

    .lm-ala {

        min-height: 115px;
    }

    .lm-ala + .lm-ala {

        border-left: 0;

        border-top:
            1px solid rgba(16,17,20,.14);
    }

    .lm-acervo-section__author {

        flex-direction: column;

        align-items: stretch;
    }

    .lm-acervo-section__author > div {

        text-align: left;
    }

    .lm-author-button {

        width: 100%;
    }

    .lm-acervo-section__shape--red {

        width: 350px;
        height: 350px;

        top: -210px;
        right: -170px;
    }
}

/* ============================================================
   RESPONSIVIDADE DO CARROSSEL
   ============================================================ */

   @media (max-width: 1050px) {

    .lm-acervo-section__visual {

        right: 0;

        width: 520px;
        height: 350px;
    }

    .lm-carousel__information {

        left: 35px;
        bottom: 30px;
    }

    .lm-carousel__information h3 {

        font-size: 34px;
    }

    .lm-acervo-section__shape--red {

        width: 480px;
        height: 480px;

        right: -210px;
        top: -290px;
    }

    .lm-acervo-section__shape--red span {

        font-size: 52px;

        padding-bottom: 80px;
    }
}


@media (max-width: 800px) {

    .lm-acervo-section__visual {

        position: relative;

        top: auto;
        right: auto;

        width: min(600px, 100%);

        height: 360px;

        margin:
            30px auto 35px;
    }

    .lm-acervo-section__shape--red {

        width: 350px;
        height: 350px;

        top: -200px;
        right: -180px;
    }

    .lm-acervo-section__shape--red span {

        font-size: 40px;

        padding-bottom: 65px;
    }
}


@media (max-width: 600px) {

    .lm-acervo-section__visual {

        height: 300px;
    }

    .lm-carousel__frame {

        inset:
            10px 18px 30px;
    }

    .lm-carousel__information {

        left: 25px;
        bottom: 25px;

        width: 65%;
    }

    .lm-carousel__information h3 {

        font-size: 29px;
    }

    .lm-carousel__information p {

        font-size: 14px;

        line-height: 1.3;
    }

    .lm-carousel__area {

        font-size: 10px;
    }

    .lm-carousel__arrow {

        width: 40px;
        height: 40px;

        font-size: 28px;
    }

    .lm-carousel__arrow--prev {

        left: -4px;
    }

    .lm-carousel__arrow--next {

        right: -4px;
    }
}


/* =====================================================
   LIBRIS MEMRA — PERGUNTAS FREQUENTES
   Componente isolado
====================================================== */

.lm-faq-section {
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

.lm-faq-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.lm-faq-heading h2 {
  margin: 14px 0 20px;
}

.lm-faq-heading p {
  max-width: 600px;
  margin: 0;
  line-height: 1.8;
  opacity: .78;
}

.lm-faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(15, 76, 154, .18);
}

.lm-faq-item {
  border-bottom: 1px solid rgba(15, 76, 154, .18);
}

.lm-faq-question {
  margin: 0;
}

.lm-faq-question button {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 27px 4px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.lm-faq-question button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

.lm-faq-number {
  font-family: "Source Sans 3", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  opacity: .48;
}

.lm-faq-question-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.25;
  padding-right: 15px;
}

.lm-faq-icon {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  justify-self: end;
  opacity: .7;
}

.lm-faq-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    transform .3s ease,
    opacity .3s ease;
}

.lm-faq-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lm-faq-question button[aria-expanded="true"] .lm-faq-icon span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(.5);
}

.lm-faq-question button[aria-expanded="true"] .lm-faq-icon span:first-child {
  transform: translate(-50%, -50%) rotate(180deg);
}

.lm-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows .35s ease,
    opacity .25s ease;
}

.lm-faq-answer[hidden] {
  display: grid;
}

.lm-faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding-left: 74px;
  padding-right: 74px;
}

.lm-faq-answer-inner p {
  max-width: 720px;
  margin: 0 0 16px;
  line-height: 1.8;
  opacity: .78;
}

.lm-faq-answer-inner p:last-child {
  margin-bottom: 30px;
}

.lm-faq-item:has(.lm-faq-question button[aria-expanded="true"])
  .lm-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.lm-faq-item:has(.lm-faq-question button[aria-expanded="true"])
  .lm-faq-question-text {
  opacity: 1;
}

@media (max-width: 700px) {

  .lm-faq-section {
    padding: 78px 0 88px;
  }

  .lm-faq-heading {
    margin-bottom: 38px;
  }

  .lm-faq-question button {
    padding: 23px 0;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 12px;
  }

  .lm-faq-number {
    font-size: .65rem;
  }

  .lm-faq-question-text {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .lm-faq-icon {
    width: 26px;
    height: 26px;
  }

  .lm-faq-answer-inner {
    padding-left: 46px;
    padding-right: 20px;
  }

  .lm-faq-answer-inner p {
    font-size: .95rem;
    line-height: 1.7;
  }

}

@media (prefers-reduced-motion: reduce) {

  .lm-faq-answer,
  .lm-faq-icon span {
    transition: none;
  }

}


/* =========================================================
   HERO — SLIDESHOW DE OBRAS
   ========================================================= */

