/* =========================================================
   LÉO BARROS — PORTFÓLIO
   STYLE.CSS — BASE GERAL
========================================================= */


/* =========================================================
   01. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0f0f0f;
    color: #e8e6e3;
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #d4af37;
    text-decoration: none;
}

a:hover {
    color: #f0d76b;
}

strong {
    color: #f0d76b;
}

em {
    color: #e3ded5;
}


/* =========================================================
   02. VARIÁVEIS VISUAIS
========================================================= */

:root {

    --bg: #0f0f0f;
    --bg-dark: #0b0b0b;
    --bg-card: #171717;
    --bg-card-hover: #1b1b1b;

    --gold: #d4af37;
    --gold-light: #f0d76b;

    --text: #e8e6e3;
    --text-soft: #ddd8cf;
    --text-muted: #b8b1a7;

    --border: rgba(212, 175, 55, 0.18);
    --border-soft: rgba(212, 175, 55, 0.12);

    --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);

    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: "Inter", Arial, sans-serif;

    --container: 1120px;

}


/* =========================================================
   03. ESTRUTURA GERAL
========================================================= */

main {
    width: 100%;
}

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

section {
    padding: 90px 20px;
    margin: 0;
}

section:nth-of-type(even) {
    background: #101010;
}


/* =========================================================
   04. TIPOGRAFIA
========================================================= */

h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.15;
}

h1 {
    color: #f4f1e8;
}

h2 {
    color: var(--gold);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 28px;
}

h3 {
    color: var(--gold-light);
    font-size: 1.45rem;
    margin-bottom: 16px;
}

h4 {
    color: #ddd8cf;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

p {
    color: var(--text-soft);
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.subtitulo {
    max-width: 820px;
    margin: 0 auto 35px;
    text-align: center;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.9;
}

.texto-centro {
    max-width: 820px;
    margin: 0 auto 35px;
    text-align: center;
    color: var(--text-soft);
}


/* =========================================================
   05. HEADER / HERO
========================================================= */

header {
    text-align: center;
    padding: 90px 20px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.055),
            transparent 55%
        ),
        var(--bg-dark);
}

header h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

header p {
    max-width: 800px;
    margin: 10px auto;
    color: #cfc9bf;
    font-size: 1.1rem;
}


/* =========================================================
   06. HERO PRINCIPAL
========================================================= */

.hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 100px 20px 90px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(212, 175, 55, 0.075),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #0b0b0b 0%,
            #101010 100%
        );

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

.hero-conteudo {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 7vw, 6rem);
    margin-bottom: 22px;
    color: #f4f1e8;
}

.hero-subtitulo {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-texto {
    max-width: 780px;
    margin: 0 auto 42px;
    color: #d0cbc1;
    font-size: 1.12rem;
    line-height: 1.9;
}


/* =========================================================
   07. HERO INTERNO
========================================================= */

.hero-interno {
    min-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 90px;
}

.hero-interno .hero-conteudo {
    max-width: 900px;
}

.hero-interno h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
    margin-bottom: 22px;
}

.hero-interno .hero-subtitulo {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.hero-interno .hero-texto {
    max-width: 760px;
    margin: 0 auto 42px;
}


/* =========================================================
   08. HERO PEQUENO
========================================================= */

.hero-small {
    min-height: 60vh;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.hero-subtitle {
    color: #d0cbc1;
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 780px;
    margin: 0 auto 35px;
}


/* =========================================================
   09. BOTÕES
========================================================= */

.hero-botoes,
.hero-actions,
.book-actions,
.purchase-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.botao,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 11px 24px;

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

    background: transparent;
    color: var(--gold);

    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.botao:hover,
.btn:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.16);
}

.botao-secundario,
.btn-secondary {
    border-color: rgba(212, 175, 55, 0.45);
    color: #d8d2c7;
}

.botao-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: #111;
}

.btn-large {
    min-height: 52px;
    padding: 14px 30px;
}


/* =========================================================
   10. NAVEGAÇÃO
========================================================= */

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 22px;

    padding: 18px 20px;

    background: rgba(18, 18, 18, 0.96);

    border-bottom: 1px solid var(--border-soft);

    position: sticky;
    top: 0;

    z-index: 1000;

    backdrop-filter: blur(10px);
}

nav a {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.86rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

nav a:hover {
    color: var(--gold-light);
}


/* =========================================================
   11. CARDS
========================================================= */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;

    padding: 30px;

    margin-bottom: 24px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    border-color: var(--border);
}

.card p {
    color: var(--text-soft);
    margin-bottom: 16px;
}

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

.card h3 {
    color: var(--gold-light);
}


