/* VARIÁVEIS */
:root {
    --bg-void: #050505;
    --bg-base: #0a0a0a;
    --bg-surface: #121212;
    --bg-surface-light: #1a1a1a;

    --gold-light: #FDE68A;
    --gold-base: #D4AF37;
    --gold-dark: #997A15;
    --gold-muted: rgba(212, 175, 55, 0.4);
    --gold-dark-muted: rgba(153, 122, 21, 0.4);
    --gold-dark-subtle: rgba(153, 122, 21, 0.15);

    --text-pure: #FFFFFF;
    --text-soft: #E5E5E5;
    --text-muted: #A3A3A3;
    --text-dark: #525252;

    --pride-gradient: linear-gradient(115deg, #FF4B4B 0%, #FFB443 20%, #4ADE80 40%, #3B82F6 60%, #8B5CF6 80%, #FF4B4B 100%);
    --gold-gradient: linear-gradient(135deg, var(--gold-light), var(--gold-base), var(--gold-dark));

    --font-title: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --font-sans: 'Montserrat', sans-serif;

    --shadow-book: 25px 25px 50px rgba(0, 0, 0, 0.8), -2px 0 5px rgba(255, 255, 255, 0.05);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-void);
    color: var(--text-soft);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

::selection { background-color: var(--gold-dark); color: var(--text-pure); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.hidden { display: none !important; }

/* SPA - Alternância de Telas */
.view-section { display: none; animation: fadeIn 0.4s ease forwards; }
.view-section.active { display: block; }

/* NAV E FOOTER */
.navbar {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 500;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-soft);
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold-base); }

footer {
    text-align: center;
    padding: 4rem 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* HERO E TÍTULOS */
.section-padding { padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 5rem; }

.section-pretitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gold-base);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-pure);
    font-weight: 400;
}
.section-title i { font-style: italic; color: var(--gold-light); }

.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 8rem 0 4rem; position: relative;
}

.hero-pretitle {
    font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.5em; color: var(--text-muted); text-transform: uppercase;
    margin-bottom: 1rem; opacity: 0; animation: fadeIn 1s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-title); 
    font-size: clamp(4rem, 12vw, 8.5rem); 
    font-weight: 400; 
    line-height: 1; color: var(--text-pure);
    margin-bottom: 0; letter-spacing: -0.02em; opacity: 0;
    animation: fadeInDown 1.2s ease forwards;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-text-gold {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body); font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--text-soft); font-style: italic; max-width: 650px; line-height: 1.8;
    margin: 0 auto 4rem auto; opacity: 0; animation: fadeIn 1.2s ease forwards 0.5s;
}

/* Globais */
.btn-pride {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    padding: 1.2rem 3rem; border-radius: 100px; font-family: var(--font-sans);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-pure); background: var(--bg-base); z-index: 1;
    transition: var(--transition-smooth); opacity: 0; animation: fadeInUp 1s ease forwards 0.6s;
}
.btn-pride::before {
    content: ''; position: absolute; inset: -2px; border-radius: 100px;
    background: var(--pride-gradient); background-size: 200% auto;
    animation: flowPride 5s linear infinite; z-index: -2; transition: var(--transition-smooth);
}
.btn-pride::after {
    content: ''; position: absolute; inset: 0; border-radius: 100px;
    background: var(--bg-surface); z-index: -1; transition: var(--transition-smooth);
}
.btn-pride-glow {
    position: absolute; inset: -5px; border-radius: 100px; background: var(--pride-gradient);
    background-size: 200% auto; animation: flowPride 5s linear infinite;
    filter: blur(15px); opacity: 0.3; z-index: -3; transition: var(--transition-smooth);
}
.btn-pride:hover { transform: translateY(-3px); color: var(--bg-void); }
.btn-pride:hover::after { background: transparent; }
.btn-pride:hover .btn-pride-glow { opacity: 0.6; filter: blur(25px); }

/* LIVROS */
.book-row { display: flex; flex-direction: column; gap: 2rem; align-items: center; text-align: center; animation: fadeInUp 0.8s ease forwards; }
@media (min-width: 768px) { .book-row { gap: 3rem; } }
@media (min-width: 900px) { .book-row { flex-direction: row; align-items: center; text-align: left; gap: 5rem; } .book-row.reverse { flex-direction: row-reverse; } }

