:root {
    --bg: #fbfaf8;
    --white: #ffffff;
    --ink: #171313;
    --muted: #716a69;
    --marsala: #7b1f2a;
    --marsala-dark: #59121b;
    --soft: #f2ece8;
    --line: #e7dfda;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

.topbar {
    background: var(--ink);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 11px;
    letter-spacing: .16em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(251, 250, 248, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 58px;
    width: auto;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 600;
}

.desktop-menu > a:not(.btn):hover {
    color: var(--marsala);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 14px 21px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--marsala);
    color: white;
}

.btn-primary:hover {
    background: var(--marsala-dark);
}

.btn-light {
    background: white;
    border-color: var(--line);
}

.btn-white {
    background: white;
    color: var(--marsala);
}

.mobile-menu-button,
.mobile-menu {
    display: none;
}

/* HERO */

.hero {
    padding: 74px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    display: block;
    color: var(--marsala);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(55px, 7vw, 96px);
    line-height: .95;
    font-weight: 400;
    letter-spacing: -.055em;
    margin: 0 0 27px;
}

.hero-content > p {
    max-width: 670px;
    font-size: 20px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image {
    min-height: 610px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;

    border-radius: 38px;
    border: 1px solid var(--line);

    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(123,31,42,.13),
            transparent 28%
        ),
        linear-gradient(145deg, white, #eee4de);
}

.hero-image img {
    max-height: 580px;
}

.hero-seal {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 28px;
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 800;
    color: var(--marsala);
}

/* FORMATOS */

.formats-strip {
    padding: 30px 0 80px;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.formats-grid div {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.formats-grid div:last-child {
    border-right: 0;
}

.formats-grid strong {
    display: block;
    font-family: Georgia, serif;
    color: var(--marsala);
    font-size: 29px;
    font-weight: 400;
}

.formats-grid span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
}

/* INTRO */

.intro {
    padding: 90px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;
}

.intro h2 {
    font-family: Georgia, serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 22px;
    letter-spacing: -.035em;
}

.intro p {
    font-size: 20px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0;
}

/* SECOES */

.section {
    padding: 95px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.03;
    font-weight: 400;
    margin: 0;
    letter-spacing: -.04em;
}

.section-header > p {
    max-width: 500px;
    line-height: 1.7;
    color: var(--muted);
}

/* PUBLICACOES */

.books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.book-card {
    padding: 15px;
    border-radius: 23px;
    background: white;
    border: 1px solid var(--line);
    transition: .25s;
}

.book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

.book-cover {
    aspect-ratio: 3 / 4.25;
    border-radius: 13px;
    color: white;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.book-cover small {
    font-size: 10px;
    letter-spacing: .17em;
    font-weight: bold;
}

.book-cover h3 {
    font-family: Georgia, serif;
    font-weight: 400;
    line-height: 1.02;
    font-size: 30px;
    margin: 0;
}

.book-cover > span {
    font-size: 11px;
}

.cover-marsala {
    background: linear-gradient(145deg, #812634, #300e13);
}

.cover-dark {
    background: linear-gradient(145deg, #294247, #10191b);
}

.cover-orange {
    background: linear-gradient(145deg, #c4663e, #71321f);
}

.cover-purple {
    background: linear-gradient(145deg, #776c88, #332d3d);
}

.book-info {
    padding: 17px 4px 3px;
}

.book-info strong,
.book-info span {
    display: block;
}

.book-info span {
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px;
}

/* EDITORIAL */

.editorial-section {
    background: #171313;
    color: white;
    padding: 100px 0;
}

.editorial-header > p {
    color: #c7bbbb;
}

.editorial-section .eyebrow {
    color: #e7adb7;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid rgba(255,255,255,.14);
    border-top: 1px solid rgba(255,255,255,.14);
}

.editorial-item {
    min-height: 220px;
    padding: 38px;
    border-right: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.editorial-item > span {
    color: #e7adb7;
    font-size: 11px;
    letter-spacing: .15em;
}

.editorial-item h3 {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    margin: 35px 0 10px;
}

.editorial-item p {
    color: #c7bbbb;
    line-height: 1.65;
    margin: 0;
}

/* ISP */

.isp-section {
    padding: 110px 0;
}

.isp-card {
    display: grid;
    grid-template-columns: 1.07fr .93fr;
    gap: 60px;
    align-items: center;

    background: white;
    border: 1px solid var(--line);
    border-radius: 38px;
    padding: 60px;

    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.isp-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.03;
    font-weight: 400;
    margin: 0 0 22px;
    letter-spacing: -.04em;
}

.isp-content > p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 18px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 25px 0;
}

.tags span {
    background: var(--soft);
    padding: 10px 14px;
    border-radius: 100px;
    font-size: 13px;
}

.isp-image {
    background: var(--soft);
    border-radius: 27px;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.isp-image img {
    max-height: 420px;
}

/* AUTORES */

.authors-section {
    padding: 20px 0 100px;
}

.authors-card {
    background:
        linear-gradient(
            135deg,
            var(--marsala),
            #461016
        );

    border-radius: 38px;
    color: white;

    padding: 60px;

    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 60px;

    overflow: hidden;
}

.authors-image img {
    max-height: 370px;
    margin: auto;
}

.authors-content .eyebrow {
    color: #efc6ce;
}

.authors-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.04;
    font-weight: 400;
    margin: 0 0 20px;
}

.authors-content p {
    color: #edd9dd;
    font-size: 18px;
    line-height: 1.7;
}

/* SOBRE */

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}

.about-grid h2 {
    font-family: Georgia, serif;
    font-size: clamp(43px, 5vw, 67px);
    line-height: 1.04;
    font-weight: 400;
    margin: 0;
}

.about-grid p {
    font-size: 19px;
    line-height: 1.75;
    color: var(--muted);
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--marsala);
    font-weight: 700;
}

/* NEWSLETTER */

.newsletter {
    padding: 20px 0 90px;
}

.newsletter-box {
    background: var(--soft);
    border-radius: 30px;
    padding: 42px;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    align-items: center;
}

.newsletter-box h2 {
    font-family: Georgia, serif;
    font-size: 37px;
    font-weight: 400;
    margin: 0 0 10px;
}

.newsletter-box p {
    margin: 0;
    color: var(--muted);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    width: 300px;
    border: 1px solid var(--line);
    background: white;
    padding: 15px 17px;
    border-radius: 100px;
    outline: none;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid var(--line);
    padding: 55px 0 26px;
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, .7fr);
    gap: 40px;
}

.footer-brand img {
    height: 65px;
    width: auto;
}

.footer-brand p {
    color: var(--muted);
}

.footer-grid h4 {
    margin: 0 0 14px;
}

.footer-grid > div:not(.footer-brand) a {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-grid a:hover {
    color: var(--marsala);
}

.footer-bottom {
    margin-top: 38px;
    border-top: 1px solid var(--line);
    padding-top: 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    color: var(--muted);
    font-size: 13px;
}

.footer-bottom footer {
    display: inline;
}

/* MOBILE */

@media (max-width: 950px) {

    .desktop-menu {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        width: 46px;
        height: 46px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .mobile-menu-button span {
        width: 19px;
        height: 2px;
        background: var(--ink);
    }

    .mobile-menu {
        display: none;
        border-top: 1px solid var(--line);
        background: white;
        padding: 15px 20px 25px;
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-grid,
    .intro-grid,
    .isp-card,
    .authors-card,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image {
        min-height: 500px;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 620px) {

    .container {
        width: calc(100% - 24px);
    }

    .topbar {
        font-size: 9px;
    }

    .nav {
        min-height: 74px;
    }

    .logo img {
        height: 48px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-content > p {
        font-size: 17px;
    }

    .hero-image {
        min-height: 390px;
        border-radius: 27px;
    }

    .formats-grid,
    .books-grid,
    .editorial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .formats-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .isp-card,
    .authors-card {
        padding: 30px 23px;
        border-radius: 27px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =========================================================
   PUBLICACOES REAIS
   ========================================================= */

.books-real {
    align-items: start;
}

.book-real {
    background: transparent;
    border: 0;
    padding: 0;
}

.book-real:hover {
    box-shadow: none;
    transform: translateY(-7px);
}

.real-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4.25;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    padding: 12px 12px 16px;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 50% 20%,
            #ffffff 0,
            #f6f1ed 48%,
            #ede5df 100%
        );

    overflow: hidden;
}

.real-cover img {
    display: block;

    width: auto;
    height: 100%;
    max-width: 100%;

    object-fit: contain;

    border-radius: 3px;

    box-shadow:
        0 24px 40px rgba(32, 20, 20, .18),
        0 8px 15px rgba(32, 20, 20, .10);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.book-real:hover .real-cover img {
    transform: translateY(-5px) scale(1.015);

    box-shadow:
        0 30px 50px rgba(32, 20, 20, .22),
        0 10px 18px rgba(32, 20, 20, .12);
}

.book-real .book-info {
    padding: 20px 5px 5px;
}

.book-real .book-info strong {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
}

.publication-type {
    display: block;

    color: var(--marsala) !important;

    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: .18em;

    margin: 0 0 8px !important;
}

.book-real .book-info > span:last-child {
    margin-top: 8px;
}


/* MOBILE */

@media (max-width: 620px) {

    .real-cover {
        aspect-ratio: auto;
        min-height: 460px;
    }

    .real-cover img {
        max-height: 440px;
    }

}

/* =========================================================
   PARA AUTORES - EDITORIAL
   ========================================================= */

.authors-editorial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 620px;

    background: var(--marsala);
    border-radius: 38px;

    overflow: hidden;
}

.authors-photo {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.authors-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}

.authors-editorial-card:hover .authors-photo img {
    transform: scale(1.025);
}

.authors-editorial-content {
    padding: 70px 64px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: white;
}

.authors-editorial-content .eyebrow {
    color: #efc6ce;
}

.authors-editorial-content h2 {
    max-width: 620px;

    margin: 0 0 24px;

    font-family: Georgia, serif;
    font-size: clamp(42px, 4.5vw, 65px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.035em;
}

.authors-editorial-content p {
    max-width: 580px;

    margin: 0 0 30px;

    color: #f0dcdf;

    font-size: 18px;
    line-height: 1.75;
}

.authors-editorial-content .btn {
    align-self: flex-start;
}


/* TABLET */

@media (max-width: 950px) {

    .authors-editorial-card {
        grid-template-columns: 1fr;
    }

    .authors-photo {
        min-height: 520px;
    }

}


/* MOBILE */

@media (max-width: 620px) {

    .authors-editorial-card {
        border-radius: 27px;
        min-height: auto;
    }

    .authors-photo {
        min-height: 360px;
    }

    .authors-editorial-content {
        padding: 42px 25px 46px;
    }

    .authors-editorial-content h2 {
        font-size: 42px;
    }

    .authors-editorial-content p {
        font-size: 17px;
    }

}

/* =========================================================
   PARA AUTORES - AJUSTE COMPACTO
   ========================================================= */

.authors-editorial-card {
    min-height: 400px;
}

.authors-photo {
    min-height: 400px;
    height: 400px;
}

.authors-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.authors-editorial-content {
    padding: 42px 50px;
}

.authors-editorial-content h2 {
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.authors-editorial-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
}

@media (max-width: 950px) {

    .authors-photo {
        height: 420px;
        min-height: 420px;
    }

}

@media (max-width: 620px) {

    .authors-editorial-card {
        min-height: auto;
    }

    .authors-photo {
        height: 300px;
        min-height: 300px;
    }

    .authors-editorial-content {
        padding: 34px 24px 38px;
    }

    .authors-editorial-content h2 {
        font-size: 36px;
    }

}

/* Ajuste de ritmo entre Para Autores e Sobre */

.authors-section {
    padding-bottom: 45px;
}

.about-section {
    padding-top: 55px;
}

@media (max-width: 620px) {
    .authors-section {
        padding-bottom: 30px;
    }

    .about-section {
        padding-top: 40px;
    }
}

/* CORRECAO DO DENTE - PARA AUTORES */

.authors-editorial-card {
    align-items: stretch;
}

.authors-photo {
    height: auto !important;
    min-height: 400px;
    align-self: stretch;
}

.authors-photo img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 950px) {
    .authors-photo {
        height: 420px !important;
        min-height: 420px;
    }
}

@media (max-width: 620px) {
    .authors-photo {
        height: 300px !important;
        min-height: 300px;
    }
}


/* =========================================================
   PAGINA PARA AUTORES
   ========================================================= */

.authors-page {
    overflow: hidden;
}


/* HERO */

.author-hero {
    padding: 85px 0 100px;
}

.author-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: stretch;
}

.author-hero-content {
    padding: 35px 0;
}

.author-hero-content h1 {
    max-width: 800px;

    margin: 0 0 28px;

    font-family: Georgia, serif;
    font-size: clamp(58px, 7vw, 98px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.055em;
}

.author-hero-lead {
    max-width: 700px;

    margin: 0 0 32px;

    color: var(--muted);

    font-size: 20px;
    line-height: 1.7;
}

.author-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.author-text-link {
    color: var(--marsala);
    font-size: 14px;
    font-weight: 700;
}

.author-hero-visual {
    min-height: 530px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 55px;

    border-radius: 38px;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255,255,255,.11),
            transparent 30%
        ),
        var(--marsala);

    color: white;
}

.author-hero-quote > span {
    display: block;

    height: 75px;

    font-family: Georgia, serif;
    font-size: 130px;
    line-height: 1;

    color: rgba(255,255,255,.22);
}

.author-hero-quote p {
    max-width: 430px;

    margin: 25px 0 32px;

    font-family: Georgia, serif;
    font-size: 40px;
    line-height: 1.08;
}

.author-hero-quote small {
    color: #efcbd1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}


/* FRASE CENTRAL */

.author-statement {
    padding: 110px 0;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.author-statement-grid {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 70px;
}

.author-statement h2 {
    max-width: 850px;

    margin: 0 0 24px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5.7vw, 78px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.author-statement p {
    max-width: 680px;

    margin: 0;

    color: var(--muted);

    font-size: 22px;
    line-height: 1.6;
}


/* PROCESSO */

.author-process {
    padding: 110px 0;
}

.author-section-head {
    max-width: 730px;
    margin-bottom: 55px;
}

.author-section-head h2 {
    margin: 0 0 18px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.author-section-head p {
    max-width: 600px;
    margin: 0;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.author-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.author-process-item {
    min-height: 320px;
    padding: 34px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.author-number {
    color: var(--marsala);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.author-process-item h3 {
    margin: 65px 0 16px;

    font-family: Georgia, serif;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.1;
}

.author-process-item p {
    margin: 0;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}


/* POSSIBILIDADES */

.author-possibilities {
    padding: 110px 0;

    background: #171313;
    color: white;
}

.author-possibilities .eyebrow {
    color: #e8b7bf;
}

.author-possibilities-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.author-possibilities h2 {
    max-width: 550px;

    margin: 0 0 24px;

    font-family: Georgia, serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.author-possibilities p {
    color: #c8bebe;
    font-size: 18px;
    line-height: 1.7;
}

.author-topic-list {
    border-top: 1px solid rgba(255,255,255,.16);
}

.author-topic-list > div {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.16);

    font-family: Georgia, serif;
    font-size: 24px;
}

.author-topic-list span {
    min-width: 30px;

    color: #dba2ac;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}


/* FORMULARIO */

.author-form-section {
    padding: 120px 0;
}

.author-form-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;

    padding: 65px;

    background: white;
    border: 1px solid var(--line);
    border-radius: 38px;

    box-shadow: 0 25px 70px rgba(40,25,25,.07);
}

.author-form-intro h2 {
    margin: 0 0 22px;

    font-family: Georgia, serif;
    font-size: clamp(43px, 4.6vw, 63px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.author-form-intro > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.author-form-note {
    margin-top: 35px;
    padding: 22px;

    background: var(--soft);
    border-radius: 18px;
}

.author-form-note strong {
    color: var(--marsala);
}

.author-form-note p {
    margin: 7px 0 0;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.author-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-field label {
    font-size: 13px;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;

    padding: 15px 16px;

    background: var(--bg);

    border: 1px solid var(--line);
    border-radius: 12px;

    outline: none;

    color: var(--ink);
    font: inherit;

    transition: .2s;
}

.form-field textarea {
    resize: vertical;
    min-height: 160px;
}

.form-field input:focus,
.form-field textarea:focus {
    background: white;
    border-color: var(--marsala);

    box-shadow: 0 0 0 3px rgba(123,31,42,.07);
}

.author-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;

    cursor: pointer;
}

.author-consent input {
    margin-top: 3px;
}

.author-submit {
    align-self: flex-start;
    margin-top: 5px;
}


/* FECHAMENTO */

.author-closing {
    padding: 30px 0 120px;
}

.author-closing-inner {
    max-width: 900px;
    text-align: center;
}

.author-closing h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}


/* RESPONSIVO */

@media (max-width: 950px) {

    .author-hero-grid,
    .author-statement-grid,
    .author-possibilities-grid,
    .author-form-card {
        grid-template-columns: 1fr;
    }

    .author-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .author-hero-visual {
        min-height: 400px;
    }

}


@media (max-width: 620px) {

    .author-hero {
        padding: 50px 0 70px;
    }

    .author-hero-content h1 {
        font-size: 52px;
    }

    .author-hero-lead {
        font-size: 17px;
    }

    .author-hero-visual {
        min-height: 330px;
        padding: 35px 28px;
        border-radius: 27px;
    }

    .author-hero-quote p {
        font-size: 33px;
    }

    .author-statement,
    .author-process,
    .author-possibilities,
    .author-form-section {
        padding: 75px 0;
    }

    .author-process-grid {
        grid-template-columns: 1fr;
    }

    .author-process-item {
        min-height: auto;
    }

    .author-process-item h3 {
        margin-top: 38px;
    }

    .author-possibilities-grid {
        gap: 50px;
    }

    .author-topic-list > div {
        font-size: 20px;
    }

    .author-form-card {
        gap: 45px;
        padding: 32px 22px;
        border-radius: 27px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .author-submit {
        width: 100%;
    }

    .author-closing {
        padding-bottom: 80px;
    }

}

/* =========================================================
   PROJETO DE AUTOR - NOVO LAYOUT
   ========================================================= */

.author-form-section-new {
    padding: 110px 0;
}

.author-project-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;

    padding: 64px;

    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(255,255,255,.06),
            transparent 28%
        ),
        #171313;

    border-radius: 38px;
    overflow: hidden;
}

.author-project-copy {
    color: white;
}

.author-project-copy .eyebrow {
    color: #e8b7bf;
}

.author-project-copy h2 {
    max-width: 560px;

    margin: 0 0 24px;

    font-family: Georgia, serif;
    font-size: clamp(46px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.author-project-copy > p {
    max-width: 540px;

    margin: 0;

    color: #cfc5c3;

    font-size: 18px;
    line-height: 1.72;
}

.author-project-quote {
    margin-top: 34px;
    padding: 22px 0 22px 22px;

    border-left: 2px solid var(--marsala);

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.author-project-quote strong {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.author-project-quote span {
    color: #cfc5c3;
    font-size: 14px;
}

.author-project-closing {
    margin-top: 42px;

    max-width: 520px;

    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.15;

    color: #f2e5e7;
}


/* CARD DO FORMULARIO */

.author-project-form-card {
    padding: 34px;

    background: white;
    border-radius: 28px;

    box-shadow: 0 30px 70px rgba(0,0,0,.18);
}

.author-project-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.author-project-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-project-form .form-field label {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
}

.author-project-form .form-field input,
.author-project-form .form-field textarea {
    width: 100%;

    border: 1px solid var(--line);
    border-radius: 12px;

    background: #fbfaf8;

    padding: 14px 15px;

    color: var(--ink);
    font: inherit;

    outline: none;

    transition: .2s;
}

.author-project-form .form-field textarea {
    min-height: 145px;
    resize: vertical;
}

.author-project-form .form-field input:focus,
.author-project-form .form-field textarea:focus {
    background: white;
    border-color: var(--marsala);

    box-shadow:
        0 0 0 3px rgba(123,31,42,.07);
}

.author-project-form .author-consent {
    margin-top: 2px;
}

.author-project-form .author-submit {
    align-self: flex-start;
    min-width: 220px;
}


/* REMOVE FECHAMENTO ANTIGO SE AINDA HOUVER */

.author-closing {
    display: none;
}


/* TABLET */

@media (max-width: 950px) {

    .author-project-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

}


/* MOBILE */

@media (max-width: 620px) {

    .author-form-section-new {
        padding: 70px 0;
    }

    .author-project-wrap {
        padding: 34px 22px;
        border-radius: 28px;
    }

    .author-project-copy h2 {
        font-size: 44px;
    }

    .author-project-copy > p {
        font-size: 16px;
    }

    .author-project-closing {
        font-size: 25px;
    }

    .author-project-form-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .author-form-grid {
        grid-template-columns: 1fr;
    }

    .author-project-form .author-submit {
        width: 100%;
    }

}

/* =========================================================
   HERO AUTORES - FOTO
   ========================================================= */

.author-hero-photo {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    background: #171313;
}

.author-hero-photo img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .7s ease;
}

.author-hero-photo:hover img {
    transform: scale(1.025);
}

.author-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(23, 19, 19, .82) 0%,
            rgba(23, 19, 19, .18) 45%,
            transparent 70%
        );
}

.author-photo-caption {
    position: absolute;
    z-index: 2;

    left: 38px;
    right: 38px;
    bottom: 36px;

    color: white;
}

.author-photo-caption span {
    display: block;

    margin-bottom: 10px;

    color: #efc6ce;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}

.author-photo-caption strong {
    display: block;
    max-width: 420px;

    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
}

@media (max-width: 620px) {

    .author-hero-photo {
        min-height: 390px;
    }

    .author-photo-caption {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .author-photo-caption strong {
        font-size: 23px;
    }

}

/* =========================================================
   HERO AUTORES - CORRECAO FINAL DA FOTO
   ========================================================= */

.author-hero-visual.author-hero-photo {
    position: relative !important;

    display: block !important;

    min-height: 530px !important;
    height: 530px !important;

    padding: 0 !important;

    border-radius: 38px !important;
    overflow: hidden !important;

    background: #171313 !important;
}

.author-hero-visual.author-hero-photo > img {
    position: absolute !important;
    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 0 !important;
}

.author-hero-visual.author-hero-photo::after {
    content: "" !important;

    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;

    background:
        linear-gradient(
            to top,
            rgba(20, 10, 11, .82) 0%,
            rgba(20, 10, 11, .22) 38%,
            rgba(20, 10, 11, 0) 68%
        ) !important;

    pointer-events: none;
}

.author-hero-visual .author-photo-caption {
    position: absolute !important;
    z-index: 2 !important;

    left: 34px !important;
    right: 34px !important;
    bottom: 32px !important;

    width: auto !important;

    color: white !important;
}

.author-hero-visual .author-photo-caption span {
    display: block !important;

    margin: 0 0 9px !important;

    color: #efc6ce !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: .18em !important;
}

.author-hero-visual .author-photo-caption strong {
    display: block !important;

    width: auto !important;
    max-width: 390px !important;

    margin: 0 !important;

    color: white !important;

    font-family: Georgia, serif !important;
    font-size: 27px !important;
    font-weight: 400 !important;
    line-height: 1.13 !important;
}


/* TABLET */

@media (max-width: 950px) {

    .author-hero-visual.author-hero-photo {
        height: 500px !important;
        min-height: 500px !important;
    }

}


/* MOBILE */

@media (max-width: 620px) {

    .author-hero-visual.author-hero-photo {
        height: 390px !important;
        min-height: 390px !important;

        border-radius: 27px !important;
    }

    .author-hero-visual .author-photo-caption {
        left: 24px !important;
        right: 24px !important;
        bottom: 24px !important;
    }

    .author-hero-visual .author-photo-caption strong {
        max-width: 310px !important;
        font-size: 23px !important;
    }

}

/* Anti-spam */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Feedback do formulario de autores */

.form-feedback {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin-bottom: 24px;
    padding: 17px 18px;

    border-radius: 12px;

    font-size: 14px;
    line-height: 1.55;
}

.form-feedback strong {
    font-size: 15px;
}

.form-feedback-success {
    background: #eef7f0;
    border: 1px solid #cfe5d3;
    color: #285a32;
}

.form-feedback-error {
    background: #fbefef;
    border: 1px solid #eccccc;
    color: #82232c;
}

/* =========================================================
   PROVEDORES - FOTO EDITORIAL
   ========================================================= */

.isp-card-photo {
    grid-template-columns: .88fr 1.12fr;
    padding: 0 !important;
    overflow: hidden;
    min-height: 510px;
}

.isp-card-photo .isp-content {
    padding: 55px 0 55px 55px;
    align-self: center;
}

.isp-card-photo .isp-content h2 {
    max-width: 520px;
}

.isp-card-photo .isp-content > p {
    max-width: 500px;
}

.isp-photo {
    position: relative;
    min-height: 510px;
    overflow: hidden;
}

.isp-photo img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}

.isp-card-photo:hover .isp-photo img {
    transform: scale(1.025);
}

.isp-photo::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20, 12, 13, .72) 0%,
            rgba(20, 12, 13, .14) 40%,
            transparent 67%
        );
}

.isp-photo-caption {
    position: absolute;
    z-index: 2;

    left: 34px;
    right: 34px;
    bottom: 30px;

    color: white;
}

.isp-photo-caption span {
    display: block;

    margin-bottom: 9px;

    color: #efc6ce;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.isp-photo-caption strong {
    display: block;

    max-width: 440px;

    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.12;
}


/* TABLET */

@media (max-width: 950px) {

    .isp-card-photo {
        grid-template-columns: 1fr;
    }

    .isp-card-photo .isp-content {
        padding: 45px;
    }

    .isp-photo {
        min-height: 460px;
    }

}


/* MOBILE */

@media (max-width: 620px) {

    .isp-card-photo .isp-content {
        padding: 35px 24px;
    }

    .isp-photo {
        min-height: 360px;
    }

    .isp-photo-caption {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .isp-photo-caption strong {
        font-size: 23px;
    }

}


/* =========================================================
   SOBRE A BILGI TECH
   ========================================================= */

.about-page {
    overflow: hidden;
}


/* HERO */

.about-hero {
    padding: 105px 0 115px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 90px;
    align-items: end;
}

.about-hero-content h1 {
    max-width: 850px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(62px, 7.4vw, 104px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.055em;
}

.about-hero-intro {
    padding-bottom: 8px;
}

.about-hero-intro p {
    margin: 0 0 20px;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.about-hero-intro p:last-child {
    margin-bottom: 0;
}


/* DEFINICAO */

.about-definition {
    padding: 0 0 110px;
}

.about-definition-card {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 70px;

    padding: 65px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-definition-content {
    max-width: 850px;
}

.about-definition-content h2 {
    margin: 0 0 30px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.about-definition-content p {
    max-width: 760px;

    margin: 0 0 20px;

    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.about-definition-content .about-definition-lead {
    color: var(--ink);

    font-family: Georgia, serif;
    font-size: 27px;
    line-height: 1.45;
}


/* PILARES */

.about-pillars {
    padding: 0 0 120px;
}

.about-section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.about-section-heading h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.about-pillar {
    min-height: 315px;
    padding: 36px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-pillar-number {
    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.about-pillar h3 {
    margin: 85px 0 17px;

    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}

.about-pillar p {
    max-width: 320px;
    margin: 0;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}


/* POSICIONAMENTO */

.about-positioning {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255,255,255,.05),
            transparent 30%
        ),
        #171313;

    color: white;
}

.about-positioning-inner {
    max-width: 1050px;
}

.about-positioning .eyebrow {
    color: #e8b7bf;
}

.about-positioning h2 {
    max-width: 900px;

    margin: 0 0 42px;

    font-family: Georgia, serif;
    font-size: clamp(58px, 6.8vw, 92px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.05em;
}

.about-positioning-copy {
    max-width: 730px;
    margin-bottom: 35px;
}

.about-positioning-copy p {
    color: #cec3c1;

    font-size: 18px;
    line-height: 1.72;
}


/* ESPECIALIDADE */

.about-specialty {
    padding: 120px 0;
}

.about-specialty-card {
    display: grid;
    grid-template-columns: 1.08fr .92fr;

    min-height: 570px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 36px;

    background: white;
}

.about-specialty-photo {
    position: relative;
    min-height: 570px;
    overflow: hidden;
}

.about-specialty-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(30,15,17,.20),
            transparent 45%
        );
}

.about-specialty-photo img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.about-specialty-content {
    align-self: center;

    padding: 55px;
}

.about-specialty-content h2 {
    margin: 0 0 25px;

    font-family: Georgia, serif;
    font-size: clamp(43px, 4.5vw, 63px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.about-specialty-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.about-specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 30px;
}

.about-specialty-tags span {
    padding: 8px 12px;

    border: 1px solid var(--line);
    border-radius: 999px;

    color: var(--marsala);

    font-size: 11px;
    font-weight: 700;
}


/* EMPRESA */

.about-company {
    padding: 20px 0 120px;
}

.about-company-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.about-company h2 {
    max-width: 550px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(45px, 5vw, 67px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.about-company-data {
    border-top: 1px solid var(--line);
}

.about-company-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;

    padding: 21px 0;

    border-bottom: 1px solid var(--line);
}

.about-company-row span {
    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.about-company-row strong {
    font-size: 15px;
    font-weight: 600;
}


/* FECHAMENTO */

.about-closing {
    padding: 0 0 120px;
}

.about-closing-inner {
    padding: 75px 45px;

    background: var(--soft);
    border-radius: 36px;

    text-align: center;
}

.about-closing-logo {
    display: block;

    width: 115px;
    max-height: 90px;

    object-fit: contain;

    margin: 0 auto 28px;
}

.about-closing-inner h2 {
    max-width: 900px;

    margin: 0 auto 24px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5.5vw, 74px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.about-closing-inner p {
    max-width: 620px;

    margin: 0 auto 30px;

    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   SOBRE - RESPONSIVO
   ========================================================= */

@media (max-width: 950px) {

    .about-hero-grid,
    .about-definition-card,
    .about-specialty-card,
    .about-company-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-grid {
        gap: 45px;
    }

    .about-definition-card {
        gap: 30px;
        padding: 50px 0;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-pillar {
        min-height: auto;
    }

    .about-pillar h3 {
        margin-top: 45px;
    }

    .about-specialty-photo {
        min-height: 480px;
    }

}


@media (max-width: 620px) {

    .about-hero {
        padding: 60px 0 75px;
    }

    .about-hero-content h1 {
        font-size: 55px;
    }

    .about-definition,
    .about-pillars {
        padding-bottom: 75px;
    }

    .about-definition-card {
        padding: 40px 0;
    }

    .about-positioning {
        padding: 80px 0;
    }

    .about-positioning h2 {
        font-size: 54px;
    }

    .about-specialty {
        padding: 75px 0;
    }

    .about-specialty-card {
        border-radius: 27px;
    }

    .about-specialty-photo {
        min-height: 350px;
    }

    .about-specialty-content {
        padding: 35px 24px;
    }

    .about-company {
        padding-bottom: 80px;
    }

    .about-company-grid {
        gap: 45px;
    }

    .about-company-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .about-closing {
        padding-bottom: 80px;
    }

    .about-closing-inner {
        padding: 55px 24px;
        border-radius: 27px;
    }

}


/* =========================================================
   SOBRE A BILGI TECH
   ========================================================= */

.about-page {
    overflow: hidden;
}


/* HERO */

.about-hero {
    padding: 105px 0 115px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 90px;
    align-items: end;
}

.about-hero-content h1 {
    max-width: 850px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(62px, 7.4vw, 104px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.055em;
}

.about-hero-intro {
    padding-bottom: 8px;
}

.about-hero-intro p {
    margin: 0 0 20px;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.about-hero-intro p:last-child {
    margin-bottom: 0;
}


/* DEFINICAO */

.about-definition {
    padding: 0 0 110px;
}

.about-definition-card {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 70px;

    padding: 65px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-definition-content {
    max-width: 850px;
}

.about-definition-content h2 {
    margin: 0 0 30px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.about-definition-content p {
    max-width: 760px;

    margin: 0 0 20px;

    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.about-definition-content .about-definition-lead {
    color: var(--ink);

    font-family: Georgia, serif;
    font-size: 27px;
    line-height: 1.45;
}


/* PILARES */

.about-pillars {
    padding: 0 0 120px;
}

.about-section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.about-section-heading h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.about-pillar {
    min-height: 315px;
    padding: 36px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-pillar-number {
    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.about-pillar h3 {
    margin: 85px 0 17px;

    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}

.about-pillar p {
    max-width: 320px;
    margin: 0;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}


/* POSICIONAMENTO */

.about-positioning {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255,255,255,.05),
            transparent 30%
        ),
        #171313;

    color: white;
}

.about-positioning-inner {
    max-width: 1050px;
}

.about-positioning .eyebrow {
    color: #e8b7bf;
}

.about-positioning h2 {
    max-width: 900px;

    margin: 0 0 42px;

    font-family: Georgia, serif;
    font-size: clamp(58px, 6.8vw, 92px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.05em;
}

.about-positioning-copy {
    max-width: 730px;
    margin-bottom: 35px;
}

.about-positioning-copy p {
    color: #cec3c1;

    font-size: 18px;
    line-height: 1.72;
}


/* ESPECIALIDADE */

.about-specialty {
    padding: 120px 0;
}

.about-specialty-card {
    display: grid;
    grid-template-columns: 1.08fr .92fr;

    min-height: 570px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 36px;

    background: white;
}

.about-specialty-photo {
    position: relative;
    min-height: 570px;
    overflow: hidden;
}

.about-specialty-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(30,15,17,.20),
            transparent 45%
        );
}

.about-specialty-photo img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.about-specialty-content {
    align-self: center;

    padding: 55px;
}

.about-specialty-content h2 {
    margin: 0 0 25px;

    font-family: Georgia, serif;
    font-size: clamp(43px, 4.5vw, 63px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.about-specialty-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.about-specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 30px;
}

.about-specialty-tags span {
    padding: 8px 12px;

    border: 1px solid var(--line);
    border-radius: 999px;

    color: var(--marsala);

    font-size: 11px;
    font-weight: 700;
}


/* EMPRESA */

.about-company {
    padding: 20px 0 120px;
}

.about-company-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.about-company h2 {
    max-width: 550px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(45px, 5vw, 67px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.about-company-data {
    border-top: 1px solid var(--line);
}

.about-company-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;

    padding: 21px 0;

    border-bottom: 1px solid var(--line);
}

.about-company-row span {
    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.about-company-row strong {
    font-size: 15px;
    font-weight: 600;
}


/* FECHAMENTO */

.about-closing {
    padding: 0 0 120px;
}

.about-closing-inner {
    padding: 75px 45px;

    background: var(--soft);
    border-radius: 36px;

    text-align: center;
}

.about-closing-logo {
    display: block;

    width: 115px;
    max-height: 90px;

    object-fit: contain;

    margin: 0 auto 28px;
}

.about-closing-inner h2 {
    max-width: 900px;

    margin: 0 auto 24px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5.5vw, 74px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.about-closing-inner p {
    max-width: 620px;

    margin: 0 auto 30px;

    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   SOBRE - RESPONSIVO
   ========================================================= */

@media (max-width: 950px) {

    .about-hero-grid,
    .about-definition-card,
    .about-specialty-card,
    .about-company-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-grid {
        gap: 45px;
    }

    .about-definition-card {
        gap: 30px;
        padding: 50px 0;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-pillar {
        min-height: auto;
    }

    .about-pillar h3 {
        margin-top: 45px;
    }

    .about-specialty-photo {
        min-height: 480px;
    }

}


@media (max-width: 620px) {

    .about-hero {
        padding: 60px 0 75px;
    }

    .about-hero-content h1 {
        font-size: 55px;
    }

    .about-definition,
    .about-pillars {
        padding-bottom: 75px;
    }

    .about-definition-card {
        padding: 40px 0;
    }

    .about-positioning {
        padding: 80px 0;
    }

    .about-positioning h2 {
        font-size: 54px;
    }

    .about-specialty {
        padding: 75px 0;
    }

    .about-specialty-card {
        border-radius: 27px;
    }

    .about-specialty-photo {
        min-height: 350px;
    }

    .about-specialty-content {
        padding: 35px 24px;
    }

    .about-company {
        padding-bottom: 80px;
    }

    .about-company-grid {
        gap: 45px;
    }

    .about-company-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .about-closing {
        padding-bottom: 80px;
    }

    .about-closing-inner {
        padding: 55px 24px;
        border-radius: 27px;
    }

}

/* =========================================================
   SOBRE - NOVO LAYOUT EDITORIAL
   ========================================================= */

.about-page-new {
    overflow: hidden;
}


/* HERO */

.about-new-hero {
    padding: 75px 0 105px;
}

.about-new-hero-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 60px;
    align-items: stretch;
}

.about-new-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-new-hero-copy h1 {
    max-width: 700px;

    margin: 0 0 28px;

    font-family: Georgia, serif;
    font-size: clamp(62px, 7vw, 98px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.055em;
}

.about-new-hero-copy > p {
    max-width: 610px;

    margin: 0;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.7;
}

.about-new-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}

.about-new-meta span {
    padding: 9px 13px;

    border: 1px solid var(--line);
    border-radius: 999px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
}

.about-new-hero-photo {
    position: relative;

    min-height: 620px;

    border-radius: 38px;
    overflow: hidden;

    background: var(--soft);
}

.about-new-hero-photo img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* DEFINICAO */

.about-new-definition {
    padding: 110px 0;
}

.about-new-definition-grid {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 80px;
}

.about-new-definition h2 {
    max-width: 860px;

    margin: 0 0 28px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.about-new-definition p {
    max-width: 760px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.75;
}

.about-new-definition .about-new-lead {
    color: var(--ink);

    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1.45;
}


/* MANIFESTO */

.about-new-manifesto {
    padding: 125px 0;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255,255,255,.06),
            transparent 30%
        ),
        var(--marsala);

    color: white;
}

.about-new-manifesto-inner {
    max-width: 1050px;
}

.about-new-manifesto .eyebrow {
    color: #f1c8cf;
}

.about-new-manifesto h2 {
    max-width: 900px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(64px, 7vw, 98px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.055em;
}

.about-new-manifesto-inner > p {
    margin: 20px 0 40px;

    font-family: Georgia, serif;
    font-size: 35px;
    line-height: 1.2;

    color: #f4dfe3;
}

.about-new-manifesto-copy {
    max-width: 720px;

    margin-bottom: 35px;
}

.about-new-manifesto-copy p {
    color: #f1dde0;

    font-size: 18px;
    line-height: 1.72;
}


/* PROCESSO */

.about-new-process {
    padding: 115px 0;
}

.about-new-process-head {
    max-width: 900px;

    margin-bottom: 55px;
}

.about-new-process-head h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.about-new-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.about-new-process-grid article {
    min-height: 300px;

    padding: 36px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-new-process-grid article > span {
    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.about-new-process-grid h3 {
    margin: 75px 0 16px;

    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}

.about-new-process-grid p {
    max-width: 320px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}


/* ESPECIALIDADE */

.about-new-specialty {
    padding: 20px 0 120px;
}

.about-new-specialty-card {
    display: grid;
    grid-template-columns: 1.08fr .92fr;

    min-height: 580px;

    overflow: hidden;

    background: white;

    border: 1px solid var(--line);
    border-radius: 38px;
}

.about-new-specialty-photo {
    position: relative;
    min-height: 580px;
}

.about-new-specialty-photo img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.about-new-specialty-copy {
    align-self: center;

    padding: 58px;
}

.about-new-specialty-copy h2 {
    margin: 0 0 25px;

    font-family: Georgia, serif;
    font-size: clamp(44px, 4.6vw, 64px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.about-new-specialty-copy p {
    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}

.about-new-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 28px;
}

.about-new-tags span {
    padding: 8px 12px;

    background: var(--soft);
    border-radius: 999px;

    font-size: 11px;
}


/* DADOS DA EMPRESA */

.about-new-company {
    padding: 15px 0 115px;
}

.about-new-company-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.about-new-company h2 {
    max-width: 600px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.about-new-company-data {
    border-top: 1px solid var(--line);
}

.about-new-company-data > div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;

    padding: 21px 0;

    border-bottom: 1px solid var(--line);
}

.about-new-company-data span {
    color: var(--muted);

    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.about-new-company-data strong {
    font-size: 15px;
}


/* FECHAMENTO */

.about-new-closing {
    padding: 0 0 120px;
}

.about-new-closing-inner {
    padding: 90px 45px;

    background: #171313;
    border-radius: 38px;

    color: white;
    text-align: center;
}

.about-new-closing-inner .eyebrow {
    color: #e8b7bf;
}

.about-new-closing-inner h2 {
    max-width: 900px;

    margin: 0 auto 32px;

    font-family: Georgia, serif;
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}


/* RESPONSIVO */

@media (max-width: 950px) {

    .about-new-hero-grid,
    .about-new-definition-grid,
    .about-new-specialty-card,
    .about-new-company-grid {
        grid-template-columns: 1fr;
    }

    .about-new-hero-photo {
        min-height: 500px;
    }

    .about-new-process-grid {
        grid-template-columns: 1fr;
    }

    .about-new-process-grid article {
        min-height: auto;
    }

    .about-new-process-grid h3 {
        margin-top: 45px;
    }

    .about-new-specialty-photo {
        min-height: 480px;
    }

}


@media (max-width: 620px) {

    .about-new-hero {
        padding: 50px 0 75px;
    }

    .about-new-hero-copy h1 {
        font-size: 54px;
    }

    .about-new-hero-photo {
        min-height: 380px;
        border-radius: 27px;
    }

    .about-new-definition {
        padding: 75px 0;
    }

    .about-new-definition-grid {
        gap: 35px;
    }

    .about-new-manifesto {
        padding: 80px 0;
    }

    .about-new-manifesto h2 {
        font-size: 54px;
    }

    .about-new-manifesto-inner > p {
        font-size: 28px;
    }

    .about-new-process {
        padding: 80px 0;
    }

    .about-new-specialty {
        padding-bottom: 80px;
    }

    .about-new-specialty-card {
        border-radius: 27px;
    }

    .about-new-specialty-photo {
        min-height: 360px;
    }

    .about-new-specialty-copy {
        padding: 36px 24px;
    }

    .about-new-company {
        padding-bottom: 80px;
    }

    .about-new-company-grid {
        gap: 45px;
    }

    .about-new-company-data > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .about-new-closing {
        padding-bottom: 80px;
    }

    .about-new-closing-inner {
        padding: 60px 24px;
        border-radius: 28px;
    }

}

/* BILGICO - assinatura institucional */

.about-new-company-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-new-bilgico-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: 150px;
    object-fit: contain;
    object-position: left center;
    margin: 0 0 30px;
}

@media (max-width: 620px) {

    .about-new-bilgico-logo {
        height: 36px;
        max-width: 130px;
        margin-bottom: 24px;
    }

}

/* =========================================================
   LIVROS - VITRINE EDITORIAL
   ========================================================= */

.books-page {
    overflow: hidden;
}


/* HERO */

.books-hero {
    padding: 95px 0 105px;
}

.books-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
}

.books-hero h1 {
    max-width: 800px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(62px, 7vw, 98px);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.055em;
}

.books-hero-copy p {
    max-width: 560px;

    margin: 0;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.75;
}


/* CATALOGO */

.books-catalog {
    padding: 20px 0 120px;
}

.books-catalog-head {
    margin-bottom: 55px;
}

.books-catalog-head h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.books-showcase {
    display: grid;
    gap: 100px;
}

.book-showcase-item {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 70px;
    align-items: center;

    padding-bottom: 90px;

    border-bottom: 1px solid var(--line);
}

.book-showcase-item:nth-child(even) {
    grid-template-columns: 1.22fr .78fr;
}

.book-showcase-item:nth-child(even) .book-showcase-cover {
    order: 2;
}

.book-showcase-item:nth-child(even) .book-showcase-info {
    order: 1;
}

.book-showcase-cover {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 560px;

    padding: 35px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 50% 20%,
            #fff,
            #f3ede9 70%
        );
}

.book-showcase-cover img {
    display: block;

    max-width: 100%;
    max-height: 500px;

    object-fit: contain;

    box-shadow:
        0 35px 60px rgba(30,20,20,.18),
        0 10px 20px rgba(30,20,20,.10);

    transition: transform .35s ease;
}

.book-showcase-cover:hover img {
    transform: translateY(-6px) scale(1.015);
}

.book-showcase-info {
    max-width: 650px;
}

.book-showcase-type {
    display: block;

    margin-bottom: 14px;

    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.book-showcase-info h3 {
    margin: 0 0 24px;

    font-family: Georgia, serif;
    font-size: clamp(42px, 4.7vw, 64px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.book-showcase-info p {
    max-width: 600px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.75;
}

.book-showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin: 28px 0;
}

.book-showcase-tags span {
    padding: 8px 12px;

    background: var(--soft);

    border-radius: 999px;

    font-size: 11px;
}

.book-showcase-link {
    display: inline-block;

    color: var(--marsala);

    font-size: 14px;
    font-weight: 800;
}

.book-showcase-link:hover {
    text-decoration: underline;
}


/* LINHAS */

.books-editorial-lines {
    padding: 110px 0;

    background: #171313;
    color: white;
}

.books-lines-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.books-editorial-lines .eyebrow {
    color: #e8b7bf;
}

.books-editorial-lines h2 {
    max-width: 620px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.books-lines-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(255,255,255,.14);
}

.books-lines-list span {
    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.14);

    color: #d8cecc;

    font-family: Georgia, serif;
    font-size: 22px;
}


/* CTA AUTOR */

.books-author-cta {
    padding: 110px 0;
}

.books-author-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;

    padding: 60px;

    border-radius: 36px;

    background: var(--marsala);

    color: white;
}

.books-author-card .eyebrow {
    color: #efc6ce;
}

.books-author-card h2 {
    max-width: 760px;

    margin: 0 0 18px;

    font-family: Georgia, serif;
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.books-author-card p {
    max-width: 700px;

    margin: 0;

    color: #eedadd;

    font-size: 17px;
    line-height: 1.7;
}


/* RESPONSIVO */

@media (max-width: 950px) {

    .books-hero-grid,
    .book-showcase-item,
    .book-showcase-item:nth-child(even),
    .books-lines-grid,
    .books-author-card {
        grid-template-columns: 1fr;
    }

    .book-showcase-item:nth-child(even) .book-showcase-cover,
    .book-showcase-item:nth-child(even) .book-showcase-info {
        order: initial;
    }

    .book-showcase-cover {
        min-height: 500px;
    }

    .books-author-action {
        justify-self: start;
    }

}


@media (max-width: 620px) {

    .books-hero {
        padding: 55px 0 75px;
    }

    .books-hero h1 {
        font-size: 54px;
    }

    .books-catalog {
        padding-bottom: 80px;
    }

    .books-showcase {
        gap: 70px;
    }

    .book-showcase-item {
        gap: 35px;
        padding-bottom: 65px;
    }

    .book-showcase-cover {
        min-height: 420px;
        padding: 25px;
        border-radius: 24px;
    }

    .book-showcase-cover img {
        max-height: 380px;
    }

    .books-editorial-lines {
        padding: 80px 0;
    }

    .books-lines-grid {
        gap: 45px;
    }

    .books-lines-list {
        grid-template-columns: 1fr;
    }

    .books-author-cta {
        padding: 75px 0;
    }

    .books-author-card {
        padding: 38px 24px;
        border-radius: 28px;
    }

}


/* =========================================================
   LIVROS - ESTANTE EDITORIAL
   ========================================================= */

.library-page {
    overflow: hidden;
}


/* HERO */

.library-hero {
    padding: 90px 0 70px;
}

.library-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
}

.library-hero h1 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(75px, 9vw, 130px);
    font-weight: 400;
    line-height: .78;
    letter-spacing: -.065em;
}

.library-hero-copy {
    max-width: 500px;
    padding-bottom: 5px;
}

.library-hero-copy p {
    margin: 0 0 20px;

    font-family: Georgia, serif;
    font-size: 29px;
    line-height: 1.25;
}

.library-hero-copy > span {
    color: var(--muted);
    font-size: 13px;
}


/* =========================================================
   ESTANTE
   ========================================================= */

.library-shelf-section {
    padding: 30px 0 120px;
}

.library-shelf {
    position: relative;

    width: min(100%, 1080px);
    margin: 0 auto;

    overflow: hidden;

    border-radius: 36px;

    box-shadow:
        0 45px 100px rgba(32, 23, 20, .13),
        0 10px 30px rgba(32, 23, 20, .07);
}

.library-shelf-background {
    display: block;

    width: 100%;
    height: auto;
}


/* LIVROS SOBRE A ESTANTE */

.shelf-book {
    position: absolute;

    display: block;

    z-index: 4;

    transition:
        transform .35s ease,
        filter .35s ease;
}

.shelf-book img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(0 15px 11px rgba(30,20,15,.20))
        drop-shadow(0 5px 4px rgba(30,20,15,.15));
}


/*
   PRIMEIRA PRATELEIRA UTIL
*/

.shelf-book-01 {
    width: 15.5%;

    left: 15%;
    top: 16.5%;
}


/*
   SEGUNDO LIVRO
*/

.shelf-book-02 {
    width: 15.5%;

    left: 36%;
    top: 16.5%;
}


/* HOVER */

.shelf-book:hover {
    transform: translateY(-10px) scale(1.025);

    z-index: 10;
}

.shelf-book-hint {
    position: absolute;

    left: 50%;
    bottom: -38px;

    transform: translateX(-50%) translateY(5px);

    width: max-content;

    padding: 8px 11px;

    background: #171313;

    border-radius: 999px;

    color: white;

    font-size: 9px;
    font-weight: 700;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.shelf-book:hover .shelf-book-hint {
    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}


/* ASSINATURA NA ESTANTE */

.shelf-caption {
    position: absolute;

    left: 8%;
    bottom: 8%;

    display: flex;
    flex-direction: column;

    z-index: 3;
}

.shelf-caption span {
    margin-bottom: 6px;

    color: var(--marsala);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.shelf-caption strong {
    max-width: 280px;

    color: #292221;

    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.library-shelf-instruction {
    margin: 25px 0 0;

    color: var(--muted);

    font-size: 11px;
    text-align: center;
}


/* =========================================================
   PUBLICACOES
   ========================================================= */

.library-publications {
    padding: 110px 0;
}

.library-publications-heading {
    margin-bottom: 90px;
}

.library-publications-heading h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.05em;
}


.library-publication {
    position: relative;

    display: grid;
    grid-template-columns: 70px .72fr 1.28fr;
    gap: 60px;
    align-items: center;

    min-height: 600px;

    padding: 85px 0;

    border-top: 1px solid var(--line);
}

.library-publication:last-child {
    border-bottom: 1px solid var(--line);
}

.library-publication-number {
    align-self: start;

    padding-top: 5px;

    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}


/* CAPA */

.library-publication-cover {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 500px;

    padding: 35px;

    background: #f4f0ed;

    border-radius: 28px;
}

.library-publication-cover img {
    display: block;

    max-width: 100%;
    max-height: 450px;

    object-fit: contain;

    filter:
        drop-shadow(0 28px 24px rgba(30,20,15,.17))
        drop-shadow(0 7px 7px rgba(30,20,15,.10));
}


/* TEXTO */

.library-publication-content {
    max-width: 650px;
}

.publication-category {
    display: block;

    margin-bottom: 16px;

    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.library-publication-content h3 {
    margin: 0 0 25px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
}

.library-publication-content > p {
    max-width: 580px;

    margin: 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.75;
}


/* META */

.publication-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    max-width: 520px;

    margin-top: 38px;

    border-top: 1px solid var(--line);
}

.publication-meta > div {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 18px 15px 0 0;
}

.publication-meta span {
    color: var(--muted);

    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.publication-meta strong {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
}


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

.library-manifesto {
    padding: 130px 0;

    background: var(--marsala);

    color: white;
}

.library-manifesto-inner {
    max-width: 1100px;
}

.library-manifesto .eyebrow {
    color: #efc7ce;
}

.library-manifesto p {
    margin: 0 0 20px;

    color: #f0d8dc;

    font-family: Georgia, serif;
    font-size: clamp(25px, 3vw, 38px);
}

.library-manifesto h2 {
    max-width: 1050px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(60px, 7.5vw, 100px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.055em;
}


/* =========================================================
   AUTORES
   ========================================================= */

.library-author {
    padding: 120px 0;
}

.library-author-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: end;
}

.library-author h2 {
    max-width: 760px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(50px, 5.8vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.05em;
}

.library-author-copy {
    max-width: 520px;
}

.library-author-copy p {
    margin: 0 0 30px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .library-hero-grid,
    .library-author-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .library-publication {
        grid-template-columns: 40px .85fr 1.15fr;
        gap: 30px;
    }

    .library-publication-cover {
        min-height: 430px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

    .library-hero {
        padding: 55px 0 55px;
    }

    .library-hero h1 {
        font-size: 72px;
    }

    .library-hero-copy p {
        font-size: 24px;
    }


    .library-shelf-section {
        padding-bottom: 75px;
    }

    .library-shelf {
        border-radius: 20px;
    }

    .shelf-book-01,
    .shelf-book-02 {
        width: 17%;
    }

    .shelf-book-01 {
        left: 12%;
    }

    .shelf-book-02 {
        left: 34%;
    }

    .shelf-book-hint,
    .shelf-caption {
        display: none;
    }


    .library-publications {
        padding: 75px 0;
    }

    .library-publications-heading {
        margin-bottom: 50px;
    }

    .library-publication {
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 60px 0;
    }

    .library-publication-number {
        padding: 0;
    }

    .library-publication-cover {
        min-height: 430px;
        padding: 28px;

        border-radius: 24px;
    }

    .library-publication-cover img {
        max-height: 380px;
    }

    .publication-meta {
        grid-template-columns: 1fr 1fr;
    }


    .library-manifesto {
        padding: 85px 0;
    }

    .library-manifesto h2 {
        font-size: 54px;
    }


    .library-author {
        padding: 80px 0;
    }

}

/* =========================================================
   LIVROS - VITRINE CLEAN
   ========================================================= */

.books-clean-page {
    overflow: hidden;
}

.books-clean-hero {
    padding: 100px 0 110px;
}

.books-clean-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: end;
}

.books-clean-hero h1 {
    max-width: 820px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(62px, 7vw, 100px);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.055em;
}

.books-clean-hero-copy p {
    max-width: 540px;

    margin: 0;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.75;
}


/* CATALOGO */

.books-clean-catalog {
    padding: 20px 0 120px;
}

.books-clean-item {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;

    min-height: 650px;

    padding: 90px 0;

    border-top: 1px solid var(--line);
}

.books-clean-item:last-child {
    border-bottom: 1px solid var(--line);
}

.books-clean-reverse {
    grid-template-columns: 1.15fr .85fr;
}

.books-clean-reverse .books-clean-cover {
    order: 2;
}

.books-clean-reverse .books-clean-content {
    order: 1;
}


/* CAPA */

.books-clean-cover {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 560px;

    padding: 45px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 50% 22%,
            #ffffff,
            #f2ece8 75%
        );
}

.books-clean-cover img {
    display: block;

    max-width: 100%;
    max-height: 490px;

    object-fit: contain;

    filter:
        drop-shadow(0 30px 24px rgba(31,20,18,.18))
        drop-shadow(0 8px 7px rgba(31,20,18,.10));

    transition: transform .35s ease;
}

.books-clean-item:hover .books-clean-cover img {
    transform: translateY(-6px) scale(1.015);
}


/* TEXTO */

.books-clean-content {
    max-width: 650px;
}

.books-clean-category {
    display: block;

    margin-bottom: 15px;

    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.books-clean-content h2 {
    margin: 0 0 25px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.books-clean-content > p {
    max-width: 590px;

    margin: 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.75;
}

.books-clean-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    max-width: 440px;

    margin-top: 35px;

    border-top: 1px solid var(--line);
}

.books-clean-meta > div {
    padding: 17px 15px 0 0;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.books-clean-meta span {
    color: var(--muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.books-clean-meta strong {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
}

.books-clean-link {
    display: inline-block;

    margin-top: 30px;

    color: var(--marsala);

    font-size: 14px;
    font-weight: 800;
}


/* MANIFESTO */

.books-clean-manifesto {
    padding: 130px 0;

    background: var(--marsala);

    color: white;
}

.books-clean-manifesto .eyebrow {
    color: #efc8cf;
}

.books-clean-manifesto h2 {
    max-width: 1050px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(58px, 7vw, 94px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.055em;
}


/* AUTORES */

.books-clean-author {
    padding: 120px 0;
}

.books-clean-author-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: end;
}

.books-clean-author h2 {
    max-width: 760px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(50px, 5.8vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.05em;
}

.books-clean-author p {
    max-width: 520px;

    margin: 0 0 28px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.75;
}


/* RESPONSIVO */

@media (max-width: 950px) {

    .books-clean-hero-grid,
    .books-clean-item,
    .books-clean-reverse,
    .books-clean-author-grid {
        grid-template-columns: 1fr;
    }

    .books-clean-reverse .books-clean-cover,
    .books-clean-reverse .books-clean-content {
        order: initial;
    }

}


@media (max-width: 620px) {

    .books-clean-hero {
        padding: 60px 0 75px;
    }

    .books-clean-hero h1 {
        font-size: 55px;
    }

    .books-clean-item {
        min-height: auto;

        gap: 38px;

        padding: 65px 0;
    }

    .books-clean-cover {
        min-height: 430px;

        padding: 28px;

        border-radius: 25px;
    }

    .books-clean-cover img {
        max-height: 380px;
    }

    .books-clean-manifesto {
        padding: 85px 0;
    }

    .books-clean-manifesto h2 {
        font-size: 54px;
    }

    .books-clean-author {
        padding: 80px 0;
    }

}

/* =========================================================
   REVISTAS - EDITORIAL VIVO
   ========================================================= */

.mag-page {
    overflow: hidden;
}


/* HERO */

.mag-hero {
    padding: 90px 0 110px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(123,31,42,.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fffaf7,
            #f8f1ed
        );
}

.mag-hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.mag-hero-copy h1 {
    max-width: 780px;

    margin: 0 0 28px;

    font-family: Georgia, serif;
    font-size: clamp(66px, 8vw, 112px);
    font-weight: 400;
    line-height: .90;
    letter-spacing: -.06em;
}

.mag-hero-copy > p {
    max-width: 570px;

    margin: 0;

    color: var(--muted);

    font-size: 20px;
    line-height: 1.7;
}


/* CAPAS DO HERO */

.mag-hero-covers {
    position: relative;

    min-height: 620px;
}

.mag-cover {
    position: absolute;

    width: 42%;

    transition: transform .35s ease;
}

.mag-cover img {
    display: block;

    width: 100%;
    height: auto;

    filter:
        drop-shadow(0 35px 26px rgba(30,20,20,.18))
        drop-shadow(0 8px 8px rgba(30,20,20,.10));
}

.mag-cover-back {
    left: 12%;
    top: 70px;

    transform: rotate(-7deg);
}

.mag-cover-front {
    right: 10%;
    top: 15px;

    transform: rotate(5deg);

    z-index: 2;
}

.mag-hero-covers:hover .mag-cover-back {
    transform: rotate(-9deg) translateY(-5px);
}

.mag-hero-covers:hover .mag-cover-front {
    transform: rotate(7deg) translateY(-8px);
}

.mag-hero-badge {
    position: absolute;

    right: 6%;
    bottom: 45px;

    padding: 10px 14px;

    background: var(--marsala);

    border-radius: 999px;

    color: white;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}


/* INTRO */

.mag-intro {
    padding: 115px 0;
}

.mag-intro-grid {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 80px;
}

.mag-intro h2 {
    max-width: 850px;

    margin: 0 0 25px;

    font-family: Georgia, serif;
    font-size: clamp(52px, 5.8vw, 80px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.05em;
}

.mag-intro p {
    max-width: 700px;

    margin: 0;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.75;
}


/* EDICOES */

.mag-editions {
    padding: 30px 0 120px;
}

.mag-editions-head {
    margin-bottom: 70px;
}

.mag-editions-head h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}


.mag-edition {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 80px;
    align-items: center;

    min-height: 620px;

    margin-bottom: 70px;
    padding: 60px;

    border-radius: 36px;

    overflow: hidden;
}

.mag-edition-7 {
    background:
        linear-gradient(
            135deg,
            #f6e7e1,
            #fff7f2
        );
}

.mag-edition-6 {
    grid-template-columns: 1.18fr .82fr;

    background:
        linear-gradient(
            135deg,
            #edf3ef,
            #f8fbf9
        );
}

.mag-edition-6 .mag-edition-cover {
    order: 2;
}

.mag-edition-6 .mag-edition-content {
    order: 1;
}


/* CAPA */

.mag-edition-cover {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mag-edition-cover img {
    display: block;

    max-width: 100%;
    max-height: 500px;

    object-fit: contain;

    filter:
        drop-shadow(0 30px 24px rgba(30,20,20,.18))
        drop-shadow(0 8px 8px rgba(30,20,20,.10));

    transition: transform .35s ease;
}

.mag-edition:hover .mag-edition-cover img {
    transform: translateY(-7px) rotate(-1deg);
}


/* TEXTO */

.mag-edition-content {
    max-width: 650px;
}

.mag-edition-number {
    display: block;

    margin-bottom: 14px;

    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.mag-edition-content h3 {
    margin: 0 0 25px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.mag-edition-content p {
    max-width: 570px;

    margin: 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.75;
}

.mag-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin: 28px 0;
}

.mag-topic-list span {
    padding: 9px 12px;

    border-radius: 999px;

    background: white;

    font-size: 11px;

    box-shadow: 0 2px 10px rgba(0,0,0,.03);
}

.mag-link {
    color: var(--marsala);

    font-size: 14px;
    font-weight: 800;
}


/* ASSUNTOS */

.mag-topics {
    padding: 115px 0;

    background: #171313;

    color: white;
}

.mag-topics-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.mag-topics .eyebrow {
    color: #e8b7bf;
}

.mag-topics h2 {
    max-width: 650px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.mag-topics-list {
    border-top: 1px solid rgba(255,255,255,.15);
}

.mag-topics-list > div {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.15);

    font-family: Georgia, serif;
    font-size: 24px;
}

.mag-topics-list span {
    color: #e6aeb8;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}


/* MANIFESTO */

.mag-manifesto {
    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #9e3f4d,
            #7b1f2a
        );

    color: white;
}

.mag-manifesto .eyebrow {
    color: #f4cfd5;
}

.mag-manifesto p {
    margin: 0 0 18px;

    color: #f0d9dd;

    font-family: Georgia, serif;
    font-size: clamp(24px, 3vw, 36px);
}

.mag-manifesto h2 {
    max-width: 1000px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(60px, 7.5vw, 100px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.055em;
}


/* FECHAMENTO */

.mag-closing {
    padding: 120px 0;
}

.mag-closing-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: end;
}

.mag-closing h2 {
    max-width: 760px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(50px, 5.8vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.05em;
}

.mag-closing p {
    max-width: 520px;

    margin: 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.75;
}


/* RESPONSIVO */

@media (max-width: 950px) {

    .mag-hero-grid,
    .mag-intro-grid,
    .mag-edition,
    .mag-edition-6,
    .mag-topics-grid,
    .mag-closing-grid {
        grid-template-columns: 1fr;
    }

    .mag-edition-6 .mag-edition-cover,
    .mag-edition-6 .mag-edition-content {
        order: initial;
    }

    .mag-hero-covers {
        min-height: 560px;
    }

}


@media (max-width: 620px) {

    .mag-hero {
        padding: 60px 0 75px;
    }

    .mag-hero h1 {
        font-size: 60px;
    }

    .mag-hero-covers {
        min-height: 420px;
    }

    .mag-cover {
        width: 46%;
    }

    .mag-cover-back {
        left: 7%;
        top: 60px;
    }

    .mag-cover-front {
        right: 6%;
    }

    .mag-intro {
        padding: 75px 0;
    }

    .mag-edition {
        min-height: auto;

        gap: 40px;

        margin-bottom: 45px;

        padding: 35px 24px;

        border-radius: 28px;
    }

    .mag-edition-cover img {
        max-height: 390px;
    }

    .mag-topics {
        padding: 80px 0;
    }

    .mag-topics-grid {
        gap: 45px;
    }

    .mag-manifesto {
        padding: 85px 0;
    }

    .mag-manifesto h2 {
        font-size: 54px;
    }

    .mag-closing {
        padding: 80px 0;
    }

}

/* =========================================================
   EBOOKS
   ========================================================= */

.ebooks-page {
    overflow: hidden;
}

.ebooks-hero {
    padding: 95px 0 110px;
}

.ebooks-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ebooks-hero h1 {
    max-width: 800px;
    margin: 0 0 28px;
    font-family: Georgia, serif;
    font-size: clamp(62px, 7vw, 98px);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.055em;
}

.ebooks-hero p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.ebooks-hero-card {
    position: relative;
    min-height: 520px;
}

.ebooks-device {
    position: absolute;
    width: 62%;
    height: 78%;
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(0,0,0,.12);
}

.ebooks-device-back {
    left: 7%;
    top: 12%;
    background: #e8dfda;
    transform: rotate(-6deg);
}

.ebooks-device-front {
    right: 5%;
    top: 4%;
    padding: 42px;
    background: linear-gradient(145deg,#7b1f2a,#441016);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotate(4deg);
}

.ebooks-device-front span,
.ebooks-device-front small {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ebooks-device-front strong {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 400;
}

.ebooks-intro {
    padding: 100px 0;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ebooks-intro-grid {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 80px;
}

.ebooks-intro h2 {
    margin: 0 0 22px;
    font-family: Georgia, serif;
    font-size: clamp(48px,5vw,72px);
    font-weight: 400;
    line-height: 1.02;
}

.ebooks-intro p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.ebooks-showcase {
    padding: 110px 0;
}

.ebooks-showcase-head {
    margin-bottom: 55px;
}

.ebooks-showcase-head h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(48px,5vw,70px);
    font-weight: 400;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.ebook-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 16px;
}

.ebook-cover {
    min-height: 390px;
    padding: 30px;
    border-radius: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ebook-cover span,
.ebook-cover small {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ebook-cover h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.05;
}

.ebook-cover-1 {
    background: linear-gradient(145deg,#7b1f2a,#2c0c12);
}

.ebook-cover-2 {
    background: linear-gradient(145deg,#2d5357,#172a2c);
}

.ebook-cover-3 {
    background: linear-gradient(145deg,#ba633e,#6c2e1f);
}

.ebook-info {
    padding: 20px 6px 8px;
}

.ebook-info > span {
    color: var(--marsala);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ebook-info h3 {
    margin: 9px 0 12px;
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 400;
}

.ebook-info p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.ebook-info a {
    display: inline-block;
    margin-top: 10px;
    color: var(--marsala);
    font-weight: 800;
    font-size: 13px;
}

.ebooks-topics {
    padding: 110px 0;
    background: #171313;
    color: white;
}

.ebooks-topics-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.ebooks-topics .eyebrow {
    color: #e8b7bf;
}

.ebooks-topics h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(46px,5vw,68px);
    font-weight: 400;
    line-height: 1.03;
}

.ebooks-topics-list {
    border-top: 1px solid rgba(255,255,255,.15);
}

.ebooks-topics-list > div {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    font-family: Georgia, serif;
    font-size: 23px;
}

.ebooks-topics-list span {
    color: #e6aeb8;
    font-family: Arial,sans-serif;
    font-size: 10px;
    font-weight: 800;
}

.ebooks-manifesto {
    padding: 125px 0;
    background: var(--soft);
}

.ebooks-manifesto p {
    margin: 0 0 16px;
    color: var(--marsala);
    font-family: Georgia, serif;
    font-size: 34px;
}

.ebooks-manifesto h2 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(58px,7vw,94px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.05em;
}

.ebooks-author {
    padding: 115px 0;
}

.ebooks-author-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: end;
}

.ebooks-author h2 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(50px,5.8vw,78px);
    font-weight: 400;
    line-height: 1;
}

.ebooks-author p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

@media(max-width:950px) {
    .ebooks-hero-grid,
    .ebooks-intro-grid,
    .ebooks-topics-grid,
    .ebooks-author-grid {
        grid-template-columns:1fr;
    }

    .ebooks-grid {
        grid-template-columns:1fr 1fr;
    }

    .ebooks-hero-card {
        min-height:460px;
    }
}

@media(max-width:620px) {
    .ebooks-hero {
        padding:60px 0 75px;
    }

    .ebooks-hero h1 {
        font-size:54px;
    }

    .ebooks-device {
        width:68%;
    }

    .ebooks-grid {
        grid-template-columns:1fr;
    }

    .ebooks-intro,
    .ebooks-showcase,
    .ebooks-topics,
    .ebooks-manifesto,
    .ebooks-author {
        padding:75px 0;
    }
}

/* =========================================================
   GUIAS
   ========================================================= */

.guides-page {
    overflow: hidden;
}

.guides-hero {
    padding: 95px 0 110px;
}

.guides-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
}

.guides-hero h1 {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(62px,7vw,98px);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.055em;
}

.guides-hero-copy p {
    max-width: 550px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}


/* DEFINICAO */

.guides-definition {
    padding: 105px 0;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.guides-definition-grid {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 80px;
}

.guides-definition h2 {
    max-width: 900px;
    margin: 0 0 24px;
    font-family: Georgia, serif;
    font-size: clamp(48px,5.4vw,75px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.guides-definition p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}


/* DESTAQUES */

.guides-showcase {
    padding: 110px 0;
}

.guides-showcase-head {
    margin-bottom: 55px;
}

.guides-showcase-head h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(48px,5vw,70px);
    font-weight: 400;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.guide-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 16px;
    transition: .25s;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(30,20,20,.08);
}

.guide-cover {
    min-height: 420px;
    padding: 30px;
    border-radius: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guide-cover > span,
.guide-cover small,
.guide-cover > strong {
    font-size: 10px;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.guide-cover h3 {
    margin: 12px 0 0;
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.04;
}

.guide-cover-1 {
    background: linear-gradient(145deg,#7b1f2a,#421018);
}

.guide-cover-2 {
    background: linear-gradient(145deg,#315a5d,#182d2f);
}

.guide-cover-3 {
    background: linear-gradient(145deg,#b76640,#74371f);
}

.guide-info {
    padding: 20px 5px 8px;
}

.guide-category {
    display: block;
    color: var(--marsala);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.guide-info h3 {
    margin: 9px 0 13px;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
}

.guide-info p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.guide-info a {
    display: inline-block;
    margin-top: 10px;
    color: var(--marsala);
    font-size: 13px;
    font-weight: 800;
}


/* USOS */

.guides-uses {
    padding: 110px 0;
    background: var(--soft);
}

.guides-uses-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.guides-uses h2 {
    max-width: 650px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(46px,5vw,68px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.guides-uses-list {
    border-top: 1px solid var(--line);
}

.guides-uses-list > div {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, serif;
    font-size: 23px;
}

.guides-uses-list span {
    color: var(--marsala);
    font-family: Arial,sans-serif;
    font-size: 10px;
    font-weight: 800;
}


/* MANIFESTO */

.guides-manifesto {
    padding: 125px 0;
    background: #171313;
    color: white;
}

.guides-manifesto .eyebrow {
    color: #e8b7bf;
}

.guides-manifesto p {
    margin: 0 0 18px;
    color: #d8cecc;
    font-family: Georgia, serif;
    font-size: clamp(25px,3vw,36px);
}

.guides-manifesto h2 {
    max-width: 1000px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(58px,7vw,94px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.055em;
}


/* AUTORES */

.guides-author {
    padding: 115px 0;
}

.guides-author-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: end;
}

.guides-author h2 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(50px,5.8vw,78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.05em;
}

.guides-author p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}


@media(max-width:950px) {

    .guides-hero-grid,
    .guides-definition-grid,
    .guides-uses-grid,
    .guides-author-grid {
        grid-template-columns:1fr;
    }

    .guides-grid {
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:620px) {

    .guides-hero {
        padding:60px 0 75px;
    }

    .guides-hero h1 {
        font-size:54px;
    }

    .guides-definition,
    .guides-showcase,
    .guides-uses,
    .guides-manifesto,
    .guides-author {
        padding:75px 0;
    }

    .guides-grid {
        grid-template-columns:1fr;
    }

}

/* =========================================================
   CONTATO
   ========================================================= */

.contact-page {
    overflow: hidden;
}


/* HERO */

.contact-hero {
    padding: 75px 0 110px;
}

.contact-hero-card {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    border-radius: 38px;

    background: var(--soft);
}

.contact-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.contact-hero-copy {
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 7%;

    width: 36%;
    max-width: 520px;

    transform: translateY(-50%);
}

.contact-hero-copy h1 {
    margin: 0 0 22px;

    font-family: Georgia, serif;
    font-size: clamp(66px, 7vw, 98px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.055em;
}

.contact-hero-copy > p {
    max-width: 440px;

    margin: 0 0 30px;

    color: var(--muted);

    font-family: Georgia, serif;
    font-size: 25px;
    line-height: 1.35;
}

.contact-email {
    display: inline-block;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--marsala);

    color: var(--marsala);

    font-size: 16px;
    font-weight: 800;
}


/* CAMINHOS */

.contact-paths {
    padding: 110px 0;
}

.contact-section-head {
    max-width: 780px;
    margin-bottom: 55px;
}

.contact-section-head h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5.4vw, 74px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.contact-paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.contact-path {
    min-height: 300px;

    padding: 36px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-path-number {
    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.contact-path h3 {
    margin: 60px 0 15px;

    font-family: Georgia, serif;
    font-size: 31px;
    font-weight: 400;
}

.contact-path p {
    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}

.contact-path a {
    display: inline-block;

    margin-top: 15px;

    color: var(--marsala);

    font-size: 13px;
    font-weight: 800;
}


/* AUTOR */

.contact-author {
    padding: 10px 0 110px;
}

.contact-author-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;

    padding: 58px;

    border-radius: 36px;

    background: var(--marsala);

    color: white;
}

.contact-author-card .eyebrow {
    color: #efc6ce;
}

.contact-author-card h2 {
    max-width: 760px;

    margin: 0 0 18px;

    font-family: Georgia, serif;
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.contact-author-card p {
    max-width: 700px;

    margin: 0;

    color: #eedadd;

    font-size: 17px;
    line-height: 1.7;
}


/* FORMULARIO */

.contact-form-section {
    padding: 110px 0;
    background: #171313;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-form-copy {
    color: white;
}

.contact-form-copy .eyebrow {
    color: #e8b7bf;
}

.contact-form-copy h2 {
    max-width: 520px;

    margin: 0 0 24px;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.contact-form-copy > p {
    max-width: 500px;

    color: #cdc2c0;

    font-size: 17px;
    line-height: 1.75;
}

.contact-direct {
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-direct span {
    color: #a99e9b;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-direct a {
    color: white;

    font-family: Georgia, serif;
    font-size: 24px;
}

.contact-form-card {
    padding: 36px;

    background: white;

    border-radius: 28px;

    box-shadow: 0 30px 70px rgba(0,0,0,.17);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .form-field label {
    font-size: 12px;
    font-weight: 800;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid var(--line);
    border-radius: 12px;

    background: #fbfaf8;

    color: var(--ink);

    font: inherit;

    outline: none;
}

.contact-form .form-field textarea {
    min-height: 165px;
    resize: vertical;
}

.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
    border-color: var(--marsala);
    background: white;

    box-shadow: 0 0 0 3px rgba(123,31,42,.07);
}

.contact-submit {
    align-self: flex-start;
}


/* FECHAMENTO */

.contact-closing {
    padding: 110px 0;
}

.contact-closing-inner {
    max-width: 900px;
    text-align: center;
}

.contact-closing-inner h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5.6vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.05em;
}


/* RESPONSIVO */

@media (max-width: 950px) {

    .contact-paths-grid {
        grid-template-columns: 1fr;
    }

    .contact-author-card,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-card {
        min-height: 600px;
    }

    .contact-hero-copy {
        width: 44%;
    }

}

@media (max-width: 620px) {

    .contact-hero {
        padding: 50px 0 75px;
    }

    .contact-hero-card {
        min-height: 680px;
        border-radius: 27px;
    }

    .contact-hero-image {
        object-position: 64% center;
    }

    .contact-hero-card::after {
        content: "";

        position: absolute;
        inset: 0;

        background:
            linear-gradient(
                to bottom,
                rgba(251,250,248,.95) 0%,
                rgba(251,250,248,.82) 40%,
                rgba(251,250,248,.05) 75%
            );
    }

    .contact-hero-copy {
        top: 50px;
        left: 25px;
        right: 25px;

        width: auto;

        transform: none;
    }

    .contact-hero-copy h1 {
        font-size: 55px;
    }

    .contact-paths,
    .contact-form-section,
    .contact-closing {
        padding: 75px 0;
    }

    .contact-author {
        padding-bottom: 75px;
    }

    .contact-author-card {
        padding: 38px 24px;
        border-radius: 28px;
    }

    .contact-form-card {
        padding: 25px 18px;
        border-radius: 23px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
    }

}

/* CONTATO - refinamento do hero */

.contact-hero {
    padding: 58px 0 82px;
}

.contact-hero-card {
    min-height: 560px;
}

.contact-hero-copy {
    left: 7%;
    width: 34%;
}

.contact-hero-copy h1 {
    font-size: clamp(54px, 5.8vw, 82px);
    line-height: .94;
    margin-bottom: 18px;
}

.contact-hero-copy > p {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 24px;
}

.contact-email {
    font-size: 14px;
}

@media (max-width: 950px) {

    .contact-hero-card {
        min-height: 540px;
    }

}

@media (max-width: 620px) {

    .contact-hero {
        padding: 40px 0 60px;
    }

    .contact-hero-card {
        min-height: 620px;
    }

    .contact-hero-copy h1 {
        font-size: 48px;
    }

}

/* CONTATO - hero mais compacto */

.contact-hero {
    padding: 42px 0 64px;
}

.contact-hero-card {
    min-height: 500px !important;
}

.contact-hero-copy {
    left: 6.5%;
    width: 33%;
}

.contact-hero-copy h1 {
    font-size: clamp(48px, 5vw, 72px) !important;
    line-height: .95;
    margin-bottom: 16px;
}

.contact-hero-copy > p {
    font-size: 19px !important;
    line-height: 1.35;
    margin-bottom: 20px;
}

.contact-email {
    font-size: 13px;
}

@media (max-width: 950px) {

    .contact-hero-card {
        min-height: 480px !important;
    }

}

@media (max-width: 620px) {

    .contact-hero {
        padding: 34px 0 52px;
    }

    .contact-hero-card {
        min-height: 560px !important;
    }

    .contact-hero-copy h1 {
        font-size: 44px !important;
    }

}

/* =========================================================
   PAGINAS LEGAIS
   ========================================================= */

.legal-page {
    overflow: visible;
}

.legal-hero {
    padding: 90px 0 95px;

    border-bottom: 1px solid var(--line);
}

.legal-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: end;
}

.legal-hero h1 {
    max-width: 760px;

    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(58px, 6.5vw, 90px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.05em;
}

.legal-hero-copy p {
    max-width: 560px;

    margin: 0 0 18px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.75;
}

.legal-hero-copy > span {
    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
}


/* CONTEUDO */

.legal-content {
    padding: 90px 0 120px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 760px);
    gap: 90px;
    justify-content: center;
    align-items: start;
}


/* INDICE */

.legal-index {
    position: sticky;
    top: 125px;

    padding-right: 28px;

    border-right: 1px solid var(--line);
}

.legal-index-title {
    display: block;

    margin-bottom: 20px;

    color: var(--marsala);

    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.legal-index nav {
    display: flex;
    flex-direction: column;
}

.legal-index a {
    padding: 8px 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.4;

    transition: .2s;
}

.legal-index a:hover {
    color: var(--marsala);
}


/* ARTIGO */

.legal-article {
    min-width: 0;
}

.legal-article section {
    scroll-margin-top: 130px;

    padding: 0 0 55px;
    margin: 0 0 55px;

    border-bottom: 1px solid var(--line);
}

.legal-article section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-article h2 {
    margin: 0 0 24px;

    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.legal-article h3 {
    margin: 30px 0 12px;

    font-size: 16px;
}

.legal-article p,
.legal-article li {
    color: #5f5957;

    font-size: 16px;
    line-height: 1.8;
}

.legal-article p {
    margin: 0 0 18px;
}

.legal-article ul {
    margin: 15px 0 20px;
    padding-left: 23px;
}

.legal-article li {
    margin-bottom: 8px;
}

.legal-article a {
    color: var(--marsala);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* CONTATO FINAL */

.legal-contact-box {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 25px;

    background: var(--soft);
    border-radius: 16px;
}

.legal-contact-box strong {
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 400;
}

.legal-contact-box span {
    color: var(--muted);
    font-size: 13px;
}

.legal-contact-box a {
    margin-top: 5px;

    color: var(--marsala);
    font-weight: 700;
}


/* RESPONSIVO */

@media (max-width: 950px) {

    .legal-hero-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-grid {
        gap: 50px;
    }

    .legal-index {
        position: static;

        padding: 0 0 30px;

        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .legal-index nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px 30px;
    }

}

@media (max-width: 620px) {

    .legal-hero {
        padding: 55px 0 65px;
    }

    .legal-hero h1 {
        font-size: 52px;
    }

    .legal-content {
        padding: 60px 0 80px;
    }

    .legal-index nav {
        grid-template-columns: 1fr;
    }

    .legal-article h2 {
        font-size: 31px;
    }

    .legal-article p,
    .legal-article li {
        font-size: 15px;
    }

}