/* =========================================================
   12. GRID DE CARDS
========================================================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(300px, 1fr)
    );

    gap: 28px;

    margin-top: 40px;
}

.cards-grid .card {
    height: 100%;
}


/* =========================================================
   13. GRID DE PROJETOS
========================================================= */

.project-grid {
    display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(300px, 1fr)
    );

    gap: 30px;

    margin-top: 40px;
}

.project-card {
    background: var(--bg-card);

    border: 1px solid var(--border-soft);

    border-radius: 18px;

    padding: 30px;

    height: 100%;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--border);
}

.project-card p {
    color: var(--text-soft);
    margin-bottom: 20px;
}

.project-card .botao {
    margin-top: auto;
    align-self: flex-start;
}

.project-status {
    display: inline-block;

    margin-top: auto;

    color: var(--gold);

    font-family: var(--sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}


/* =========================================================
   14. LISTAS
========================================================= */

.card ul {
    margin: 20px 0 0 22px;
}

.card li {
    margin-bottom: 10px;
    color: var(--text-soft);
}

.lista-competencias {
    list-style: none;
    margin: 25px 0 !important;
    padding: 0;
}

.lista-competencias li {
    position: relative;
    padding: 8px 0 8px 25px;
}

.lista-competencias li::before {
    content: "•";

    position: absolute;
    left: 0;
    top: 5px;

    color: var(--gold);

    font-size: 1.3rem;
}


/* =========================================================
   15. LIVROS — CARDS
========================================================= */

.livros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.card-livro {
    background: var(--bg-card);

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 26px;

    width: 260px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card-livro:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card-livro img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.card-livro:hover img {
    transform: scale(1.16);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.65);
}

.card-livro h3 {
    font-size: 1.25rem;
}

.card-livro p {
    font-size: 0.95rem;
}


/* =========================================================
   16. CAPAS DOS LIVROS
========================================================= */

.capa-livro {
    width: 220px;
    max-width: 100%;

    display: block;

    margin: 0 auto 25px;

    border-radius: 12px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.capa-livro:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65);
}

.book-cover {
    width: 320px;
    max-width: 100%;
    height: auto;

    border-radius: 14px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   17. PÁGINA DE LIVROS — FEATURE
========================================================= */

.book-feature {
    display: grid;

    grid-template-columns:
        minmax(220px, 320px)
        1fr;

    gap: 55px;

    align-items: center;

    margin-bottom: 80px;

    padding: 40px;

    background: var(--bg-card);

    border: 1px solid var(--border-soft);

    border-radius: 20px;
}

.book-feature-image {
    width: 100%;

    max-width: 300px;

    margin: 0 auto;

    display: block;

    border-radius: 12px;

    box-shadow: var(--shadow);
}

.book-feature-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.book-feature-content h4 {
    font-family: var(--serif);
    font-weight: 400;
    color: #d5cec3;
}

.book-feature-content p {
    margin-bottom: 18px;
}


/* =========================================================
   18. PRÓXIMO LIVRO
========================================================= */

.next-book {
    background: var(--bg-dark);

    padding: 75px 30px;

    margin-top: 50px;

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

    text-align: center;
}

.next-book h2 {
    max-width: 800px;
    margin: 14px auto 24px;
}

.next-book p {
    max-width: 760px;
    margin: 0 auto 28px;
}


/* =========================================================
   19. LIVRO / COMPRA
========================================================= */

.book-purchase {
    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.05),
            transparent 55%
        ),
        #0b0b0b;
}

.purchase-box {
    max-width: 850px;

    padding: 60px 30px;

    text-align: center;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #111;
}

.purchase-box p {
    max-width: 720px;
    margin: 0 auto 25px;
}

.purchase-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* =========================================================
   20. LIVRO — EXCERTO / BLOCKQUOTE
========================================================= */

blockquote,
.excerpt-block {
    margin: 30px 0;

    padding: 28px 32px;

    border-left: 4px solid var(--gold);

    background: #1b1b1b;

    color: #ece8e1;

    font-family: var(--serif);

    font-size: 1.25rem;

    font-style: italic;
}

.excerpt-block p {
    margin-bottom: 18px;
}

.excerpt-block p:last-child {
    margin-bottom: 0;
}

.excerpt-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* =========================================================
   21. HISTÓRIA / IMAGENS
========================================================= */

.history-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 55px;

    align-items: center;
}

.history-image img {
    width: 100%;

    display: block;

    border-radius: 18px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}


/* =========================================================
   22. PROJETO / HERO VISUAL
========================================================= */

.hero-projeto {
    margin-bottom: 60px;
}