.book-cover-container { perspective: 1200px; flex-shrink: 0; width: 85%; max-width: 250px; margin: 0 auto; }
@media (min-width: 768px) { .book-cover-container { width: 100%; max-width: 320px; } }
.book-cover {
    width: 100%; aspect-ratio: 1 / 1.5; background: var(--bg-surface);
    position: relative; transform-style: preserve-3d; transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: var(--shadow-book); border-radius: 2px 6px 6px 2px; cursor: pointer;
}
.book-cover-container:hover .book-cover {
    transform: rotateY(-15deg) rotateX(2deg) scale(1.02);
    box-shadow: 35px 35px 60px rgba(0, 0, 0, 0.85), -2px 0 5px rgba(255, 255, 255, 0.05), 0 0 55px rgba(212, 175, 55, 0.15);
}
.book-cover::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4%;
    background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    border-radius: 2px 0 0 2px; z-index: 10;
}
.book-cover::after {
    content: ''; position: absolute; right: -4px; top: 4px; bottom: 4px; width: 4px;
    background: #e0d5c1; border-radius: 0 4px 4px 0; transform: translateZ(-1px);
    box-shadow: inset 1px 0 3px rgba(0,0,0,0.5); z-index: -1;
}

.cover-art {
    width: 100%; height: 100%; background: linear-gradient(145deg, #181818, #0a0a0a);
    border: 1px solid rgba(255,255,255,0.05); border-left: 1px solid rgba(255,255,255,0.1);
    border-radius: inherit; display: flex; flex-direction: column; align-items: center;
    justify-content: space-between; padding: 3rem 2rem; text-align: center;
    overflow: hidden; position: relative;
}
.cover-graphic { position: absolute; inset: 15px; border: 1px solid var(--gold-dark); pointer-events: none; }
.cover-author { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }
.cover-title { font-family: var(--font-title); font-size: clamp(1.6rem, 6vw, 2.2rem); line-height: 1.2; color: var(--gold-light); font-weight: 400; padding: 0 0.5rem; word-wrap: break-word; }
.cover-vol { font-family: var(--font-body); font-style: italic; color: var(--gold-base); font-size: 1rem; }
.badge-cover {
    position: absolute; top: 25px; right: -35px; background: var(--pride-gradient); background-size: 200% auto;
    animation: flowPride 5s linear infinite; color: #fff; font-family: var(--font-sans); font-size: 0.65rem;
    font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 40px; transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 20;
}

.book-details { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 600px; width: 100%; text-align: center; }
@media (min-width: 900px) { .book-details { text-align: left; } }

.book-meta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
@media (min-width: 900px) { .book-meta { justify-content: flex-start; } }
.meta-tag { border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); font-size: 0.65rem; padding: 0.25rem 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 2px; }

.book-title { font-family: var(--font-title); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; color: var(--text-pure); line-height: 1.1; margin-bottom: 0.5rem; }
.series-context { font-family: var(--font-sans); font-size: 0.7rem; color: var(--gold-base); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 2rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
@media (min-width: 900px) { .series-context { justify-content: flex-start; font-size: 0.75rem; } }

.tags-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-bottom: 2.5rem; }
@media (min-width: 900px) { .tags-container { justify-content: flex-start; } }
.tag { font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.8rem; border: 1px solid var(--gold-dark); color: var(--gold-light); border-radius: 2px; background: rgba(153, 122, 21, 0.05); }
@media (min-width: 768px) { .tag { font-size: 0.7rem; padding: 0.4rem 1rem; } }
.tag.pride { border-color: transparent; background: linear-gradient(var(--bg-base), var(--bg-base)) padding-box, var(--pride-gradient) border-box; border: 1px solid transparent; color: var(--text-pure); }

.category-tag { border-color: var(--text-dark) !important; color: var(--text-soft) !important; background: transparent !important; }
.tag-separator { color: #333; margin: 0 0.2rem; display: flex; align-items: center; }
.book-obs { margin-top: 1rem; font-size: 0.8rem; color: var(--gold-muted); font-style: italic; border-left: 2px solid var(--gold-dark-subtle); padding-left: 1rem; text-align: left; }

.book-synopsis-container { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; align-items: center; }
@media (min-width: 900px) { .book-synopsis-container { align-items: flex-start; } }

.book-synopsis { font-size: 0.95rem; color: var(--text-soft); opacity: 0.9; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.6; text-align: left; white-space: pre-line; }
@media (min-width: 768px) { .book-synopsis { font-size: 1.05rem; line-height: 1.7; -webkit-line-clamp: 3; } }
.book-synopsis.expanded { display: block; -webkit-line-clamp: unset; }

.btn-read-more { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; color: var(--gold-base); text-transform: uppercase; cursor: pointer; background: none; border: none; padding: 0; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.3s ease; }
.btn-read-more:hover { color: var(--gold-light); }
.btn-read-more::after { content: '\25BC'; font-size: 0.5rem; transition: transform 0.3s ease; }
.btn-read-more.expanded::after { transform: rotate(180deg); }

.purchase-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 900px) { .purchase-actions { justify-content: flex-start; gap: 1.5rem; } }
.btn-buy { display: inline-flex; align-items: center; gap: 1rem; padding: 1rem 2.5rem; font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); border: 1px solid var(--gold-dark); border-radius: 2px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.btn-buy::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gold-dark); transition: left 0.4s ease; z-index: -1; }
.btn-buy:hover { color: var(--text-pure); }
.btn-buy:hover::before { left: 0; }
.btn-buy-alt { border-color: var(--text-dark); color: var(--text-muted); }
.btn-buy-alt::before { background: var(--text-soft); }
.btn-buy-alt:hover { border-color: var(--text-soft); color: var(--bg-void); }