.hero-projeto img {
    width: 100%;

    display: block;

    border-radius: 18px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);

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

.hero-projeto .hero-texto {
    max-width: 850px;

    margin: 35px auto 0;

    text-align: center;
}

.hero-projeto .hero-texto h2 {
    border: none;
    padding: 0;
    margin-bottom: 18px;
}

.hero-projeto .hero-texto p {
    color: #d7d1c8;
    line-height: 1.9;
}


/* =========================================================
   23. IMAGENS DE PROJETOS
========================================================= */

.imagem-projeto {
    margin-top: 30px;
}

.imagem-projeto img {
    width: 100%;

    display: block;

    border-radius: 16px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}


/* =========================================================
   24. REPORTAGEM / ARQUIVO VISUAL
========================================================= */

.imagem-reportagem {
    display: block;

    width: 65%;
    max-width: 700px;

    height: auto;

    margin: 40px auto;

    border-radius: 14px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    cursor: zoom-in;

    transition: transform 0.3s ease;
}

.imagem-reportagem:hover {
    transform: scale(1.02);
}

.legenda {
    text-align: center;

    color: #bfb7aa;

    font-size: 0.95rem;

    font-style: italic;

    margin-top: 15px;
}


/* =========================================================
   25. GALERIA / LINHA DO TEMPO
========================================================= */

.gallery-hero {
    padding: 120px 24px 80px;

    background:
        linear-gradient(
            180deg,
            #0b0b0b 0%,
            #121212 100%
        );

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

.gallery-hero h1 {
    font-family: var(--serif);

    font-size: clamp(2.8rem, 6vw, 4.6rem);

    color: #f4f1e8;

    margin-bottom: 22px;
}

.intro {
    max-width: 760px;

    color: #c9c3b8;

    font-size: 1.08rem;

    line-height: 1.9;
}

.timeline-gallery {
    background: var(--bg);

    padding: 80px 24px 120px;
}

.timeline-item {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 56px;

    align-items: center;

    margin-bottom: 96px;
}

.timeline-item.reverse .timeline-text {
    order: 2;
}

.timeline-item.reverse .timeline-image {
    order: 1;
}

.timeline-text .step {
    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 0.16em;

    font-size: 0.78rem;

    margin-bottom: 12px;
}

.timeline-text h2 {
    font-family: var(--serif);

    color: #f4f1e8;

    font-size: clamp(2rem, 4vw, 3rem);

    margin-bottom: 18px;

    border: none;

    padding: 0;
}

.timeline-text p {
    color: #d0cbc1;

    line-height: 1.9;

    font-size: 1.02rem;

    margin-bottom: 16px;
}

.timeline-image img {
    width: 100%;

    display: block;

    border-radius: 18px;

    border: 1px solid var(--border);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   26. VÍDEOS
========================================================= */

.videos-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(340px, 1fr)
        );

    gap: 30px;
}

.videos-grid iframe {
    width: 100%;

    aspect-ratio: 16 / 9;

    border: none;

    border-radius: 14px;

    background: #111;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);

    transition: transform 0.3s ease;
}

.videos-grid iframe:hover {
    transform: translateY(-6px);
}


/* =========================================================
   27. PRODUÇÃO / ÁUDIO
========================================================= */

.audio-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(300px, 1fr)
        );

    gap: 25px;

    margin-top: 35px;
}

.audio-card {
    background: var(--bg-card);

    border: 1px solid var(--border-soft);

    border-radius: 16px;

    padding: 25px;
}


/* =========================================================
   28. ENCERRAMENTO
========================================================= */

.encerramento {
    padding: 100px 20px 70px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.045),
            transparent 55%
        );
}

.frase-final {
    max-width: 780px;

    margin: 0 auto 35px;

    color: #d4b15a;

    font-family: var(--serif);

    font-size: 1.45rem;

    line-height: 1.8;

    font-style: italic;
}


/* =========================================================
   29. FOOTER
========================================================= */

footer,
.site-footer {
    text-align: center;

    padding: 45px 20px 55px;

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

    background: var(--bg-dark);
}

footer p,
.site-footer p {
    max-width: 850px;

    margin: 8px auto;

    color: #a9a297;

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =========================================================
   30. RESPONSIVO — TABLETS
========================================================= */

@media (max-width: 900px) {

    section {
        padding: 70px 20px;
    }

    .hero {
        min-height: 70vh;
        padding: 80px 20px 65px;
    }

    .hero-interno {
        min-height: 65vh;
    }

    .hero h1,
    .hero-interno h1 {
        font-size: clamp(2.7rem, 8vw, 4rem);
    }

    .cards-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .history-grid {
        grid-template-columns: 1fr;
    }

    .book-feature {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 30px;
    }

    .book-feature-image {
        max-width: 250px;
    }

    .book-feature-content {
        text-align: left;
    }

    .timeline-item {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 65px;
    }

    .timeline-item.reverse .timeline-text,
    .timeline-item.reverse .timeline-image {
        order: initial;
    }

    .gallery-hero {
        padding: 90px 20px 65px;
    }

    .timeline-gallery {
        padding: 70px 20px 90px;
    }

}


/* =========================================================
   31. RESPONSIVO — CELULAR
========================================================= */

@media (max-width: 600px) {

    .card-livro:hover img {
        transform: scale(1.04);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
    }

    .container {
        width: min(100% - 30px, var(--container));
    }

    section {
        padding: 60px 15px;
    }

    nav {
        gap: 10px 16px;
        padding: 15px;
    }

    nav a {
        font-size: 0.8rem;
    }

    .hero {
        min-height: 62vh;

        padding:
            65px
            18px
            55px;
    }

    .hero-interno {
        min-height: 60vh;
    }

    .hero h1,
    .hero-interno h1 {
        font-size: 2.45rem;
    }

    .hero-subtitulo {
        font-size: 0.8rem;

        letter-spacing: 1.7px;
    }

    .hero-texto {
        font-size: 1rem;
        line-height: 1.8;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .card {
        padding: 23px;
    }

    .hero-botoes,
    .hero-actions,
    .book-actions,
    .purchase-actions {
        flex-direction: column;

        width: 100%;
    }

    .botao,
    .btn {
        width: 100%;
        max-width: 330px;
    }

    .book-feature {
        padding: 22px;
    }

    .book-feature-content {
        text-align: left;
    }

    .capa-livro {
        width: 170px;
    }

    .book-cover {
        width: 240px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .imagem-reportagem {
        width: 100%;
    }

    .next-book {
        padding: 60px 20px;
    }

    .encerramento {
        padding: 75px 15px 55px;
    }

    .frase-final {
        font-size: 1.2rem;
    }

    footer,
    .site-footer {
        padding: 35px 18px 45px;
    }

}




/* =========================================================
   28.1. PRODUÇÃO MUSICAL / CASES AUDIOVISUAIS
========================================================= */

.video-card {
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
    gap: 36px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto 42px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.video-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: #090909;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    border: 0;
}

.video-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-info h3 {
    margin-bottom: 18px;
}

.video-info p {
    margin-bottom: 18px;
}

.video-info .botao {
    align-self: flex-start;
}

.video-meta {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.video-meta strong {
    color: var(--gold-light);
}

.case-audiovisual {
    border-color: rgba(212, 175, 55, 0.22);
}

.projeto-cartaz {
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: 38px;
    align-items: center;
}

.projeto-cartaz .imagem-projeto {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projeto-cartaz .imagem-projeto img {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

#trabalhos .subtitulo {
    margin-bottom: 48px;
}

#audiovisual .case-audiovisual {
    margin-top: 42px;
}

#audiovisual .projeto-cartaz {
    margin-top: 28px;
}


/* =========================================================
   28.2. RESPONSIVO — CASES AUDIOVISUAIS
========================================================= */

@media (max-width: 900px) {

    .video-card {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 24px;
    }

    .video-wrapper iframe {
        min-height: auto;
    }

    .projeto-cartaz {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .projeto-cartaz .imagem-projeto img {
        width: 240px;
    }

}

@media (max-width: 600px) {

    .video-card {
        padding: 18px;
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .video-wrapper {
        border-radius: 11px;
    }

    .video-wrapper iframe {
        min-height: 190px;
    }

    .video-info h3 {
        font-size: 1.45rem;
    }

    .video-meta {
        font-size: 0.88rem;
    }

    .projeto-cartaz {
        padding: 20px;
    }

    .projeto-cartaz .imagem-projeto img {
        width: 220px;
    }

    .video-info .botao {
        width: 100%;
        max-width: 330px;
    }

}


/* =========================================================
   32. ACESSIBILIDADE / INTERAÇÃO
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

::selection {
    background: var(--gold);
    color: #111;
}


/* =========================================================
   33. PÁGINAS DE LIVRO  (book-*)
   Classes que o HTML já usava mas não tinham nenhuma regra.
========================================================= */

.book-hero {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border-soft);
}

.book-hero-grid {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 48px;
    align-items: center;
}

.book-hero-content h1 {
    margin-bottom: 12px;
}

.book-subtitle {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.book-description {
    color: var(--text-soft);
    margin-bottom: 18px;
}

.book-hero-mockups {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.book-hero-mockup {
    flex: 1 1 140px;
    max-width: 200px;
}

.book-hero-mockup img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
}

.book-about,
.book-history,
.book-topics,
.book-gallery,
.book-today,
.book-closing {
    padding: 50px 0;
}

.history-content p {
    color: var(--text-soft);
    margin-bottom: 16px;
}

.book-excerpt {
    background: var(--bg-card);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 26px 30px;
    margin: 30px 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-soft);
}

.assinatura {
    display: block;
    margin-top: 18px;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: right;
}


/* =========================================================
   34. GRADES DE TÓPICOS, GALERIA E PROJETOS
========================================================= */

.topics-grid,
.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.topic-card,
.projeto-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
                border-color 0.25s ease;
}

.topic-card:hover,
.projeto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    border-color: var(--border);
    background: var(--bg-card-hover);
}

.topic-card h3,
.projeto-card h3 {
    color: var(--gold-light);
    margin-bottom: 12px;
}

.topic-card p,
.projeto-card p {
    color: var(--text-soft);
    margin-bottom: 0;
}

.titulo-subsecao {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--gold);
    margin: 48px 0 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
    border-color: var(--border);
}

.gallery-note {
    margin-top: 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    text-align: center;
}


/* =========================================================
   35. BLOCO DE COMPRA
========================================================= */

.purchase-grid {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 32px;
}

.purchase-cover img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
}