.trigger-warning { background: rgba(255, 255, 255, 0.015); border: 1px solid var(--gold-dark-subtle); border-radius: 8px; padding: 1.2rem 1.5rem; margin-bottom: 0; transition: all 0.3s ease; }
.trigger-warning:hover { border-color: var(--gold-dark-muted); background: rgba(255, 255, 255, 0.03); }
.trigger-summary { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; cursor: pointer; display: flex; align-items: center; justify-content: space-between; list-style: none; transition: color 0.3s ease; position: relative; padding-right: 2rem; }
.trigger-summary::-webkit-details-marker { display: none; }
.trigger-summary:hover { color: var(--gold-light); }
.trigger-info { display: flex; align-items: center; gap: 1rem; }
.trigger-summary::after { content: ''; position: absolute; right: 0; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--gold-base); border-bottom: 2px solid var(--gold-base); transform: translateY(-50%) rotate(45deg); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
details[open].trigger-warning .trigger-summary::after { transform: translateY(-50%) rotate(-135deg); }
.trigger-summary span.age { background: transparent; color: #FF4B4B; padding: 0.25rem 0.8rem; border: 1px solid rgba(255, 75, 75, 0.4); border-radius: 100px; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.05em; }
.trigger-content { margin-top: 1.5rem; font-size: 0.95rem; color: var(--text-soft); font-style: italic; line-height: 1.6; padding-left: 1.2rem; border-left: 2px solid var(--gold-dark-muted); animation: slideDown 0.4s ease-out forwards; opacity: 0; }

/* CATÁLOGO */
.search-container { margin-bottom: 3rem; display: flex; justify-content: center; }
.search-wrapper {
    position: relative; width: 100%; max-width: 600px; border-radius: 100px;
    padding: 2px; background: rgba(255,255,255,0.1); transition: background 0.4s ease;
}
.search-wrapper:focus-within {
    background: var(--pride-gradient); background-size: 200% auto; animation: flowPride 5s linear infinite;
}
.search-input {
    width: 100%; background-color: var(--bg-surface); border: none; color: var(--text-pure);
    padding: 1.2rem 1.5rem 1.2rem 3.5rem; border-radius: 100px; font-size: 0.9rem; outline: none; font-family: var(--font-sans);
}
.search-icon { position: absolute; left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.2rem; pointer-events: none; }

.filters-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 6rem; }
.filter-checkbox-btn { display: none; }
.filter-btn-label {
    padding: 0.8rem 1.5rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
    font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-muted);
    cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; background: var(--bg-void);
}
.filter-checkbox-btn:checked + .filter-btn-label {
    border-color: var(--gold-base); color: var(--gold-light); background: rgba(212, 175, 55, 0.05);
}
.filter-btn-label:hover { border-color: var(--text-soft); color: var(--text-soft); }

.category-tag { border-color: var(--text-dark) !important; color: var(--text-soft) !important; background: transparent !important; }
.tag-separator { color: #333; margin: 0 0.2rem; display: flex; align-items: center; }
.book-obs { margin-top: 1rem; font-size: 0.8rem; color: var(--gold-muted); font-style: italic; border-left: 2px solid var(--gold-dark-subtle); padding-left: 1rem; }

.series-group { display: flex; flex-direction: column; gap: 8rem; margin-bottom: 10rem; }
.series-group:last-child { margin-bottom: 0; }
.series-divider { display: flex; align-items: center; justify-content: center; gap: 2rem; width: 100%; opacity: 0; animation: fadeIn 1s ease forwards 0.3s; }
.series-divider .line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold-muted) 50%, var(--gold-base)); }
.series-divider .line:last-child { background: linear-gradient(to left, transparent, var(--gold-muted) 50%, var(--gold-base)); }
.series-name { font-family: var(--font-title); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--gold-light); font-weight: 400; font-style: italic; text-align: center; letter-spacing: 0.05em; }
.series-header { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.series-count { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-base); font-weight: 500; }

.catalog { display: flex; flex-direction: column; padding-bottom: 4rem; }

/* Carregar Mais */
.load-more-wrapper { display: none; text-align: center; margin-top: 2rem; margin-bottom: 6rem; position: relative; }
.load-more-wrapper.active { display: block; }
.btn-load-more { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 3rem; border-radius: 2px; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); border: 1px solid var(--gold-dark); background: transparent; transition: all 0.4s ease; position: relative; overflow: hidden; cursor: pointer; }
.btn-load-more::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gold-dark); transition: left 0.4s ease; z-index: -1; }
.btn-load-more:hover { color: var(--text-pure); }
.btn-load-more:hover::before { left: 0; }

.empty-state { text-align: center; padding: 6rem 0; font-family: var(--font-title); font-size: 2rem; color: var(--text-dark); font-style: italic; }

/* HOME */
.about-section { background-color: var(--bg-surface); border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); position: relative; }
.bg-text-storyteller { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-title); font-size: clamp(40px, 8vw, 150px); font-weight: 600; color: #fff; opacity: 0.02; white-space: nowrap; pointer-events: none; z-index: 0; user-select: none; width: 100%; text-align: center; letter-spacing: 0.05em; }

.editorial-social-box { display: flex; flex-direction: column; align-items: center; width: 100%; }
.editorial-container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 800px; margin: 0 auto; }

.editorial-photo-wrapper { position: relative; margin: 3rem 0; display: inline-block; }
.editorial-photo { width: 280px; height: 380px; background-image: url(/FOTO.jpg); background-size: cover; background-position: center; filter: grayscale(30%) brightness(0.9); box-shadow: 0 20px 50px rgba(0,0,0,0.6); border-radius: 20px; }
@media (min-width: 768px) { .editorial-photo { width: 350px; height: 480px; } }
@media (min-width: 768px) { .editorial-photo { width: 400px; height: 550px; } }

.editorial-badge { position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); background: var(--bg-base); color: var(--gold-light); border: 1px solid var(--gold-dark); padding: 0.5rem 1.5rem; font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

.editorial-name { font-family: var(--font-title); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--text-pure); margin-top: 2rem; margin-bottom: 0.5rem; text-align: center; }
.editorial-quote { font-family: var(--font-body); font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--gold-muted); font-style: italic; max-width: 600px; text-align: center; }

.editorial-divider { width: 100px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-dark), transparent); margin: 3rem auto; }

.editorial-bio { display: flex; flex-direction: column; gap: 2rem; color: var(--text-soft); font-size: 1.05rem; line-height: 1.8; text-align: center; font-weight: 300; }

.editorial-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; width: 100%; margin: 2rem 0; }
@media (min-width: 768px) { .editorial-stats { gap: 4rem; } }
.stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 2rem; background: rgba(0,0,0,0.2); width: 140px; }
.stat-number { font-family: var(--font-title); font-size: 2.5rem; color: var(--gold-light); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-family: var(--font-sans); font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }

.editorial-grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; width: 100%; text-align: left; }
@media (min-width: 768px) { .editorial-grid-2 { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.editorial-list-box { display: flex; flex-direction: column; }
.list-title { font-family: var(--font-sans); font-size: 0.85rem; color: var(--text-pure); letter-spacing: 0.2em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; margin-bottom: 1.5rem; text-align: center; }
.universe-list, .inspire-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; color: var(--text-soft); font-size: 0.95rem; }
.universe-list li, .inspire-list li { display: flex; align-items: center; gap: 0.5rem; justify-content: center;}
.universe-list li { color: var(--gold-light); }

.editorial-signature { max-width: 250px; height: auto; filter: invert(1); opacity: 0.8; margin: 1rem auto; display: block; }

.editorial-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; }
.editorial-social a { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.editorial-social a:hover { color: var(--gold-base); }

@keyframes flowPride { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ADMIN */
.admin-section { min-height: 100vh; background-color: #030303; }
.admin-header { margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem; }
.admin-title { font-family: var(--font-title); font-size: 1.5rem; color: var(--text-pure); }
.admin-subtitle { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

.admin-layout { display: flex; flex-direction: column; gap: 4rem; align-items: center; }
.admin-form-wrapper { width: 100%; max-width: 900px; }
.admin-sidebar { width: 100%; max-width: 900px; }

.admin-form { background-color: var(--bg-surface); padding: 2rem; border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 2rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
#form-title { color: var(--text-pure); font-family: var(--font-title); font-size: 1.25rem; }

.block-title { color: var(--gold-base); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; margin-bottom: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.form-group label { display: block; font-size: 0.75rem; color: var( --text-pure); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.admin-input { width: 100%; background-color: var(--bg-void); border: 1px solid #333; color: var(--text-pure); padding: 0.75rem 1rem; border-radius: 4px; font-size: 0.875rem; outline: none; transition: border-color 0.3s; }
.admin-input:focus { border-color: var(--gold-base); }
.textarea { resize: vertical; }

.input-group { display: flex; gap: 0.5rem; }
.flex-1 { flex: 1; }
.btn-add { background-color: var(--bg-void); border: 1px solid #333; padding: 0 0.75rem; border-radius: 4px; color: var(--text-soft); transition: 0.3s; }
.btn-add:hover { color: var(--gold-base); border-color: var(--gold-base); }

.radio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1rem; }
.radio-card { cursor: pointer; }
.radio-content { text-align: center; padding: 0.75rem 0; border: 1px solid #333; border-radius: 4px; font-size: 0.875rem; color: var(--text-muted); transition: all 0.3s; }
.admin-radio:checked + .radio-content { border-color: var(--gold-base); color: var(--gold-base); background-color: rgba(212,175,55,0.05); }

.form-grid-series { display: grid; grid-template-columns: 1fr; gap: 1rem; background-color: rgba(5,5,5,0.5); padding: 1rem; border-radius: 4px; border: 1px solid #333; }
@media (min-width: 768px) { .form-grid-series { grid-template-columns: repeat(3, 1fr); } .span-2 { grid-column: span 2 / span 2; } }

.form-grid-danger { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
@media (min-width: 768px) { .form-grid-danger { grid-template-columns: repeat(3, 1fr); } }
.label-danger { color: #FF4B4B !important; font-weight: 600; }
.input-danger { border-color: rgba(255, 75, 75, 0.3) !important; }

.btn-link-small { font-size: 10px; color: var(--gold-base); text-transform: uppercase; }
.btn-link-small:hover { text-decoration: underline; }
.tropes-wrapper { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1rem; background-color: var(--bg-void); border-radius: 4px; border: 1px solid #333; }
.trope-checkbox-label { cursor: pointer; display: flex; align-items: center; gap: 0.5rem; background-color: var(--bg-surface); padding: 0.375rem 0.75rem; border-radius: 4px; border: 1px solid #333; transition: 0.3s; }
.trope-checkbox-label:hover { border-color: var(--gold-base); }
.accent-gold { accent-color: var(--gold-base); }

.toggles-grid { display: flex; flex-direction: column; gap: 1rem; }
.toggle-card { background-color: var(--bg-void); padding: 1rem; border-radius: 4px; border: 1px solid #333; display: flex; align-items: center; justify-content: space-between; }
.toggle-info h4 { color: var(--text-pure); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.toggle-info p { font-size: 10px; color: var(--text-muted); }
.toggle-switch { position: relative; display: inline-block; width: 3rem; vertical-align: middle; user-select: none; }
.toggle-checkbox { position: absolute; display: block; width: 1.5rem; height: 1.5rem; border-radius: 9999px; background-color: var(--text-pure); border: 4px solid #333; appearance: none; cursor: pointer; transition: transform 0.3s; z-index: 10; top: 0; left: 0; }
.toggle-label { display: block; overflow: hidden; height: 1.5rem; border-radius: 9999px; background-color: #333; cursor: pointer; transition: background-color 0.3s; }
.toggle-checkbox:checked { transform: translateX(100%); border-color: #68D391; }
.toggle-checkbox:checked + .toggle-label { background-color: #68D391; }

.btn-submit { width: 100%; background: linear-gradient(to right, var(--gold-base), var(--gold-dark)); color: var(--bg-void); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.875rem; padding: 1rem; border-radius: 4px; transition: all 0.3s; }
.btn-submit:hover { box-shadow: 0 0 15px rgba(212,175,55,0.4); }

.admin-books-panel { background-color: var(--bg-surface); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; padding: 2rem; display: flex; flex-direction: column; }
.panel-title { color: var(--gold-base); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.75rem; margin-bottom: 1rem; }
.books-list { display: flex; flex-direction: column; gap: 0.75rem; }

.admin-list-item { background-color: var(--bg-void); border: 1px solid #333; padding: 0.75rem; border-radius: 4px; display: flex; justify-content: space-between; align-items: center; }
.admin-list-title { font-size: 0.875rem; color: var(--text-pure); font-family: var(--font-title); }
.admin-list-meta { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.admin-list-actions { display: flex; gap: 0.5rem; opacity: 0; transition: opacity 0.3s; }
.admin-list-item:hover .admin-list-actions { opacity: 1; }
.btn-icon-edit { color: var(--gold-base); font-size: 1.1rem; }
.btn-icon-edit:hover { color: var(--text-pure); }
.btn-icon-delete { color: #FF4B4B; font-size: 1.1rem; }
.btn-icon-delete:hover { color: #ff7676; }
.btn-cancel { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; border: 1px solid #333; padding: 0.25rem 0.75rem; border-radius: 4px; }
.btn-cancel:hover { color: var(--gold-base); }

.modal-wrapper { position: fixed; inset: 0; background-color: rgba(0,0,0,0.9); z-index: 200; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.modal-content { background-color: var(--bg-surface); border: 1px solid #333; padding: 2rem; border-radius: 4px; max-width: 24rem; margin: 0 1rem; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.modal-title { font-family: var(--font-title); font-size: 1.5rem; color: var(--text-pure); margin-bottom: 0.5rem; }
.modal-actions { display: flex; gap: 1rem; }
.btn-modal-outline { flex: 1; background-color: var(--bg-void); border: 1px solid #333; color: var(--text-soft); padding: 0.75rem; border-radius: 4px; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; transition: 0.3s; }
.btn-modal-outline:hover { color: var(--text-pure); }
.btn-modal-danger { flex: 1; border: none; padding: 0.75rem; border-radius: 4px; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; transition: 0.3s; }

.logotipo {
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.imagem-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* MOBILE */
.mobile-menu-btn { display: none; color: var(--gold-light); font-size: 1.5rem; background: transparent; border: none; cursor: pointer; }

@media (max-width: 767px) {
    .mobile-menu-btn { display: block; z-index: 101; }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 70%; height: 100vh;
        background-color: var(--bg-surface); flex-direction: column;
        align-items: center; justify-content: center; gap: 3rem;
        transition: right 0.4s ease; z-index: 100;
        border-left: 1px solid rgba(255,255,255,0.05);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    .nav-links.menu-aberto { right: 0; }
    .nav-links a { font-size: 1.1rem; }
    
    .navbar { padding: 1rem 5%; }
    
    .book-cover-container { max-width: 150px; } 
    
    .container { padding: 0 6%; }
    .book-details { padding: 0 0.5rem; }
    .book-synopsis { text-align: justify; }
    .editorial-bio p { padding: 0 1rem; } 
    .tags-container { gap: 0.5rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; } 
    .purchase-actions { flex-direction: column; width: 100%; padding: 0 1rem; }
    .btn-buy { width: 100%; justify-content: center; }
    #admin-instagram-field { padding: 1rem; background: var(--bg-void); border-radius: 4px; border: 1px dashed var(--gold-base); }
    .tag, .category-tag, .tag.pride { font-size: 0.55rem; padding: 0.3rem 0.5rem; letter-spacing: 0.05em; }
    .meta-tag { font-size: 0.55rem; padding: 0.2rem 0.4rem; }
    .badge-cover { font-size: 0.6rem; padding: 4px 35px; top: 12px; right: -35px; transform: rotate(45deg) scale(0.65); transform-origin: center; }

    .gallery-content { opacity: 1 !important; transform: translateY(0) !important; background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%) !important; border: none !important; }
    .gallery-item::after { opacity: 0.5 !important; }

    /* Filtros do catálogo em fileira horizontal com scroll */
    .filters-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.6rem;
        padding: 0 6% 0.75rem 6%;
        margin: 0 -6% 3rem -6%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
    }
    .filters-container::-webkit-scrollbar { display: none; }
    .filter-btn-label {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.7rem 1.2rem;
        font-size: 0.68rem;
    }
}

/* GALERIA */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-bottom: 4rem; }
.gallery-filter-btn { padding: 0.6rem 1.2rem; border: 1px solid rgba(255,255,255,0.05); border-radius: 100px; font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--text-muted); cursor: pointer; transition: all 0.4s ease; text-transform: uppercase; background: rgba(255,255,255,0.02); backdrop-filter: blur(5px); }
.gallery-filter-btn:hover { border-color: var(--gold-dark); color: var(--text-soft); transform: translateY(-2px); }
.gallery-filter-btn.is-active { border-color: var(--gold-base); color: var(--bg-void); background: var(--gold-gradient); font-weight: 600; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); }

.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; width: 100%; margin-bottom: 4rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }

.gallery-item { position: relative; border-radius: 6px; aspect-ratio: 3 / 4; overflow: hidden; cursor: pointer; background: var(--bg-surface); border: 1px solid rgba(255, 255, 255, 0.03); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8); transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease; opacity: 0.7; }
.gallery-item:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.3); z-index: 10; }
.gallery-item:hover img { transform: scale(1.08); opacity: 1; }

.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%); opacity: 0.9; transition: opacity 0.5s ease; pointer-events: none; }
.gallery-item:hover::after { opacity: 0.7; }

.gallery-content { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; padding: 1.5rem; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; transform: translateY(15px); transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); pointer-events: none; background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(8px); border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); opacity: 0; }
.gallery-item:hover .gallery-content { transform: translateY(0); opacity: 1; }
.gallery-story { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-light); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.gallery-story::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold-base); }
.gallery-title { font-family: var(--font-title); font-size: 1.25rem; font-weight: 400; color: var(--text-pure); margin: 0; line-height: 1.3; letter-spacing: 0.02em; }

/* NSFW */
.lightbox { position: fixed; inset: 0; z-index: 250; background: rgba(5, 5, 5, 0.96); backdrop-filter: blur(12px); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; animation: fadeIn 0.3s ease; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; background: var(--bg-surface); color: var(--text-pure); border: 1px solid var(--gold-dark); border-radius: 50%; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; z-index: 251; cursor: pointer; font-size: 1.1rem; transition: 0.3s; }
.lightbox-close:hover { border-color: var(--gold-base); color: var(--gold-light); }
.lightbox-story { position: absolute; top: 2rem; left: 2rem; background: var(--bg-surface); color: var(--gold-light); border: 1px solid var(--gold-dark); padding: 0.5rem 1.2rem; border-radius: 2px; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; z-index: 251; }
.lightbox-img-wrap { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; max-height: 75vh; margin: 2rem 0; }
.lightbox-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.9); border: 1px solid rgba(255,255,255,0.08); }
.lightbox-footer { text-align: center; }
.lightbox-title { font-family: var(--font-title); font-size: 1.8rem; color: var(--gold-light); margin: 0; font-weight: 400; letter-spacing: 0.02em; }

.gallery-item.is-nsfw img { filter: blur(18px) brightness(0.6); transform: scale(1.08); }
.gallery-item.is-nsfw:hover img { filter: blur(12px) brightness(0.5); }
.nsfw-badge { position: absolute; top: 15px; left: 15px; background: rgba(255, 75, 75, 0.9); color: white; font-family: var(--font-sans); font-size: 0.6rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 2px; z-index: 3; letter-spacing: 0.15em; text-transform: uppercase; box-shadow: 0 4px 12px rgba(255, 75, 75, 0.4); border: 1px solid rgba(255,255,255,0.2); }

.nsfw-modal-overlay { position: fixed; inset: 0; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px); z-index: 260; display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.2s ease; }
.nsfw-modal { background-color: var(--bg-surface); border: 1px solid rgba(255, 75, 75, 0.4); border-radius: 4px; padding: 2.5rem; max-width: 420px; text-align: center; box-shadow: 0 0 40px rgba(0,0,0,0.8); color: var(--text-soft); }
.nsfw-modal h3 { font-family: var(--font-title); font-size: 1.8rem; margin: 0 0 0.75rem; color: #FF4B4B; font-weight: 400; }
.nsfw-modal p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.6; }
.nsfw-actions { display: flex; flex-direction: column; gap: 1rem; }
.btn-nsfw-danger { background-color: #FF4B4B; color: white; padding: 0.75rem; border-radius: 4px; font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; transition: 0.3s; }
.btn-nsfw-danger:hover { opacity: 0.9; }
.btn-nsfw-outline { background-color: var(--bg-void); border: 1px solid #333; color: var(--text-soft); padding: 0.75rem; border-radius: 4px; font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; transition: 0.3s; }
.btn-nsfw-outline:hover { color: var(--text-pure); border-color: var(--text-muted); }

/* Galeria */
.editorial-gallery-header {
    text-align: center;
    margin-bottom: 1.5rem; 
    padding-top: 2rem;
    padding-bottom: 1rem;
    position: relative;
}

.editorial-gallery-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-base), transparent);
    opacity: 0.6;
}

.editorial-gallery-pretitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.editorial-gallery-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 7vw, 5rem); 
    color: var(--text-pure);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.editorial-gallery-title .text-gold {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.editorial-gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 250px;
}
.editorial-gallery-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.editorial-gallery-divider .diamond {
    font-size: 0.65rem;
    background: var(--pride-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flowPride 5s linear infinite;
}

.editorial-gallery-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-soft);
    font-style: italic;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-bottom: 4rem; }
.gallery-filter-btn { padding: 0.8rem 1.5rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-muted); cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; background: var(--bg-void); }
.gallery-filter-btn:hover { border-color: var(--text-soft); color: var(--text-soft); }
.gallery-filter-btn.is-active { border-color: var(--gold-base); color: var(--gold-light); background: rgba(212, 175, 55, 0.05); }

.universe-banner {
    display: flex; align-items: center; justify-content: center; gap: 2rem; width: 100%; margin: 6rem 0 3rem 0; opacity: 0; animation: fadeIn 1s ease forwards;
}
.universe-banner:first-child { margin-top: 0; }
.universe-banner .line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.universe-banner h2 { font-family: var(--font-title); font-size: 2rem; color: var(--gold-light); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }

.gallery-cards-grid {
    display: grid; grid-template-columns: 1fr; gap: 3rem; width: 100%; margin-bottom: 4rem;
}
@media (min-width: 640px) { .gallery-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; } }

@media (min-width: 1024px) {
    .gallery-cards-grid .editorial-art-card:first-child { grid-column: span 2; }
}

.editorial-art-card {
    display: flex; flex-direction: column; background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.03); border-radius: 4px; padding: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.5s ease;
    cursor: pointer; position: relative;
}
.editorial-art-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}
.art-frame {
    width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.05); position: relative; background: #000;
}
@media (min-width: 1024px) {
    .gallery-cards-grid .editorial-art-card:first-child .art-frame { aspect-ratio: 16/9; }
}
.art-frame img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease;
}
.editorial-art-card:hover .art-frame img { transform: scale(1.05); }

.art-info { margin-top: 1.5rem; text-align: center; display: flex; flex-direction: column; gap: 0.5rem; }
.art-info h3 { font-family: var(--font-title); font-size: 1.4rem; color: var(--text-pure); font-weight: 400; line-height: 1.2; }
.art-meta { font-family: var(--font-sans); font-size: 0.7rem; color: var(--gold-muted); text-transform: uppercase; letter-spacing: 0.15em; }

.art-tags { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.art-tag-chip {
    font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.3rem 0.6rem; border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); border-radius: 2px;
}
.art-tag-nsfw { border-color: var(--gold-dark); color: var(--gold-light); background: rgba(153, 122, 21, 0.1); }

.lightbox-rich {
    position: fixed; inset: 0; z-index: 300; background: rgba(5, 5, 5, 0.96); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center; padding: 2rem; animation: fadeIn 0.3s ease;
}
.lightbox-rich-container {
    display: flex; flex-direction: column; max-width: 1200px; width: 100%; max-height: 90vh;
    background: var(--bg-base); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9); overflow: hidden;
}
@media (min-width: 900px) { .lightbox-rich-container { flex-direction: row; height: 85vh; } }

.lightbox-image-area {
    flex: 2; position: relative; background: #000; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.lightbox-image-area img {
    max-width: 100%; max-height: 100%; object-fit: contain; cursor: zoom-in; transition: transform 0.3s ease;
}
.lightbox-details-area {
    flex: 1; padding: 3rem 2rem; background: var(--bg-surface); display: flex; flex-direction: column;
    overflow-y: auto; border-left: 1px solid rgba(255,255,255,0.05);
}
.lightbox-close-btn {
    align-self: flex-end; background: transparent; color: var(--text-muted); font-size: 1.5rem;
    border: none; cursor: pointer; transition: color 0.3s; margin-bottom: 1rem; padding: 0.5rem;
}
.lightbox-close-btn:hover { color: var(--gold-light); }

.lb-universe { font-family: var(--font-sans); font-size: 0.75rem; color: var(--gold-base); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.lb-title { font-family: var(--font-title); font-size: 2rem; color: var(--text-pure); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.2; }
.lb-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.05); margin: 1.5rem 0; }
.lb-meta-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; font-family: var(--font-sans); font-size: 0.85rem; color: var(--text-soft); }
.lb-meta-list strong { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.65rem; display: block; margin-bottom: 0.3rem; }
.lb-desc { margin-top: 2rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; font-style: italic; }