.purchase-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.purchase-text {
    color: var(--text-soft);
    margin-bottom: 20px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 22px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-value {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
}

.purchase-list {
    margin: 0 0 24px 20px;
    color: var(--text-soft);
}

.purchase-list li {
    margin-bottom: 10px;
}

.jingles-clientes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* =========================================================
   36. RESPONSIVO DOS BLOCOS ACIMA
========================================================= */

@media (max-width: 860px) {

    .book-hero-grid,
    .purchase-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .book-hero {
        padding: 40px 0 30px;
    }

    .book-about,
    .book-history,
    .book-topics,
    .book-gallery,
    .book-today,
    .book-closing {
        padding: 36px 0;
    }

    .book-excerpt {
        padding: 20px 22px;
        font-size: 1.05rem;
    }

}

/* AJUSTES ESPECÍFICOS DA PÁGINA DE LIVRO */

.book-hero {
    padding: 70px 0 60px;
}

.book-hero-grid {
    align-items: center;
    gap: 55px;
}

.book-cover {
    max-width: 320px;
    margin: 0 auto;
}

.book-hero-content {
    max-width: 780px;
}

.book-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin-bottom: 20px;
}

.book-subtitle {
    max-width: 760px;
}

.book-description {
    max-width: 780px;
    line-height: 1.9;
}


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

@media (max-width: 860px) {

    .book-hero {
        padding: 50px 0 45px;
    }

    .book-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        text-align: center;
    }

    .book-cover {
        max-width: 260px;
    }

    .book-hero-content {
        margin: 0 auto;
    }

    .book-actions {
        justify-content: center;
    }

}


@media (max-width: 600px) {

    .book-hero {
        padding: 45px 0 35px;
    }

    .book-cover {
        max-width: 220px;
    }

    .book-hero-content h1 {
        font-size: 2.45rem;
    }

    .book-subtitle {
        font-size: 1.15rem;
    }

    .book-description {
        font-size: 0.98rem;
    }

}
/* FOTO PROFISSIONAL — somente no hero que contém a foto */

.hero:has(.hero-foto) .hero-conteudo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 70px;
}

/* Área da fotografia */

.hero:has(.hero-foto) .hero-foto {
    width: 100%;
    max-width: 420px;
    height: 540px;
    margin-left: auto;

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

    overflow: hidden;
    border-radius: 4px;

    position: relative;
}

/* Fotografia */

.hero:has(.hero-foto) .hero-foto img {
    width: 100%;
    height: 100%;

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

    display: block;

    border-radius: 4px;
}

/* ======================================
   TABLET
====================================== */

@media (max-width: 900px) {

    .hero:has(.hero-foto) .hero-conteudo {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero:has(.hero-foto) .hero-foto {
        width: min(100%, 400px);
        height: 500px;
        margin: 0 auto;
    }

}


/* ======================================
   CELULAR
====================================== */

@media (max-width: 600px) {

    .hero:has(.hero-foto) .hero-conteudo {
        gap: 35px;
    }

    .hero:has(.hero-foto) .hero-foto {
        width: 100%;
        max-width: 340px;
        height: 440px;
    }

    .hero:has(.hero-foto) .hero-foto img {
        object-position: center 22%;
    }

}
/* =========================================================
   FIM
==================================