.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 1.5rem; pointer-events: none;
}
.lb-nav-btn {
    background: rgba(10,10,10,0.7); color: #fff; border: 1px solid rgba(255,255,255,0.1); width: 45px; height: 45px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer;
    pointer-events: auto; backdrop-filter: blur(5px); transition: all 0.3s; font-size: 1.2rem;
}
.lb-nav-btn:hover { background: var(--gold-base); color: #000; border-color: var(--gold-base); transform: scale(1.1); }

@media (max-width: 899px) {
    .lightbox-image-area { flex: 1; min-height: 45vh; }
    .lightbox-details-area { flex: 1; }
    .lightbox-nav { display: none; }
}

/* Ocultação +18 */
.nsfw-blur img { filter: blur(25px) brightness(0.4); }
.nsfw-overlay-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    color: var(--gold-light); font-family: var(--font-title); font-size: 1.5rem; text-align: center; pointer-events: none;
}

/* Painel Administrativo */
.admin-tabs { display: flex; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; margin-bottom: 2.5rem; }
.admin-tab-btn { background: transparent; border: none; color: var(--text-muted); font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.5rem 1rem; cursor: pointer; transition: 0.3s; border-bottom: 2px solid transparent; }
.admin-tab-btn.active { color: var(--gold-base); border-bottom-color: var(--gold-base); font-weight: 600; }
.admin-tab-btn:hover:not(.active) { color: var(--text-pure); }

/* HERO MOBILE */
@media (max-width: 767px) {
    .hero {
        justify-content: flex-start; 
        padding-top: 9rem; 
        padding-bottom: 5rem;
    }
    
    .hero-pretitle {
        margin-top: 2rem; 
    }
    
    .hero-title {
        font-size: clamp(3.2rem, 15vw, 4.5rem); 
    }
}
/* BOTÃO PRIDE NO MOBILE */
@media (max-width: 767px) {
    .btn-pride {
        font-size: 0.65rem; 
        padding: 1rem 1.5rem; 
        letter-spacing: 0.15em; 
        width: auto; 
        max-width: 90%; 
    }
}