:root {
    --primary-green: #1b4d2e;
    --highlight-yellow: #fcb900;
    --text-white: #ffffff;
    --bg-dark: #111;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }
body { background-color: var(--primary-green); color: var(--text-white); height: 100vh; overflow: hidden; }

/* --- LAYOUT PRINCIPAL --- */
.main-layout {
    display: grid; 
    height: 100vh; 
    width: 100vw;
    grid-template-rows: 90px 1fr 60px;
    grid-template-columns: 260px 1fr 240px;
    grid-template-areas: 
        "header header header" 
        "sideL center sideR" 
        "footer footer footer";
}

/* --- AREA A: HEADER --- */
.area-a-header {
    grid-area: header; background-color: var(--primary-green); 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 0 30px; border-bottom: 3px solid var(--highlight-yellow); z-index: 10;
}
.header-left { display: flex; align-items: center; gap: 20px; }
.logo-img { height: 70px; background: transparent; filter: drop-shadow(2px 2px 2px #000); }

.header-left h1 { 
    font-size: 1.8rem; font-weight: 900; color: var(--highlight-yellow); 
    text-transform: uppercase; text-shadow: 3px 3px 0 #000; line-height: 1;
}
.header-right { display: flex; align-items: center; gap: 15px; }

/* BOTÕES */
.btn-affiliate {
    background: var(--highlight-yellow); color: #000; padding: 10px 20px; 
    text-decoration: none; font-weight: 800; border: 2px solid #000; 
    box-shadow: 3px 3px 0 #000; display: flex; align-items: center; gap: 8px; 
    font-size: 0.9rem; white-space: nowrap; transition: 0.2s;
}
.btn-affiliate:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0px #000; }

.lang-group { display: flex; gap: 5px; margin-left: 10px; }
.lang-btn {
    background: #fff; color: #000; padding: 10px 8px; 
    text-decoration: none; font-weight: bold; border: 2px solid #000;
    box-shadow: 3px 3px 0 #000; font-size: 0.8rem; cursor: pointer; transition: 0.2s;
}
.lang-btn:hover { background: var(--highlight-yellow); transform: translate(2px, 2px); box-shadow: 1px 1px 0 #000; }

/* --- AREA B: SIDEBAR ESQUERDA (ARTISTAS) --- */
.area-b-sidebar-left { 
    grid-area: sideL; 
    background-color: var(--bg-dark); 
    border-right: 2px solid var(--highlight-yellow); 
    display: flex; flex-direction: column; 
    height: 100%; overflow: hidden;   
}
.sidebar-title { text-align: center; color: var(--highlight-yellow); padding: 10px; border-bottom: 1px solid #444; flex-shrink: 0; }
.area-b1-display { height: 250px; flex-shrink: 0; background: #000; border-bottom: 2px solid var(--highlight-yellow); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.artist-display-img { width: 100%; height: 100%; object-fit: contain; }

/* Grid de Artistas */
.area-b2-grid { flex-grow: 1; overflow-y: auto; padding: 10px; }
.grid-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.grid-item { aspect-ratio: 1/1; background: #333; border: 1px solid #555; cursor: pointer; border-radius: 4px; overflow: hidden; transition: 0.2s; position: relative;}
.grid-item:hover { transform: scale(1.05); border-color: var(--highlight-yellow); z-index: 2; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.3s; }
.grid-item:hover img { filter: grayscale(0); }

/* --- AREA CENTRAL --- */
.area-center { grid-area: center; display: flex; flex-direction: column; background: #222; overflow: hidden; }
.media-tabs { background: #151515; display: flex; border-bottom: 2px solid var(--highlight-yellow); }
.tab-btn { flex-grow: 1; background: transparent; border: none; color: #888; padding: 15px 5px; font-weight: bold; cursor: pointer; font-size: 0.85rem; }
.tab-btn:hover { color: #fff; background: #333; }
.tab-btn.active { color: #000; background: var(--highlight-yellow); }

.area-e-stage { flex-grow: 1; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.media-content { display: none; width: 100%; height: 100%; padding: 20px; overflow-y: auto; flex-grow: 1; }
.media-content.active-content { display: block; }

/* TICKER */
.area-d-ticker { height: 35px; background: var(--highlight-yellow); border-top: 2px solid #000; display: flex; align-items: center; overflow: hidden; flex-shrink: 0; }
.ticker-text { white-space: nowrap; color: #000; font-weight: bold; font-size: 1rem; animation: ticker 25s linear infinite; padding-left: 100%; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* ESTILOS INTERNOS */
.expo-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; height: 100%; padding-right: 10px; }
.expo-history { background: #111; padding: 20px; border: 1px solid #444; border-radius: 8px; }
.expo-history h2 { color: var(--highlight-yellow); margin-bottom: 15px; text-transform: uppercase; border-bottom: 1px solid #444; padding-bottom: 10px; }
.expo-img-landscape { width: 100%; height: auto; border: 2px solid var(--highlight-yellow); margin-bottom: 20px; object-fit: cover; }
.expo-text { font-size: 1rem; line-height: 1.6; color: #ddd; text-align: justify; }

/* CARD DO CRIADOR COM STICKY (CORRIGIDO) */
.expo-creator-card { 
    background: #1a1a1a; 
    padding: 20px; 
    border: 1px solid var(--highlight-yellow); 
    border-radius: 8px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    height: fit-content; 
    align-self: start;
    position: -webkit-sticky; 
    position: sticky;
    top: 20px; 
    z-index: 5;
} /* Esta chave estava faltando no seu arquivo original */

.creator-img { width: 180px; height: 180px; object-fit: cover; border-radius: 50%; border: 4px solid var(--highlight-yellow); margin-bottom: 15px; background: #000; }
.creator-role { color: #888; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 5px; }
.creator-name { color: #fff; font-size: 1.4rem; font-weight: bold; margin-bottom: 15px; }
.creator-contact { background: #333; padding: 10px; width: 100%; border-radius: 4px; font-size: 0.9rem; }

/* LISTA DE HERÓIS E VÍDEOS */
.heroes-layout { display: grid; grid-template-columns: 200px 1fr; height: 100%; gap: 15px; }
.heroes-list { background: #111; border: 1px solid #444; overflow-y: auto; height: 100%; }
.hero-list-item { padding: 10px; border-bottom: 1px solid #333; cursor: pointer; color: #aaa; }
.hero-list-item:hover { background: #333; color: #fff; }

.hero-details { background: #1a1a1a; padding: 20px; text-align: center; border: 1px solid #444; overflow-y: auto; }
.hero-avatar-large { width: 150px; height: 150px; border-radius: 50%; border: 3px solid var(--highlight-yellow); object-fit: cover; margin-bottom: 15px; background:#000; }
.spec-box { background: #222; padding: 15px; border-radius: 8px; border-left: 4px solid var(--highlight-yellow); text-align: left; margin-top: 10px; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: none; }

/* GALERIA */
.gallery-viewer { display: flex; flex-direction: column; align-items: center; height: 100%; }
.gallery-display { max-width: 90%; max-height: 350px; border: 3px solid #fff; box-shadow: 0 0 15px #000; margin: 10px 0; }
.gallery-caption { background: rgba(0,0,0,0.8); padding: 5px 15px; border-radius: 20px; color: var(--highlight-yellow); margin-bottom: 10px; }
.sub-tab-btn { padding: 5px 15px; background: #333; border: 1px solid #555; color: #fff; cursor: pointer; }
.sub-tab-btn.active { background: var(--highlight-yellow); color: #000; }
.nav-btn { background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* --- AREA F: SIDEBAR DIREITA (MURAL) --- */
.area-f-sidebar-right { 
    grid-area: sideR; 
    background-color: #151515; 
    border-left: 2px solid var(--highlight-yellow); 
    display: flex; flex-direction: column; 
    padding: 15px; overflow: hidden; 
}
.chat-messages-area { flex-grow: 1; overflow-y: auto; margin-bottom: 10px; border-bottom: 1px solid #333; font-size: 0.85rem; }
.chat-msg-item { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid #333; }
.chat-user { color: var(--highlight-yellow); font-weight: bold; }
.chat-text { color: #ddd; display: block; }

/* FORMULÁRIO */
.form-box { background: #222; padding: 10px; border-radius: 6px; border: 1px solid #444; margin-top: auto; }
.form-title { font-size: 0.8rem; color: #fff; text-align: center; margin-bottom: 8px; }
.input-field { 
    width: 100%; padding: 8px; margin-bottom: 8px; 
    background: #333; 
    border: 1px solid #555; 
    color: #fff; 
    border-radius: 3px; font-size: 0.8rem; 
}
.btn-submit { 
    width: 100%; 
    background: var(--highlight-yellow); 
    color: #000; 
    font-weight: bold; 
    border: 2px solid #000; 
    padding: 8px; 
    cursor: pointer; 
    font-size: 0.8rem; 
    transition: 0.2s;
}
.btn-submit:hover { background: #fff; }

/* --- AREA C: FOOTER --- */
.area-c-footer { 
    grid-area: footer; 
    background: #000; 
    border-top: 2px solid var(--highlight-yellow); 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 0 30px; 
    z-index: 20;
    width: 100%;
}
.btn-affiliate-footer { background: #fff; color: #000; padding: 6px 12px; text-decoration: none; font-weight: bold; font-size: 0.8rem; border-radius: 3px; }
.footer-center-block { display: flex; flex-direction: column; align-items: center; justify-content: center; }

.footer-center-link { color: #fff; text-decoration: none; font-weight: bold; border-bottom: 1px dotted var(--highlight-yellow); margin-bottom: 5px; }
.footer-center-link:visited { color: #fff; }
.footer-copyright { font-size: 0.75rem; color: #888; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #111; border-left: 1px solid #333; }
::-webkit-scrollbar-thumb { background: var(--highlight-yellow); border-radius: 2px; border: 1px solid #000; }
::-webkit-scrollbar-thumb:hover { background: #fff; }

@media (max-width: 768px) {
    .main-layout {
        grid-template-areas: "header" "center" "sideL" "sideR" "footer";
        grid-template-rows: auto auto auto auto auto; grid-template-columns: 1fr;
        height: auto; overflow: auto;
    }
    .expo-layout { grid-template-columns: 1fr; }
}

/* --- ESTILO V13: FICHA TÉCNICA DE HERÓIS (NOVO) --- */

.hero-details-v13-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow-y: auto;
}

/* 1. Imagem Recortada (Sem ser redonda) */
.hero-img-v13 {
    height: 300px; /* Tamanho grande */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5)); /* Sombra para destacar do fundo */
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.hero-img-v13:hover {
    transform: scale(1.05);
}

/* 2. Título (Abaixo da imagem) */
.hero-title-v13 {
    font-size: 2.2rem;
    color: var(--highlight-yellow);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 2px 2px 0px #000;
    font-weight: 900;
}

/* 3. Caixa de Dados (Faixa Amarela Lateral) */
.hero-specs-v13 {
    width: 100%;
    background: rgba(0, 0, 0, 0.3); /* Fundo escuro sutil */
    border-left: 6px solid var(--highlight-yellow); /* O Traço Amarelo */
    padding: 20px;
    border-radius: 0 10px 10px 0;
    text-align: left;
    margin-top: 10px;
}

.hero-specs-v13 p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
}

/* Destaque em Bold (negrito) para os rótulos */
.hero-specs-v13 strong {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin-right: 5px;
    letter-spacing: 0.5px;
}

/* Texto da Biografia/História */
.bio-text {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-style: italic;
    color: #bbb;
    font-size: 0.95rem;
}

/* --- LAYOUT V14: FICHA TÉCNICA ESTILO CARD --- */

/* Container Principal */
.hero-card-v14 {
    display: grid;
    grid-template-columns: 1fr 280px; /* Coluna da Bio/Img e Coluna Lateral */
    grid-template-rows: auto 1fr auto;
    gap: 15px;
    height: 100%;
    padding: 10px;
    overflow-y: auto;
    background: radial-gradient(circle at center, #1a2e22 0%, #000 100%); /* Fundo verde escuro tech */
    border: 2px solid #444;
    border-radius: 10px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

/* Título no Topo (Nome do Herói) */
.card-header-v14 {
    grid-column: 1 / -1;
    text-align: right;
    border-bottom: 4px solid var(--highlight-yellow);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.card-title-v14 {
    font-family: 'Impact', sans-serif; /* Fonte grossa estilo HQ */
    font-size: 3.5rem;
    color: var(--highlight-yellow);
    text-transform: uppercase;
    text-shadow: 3px 3px 0 #000;
    letter-spacing: 2px;
    line-height: 1;
}

/* Área Principal (Imagem + Bio) */
.card-main-area {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Caixa de Biografia (Caixa Branca/Cinza Claro na imagem) */
.box-bio {
    background: rgba(230, 230, 230, 0.9); /* Fundo claro como papel */
    color: #000;
    padding: 20px;
    border: 2px solid #555;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.box-bio h3 {
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.box-bio p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: justify;
    font-weight: 600;
}

/* Imagem do Personagem (Flutuando) */
.hero-img-floating {
    height: 350px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.7));
    position: absolute;
    right: -20px;
    top: -160px; /* Puxa a imagem para cima para sair da caixa */
    z-index: 2; /* Fica na frente do texto */
    transition: transform 0.3s;
}
.hero-img-floating:hover { transform: scale(1.05); }

/* Coluna Lateral (Características) */
.card-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Estilo das Caixas Laterais e Inferiores */
.tech-box {
    background: #e6e6e6; /* Fundo claro */
    border: 3px solid #333;
    border-radius: 4px;
    color: #000;
    padding: 10px;
    box-shadow: 3px 3px 0 #000;
}

.tech-box h4 {
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 2px solid #000;
    margin-bottom: 8px;
    padding-bottom: 2px;
    font-size: 1rem;
}

.stats-list p {
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: bold;
    border-bottom: 1px dotted #999;
}
.stats-list span { color: #444; font-weight: normal; }

/* Rodapé (Time Criativo e Aparição) */
.card-footer-row {
    grid-column: 1 / -1;
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-box {
    flex: 1;
    background: #e6e6e6;
    border: 3px solid #333;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-thumb {
    float: right;
    width: 60px;
    height: auto;
    border: 1px solid #000;
    margin-left: 10px;
}

/* Responsividade para Celular */
@media (max-width: 900px) {
    .hero-card-v14 { grid-template-columns: 1fr; }
    .hero-img-floating { position: static; height: 250px; margin: 0 auto; display: block; }
    .card-title-v14 { text-align: center; font-size: 2.5rem; }
}
/* --- AJUSTE PARA IMAGEM VERTICAL TIPO DRAGÃO NEGRO --- */
.vertical-poster {
    max-width: 400px;
    width: 100%;
}

.vertical-poster img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    border: 5px solid var(--shb-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Ajuste do grid para imagem vertical + texto lado a lado */
.hero-profile-grid {
    grid-template-columns: 35% 62%; /* Mais espaço para a imagem vertical */
    gap: 3%;
}

/* Responsividade */
@media (max-width: 900px) {
    .hero-profile-grid {
        grid-template-columns: 1fr;
    }
    .vertical-poster {
        max-width: 300px;
        margin: 0 auto;
    }
}
/* --- ESTILOS PARA ABA LEIA --- */
.read-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.read-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--highlight-yellow);
}

.read-header h2 {
    color: var(--highlight-yellow);
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.read-header p {
    color: #ccc;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.read-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.read-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #333;
    border: 2px solid #555;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: #ccc;
    min-width: 200px;
    justify-content: center;
}

.read-option:hover {
    background: #444;
    border-color: var(--highlight-yellow);
    transform: translateY(-3px);
}

.read-option.active {
    background: var(--highlight-yellow);
    color: #000;
    border-color: #000;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.read-option i {
    font-size: 1.3rem;
}

.read-view {
    display: none;
    flex-grow: 1;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 25px;
    overflow: hidden;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-view.active-view {
    display: block;
}

/* Webtoon View */
.webtoon-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.webtoon-notice {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--highlight-yellow);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.webtoon-notice i {
    color: var(--highlight-yellow);
    font-size: 1.5rem;
}

.webtoon-notice p {
    color: #ddd;
    margin: 0;
}

.webtoon-notice a {
    color: var(--highlight-yellow);
    text-decoration: none;
    font-weight: bold;
}

.webtoon-notice a:hover {
    text-decoration: underline;
}

.webtoon-preview {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #444;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.preview-header i {
    font-size: 2.5rem;
    color: #00c6ff;
}

.preview-header h3 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
}

.preview-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-webtoon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #00c6ff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-webtoon:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,198,255,0.3);
}

/* Amazon View */
.amazon-preview {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: wrap;
}

.book-cover-container {
    flex-shrink: 0;
}

.book-cover-placeholder {
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, #232f3e 0%, #37475a 100%);
    border: 3px solid var(--highlight-yellow);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.book-cover-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ff9900;
}

.book-cover-placeholder span {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 0 20px;
}

.book-info {
    max-width: 450px;
}

.book-info h3 {
    color: var(--highlight-yellow);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.book-info p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.amazon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature i {
    color: #ff9900;
    font-size: 1.5rem;
}

.feature span {
    color: #ddd;
    font-size: 0.9rem;
    text-align: center;
}

.btn-amazon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #ff9900;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-amazon:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,153,0,0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .read-options {
        flex-direction: column;
        align-items: center;
    }
    
    .read-option {
        width: 100%;
        max-width: 300px;
    }
    
    .amazon-preview {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .book-cover-placeholder {
        width: 200px;
        height: 280px;
    }
    
    .book-cover-placeholder i {
        font-size: 3rem;
    }
    
    .amazon-features {
        grid-template-columns: 1fr;
    }
    
    .preview-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .read-header h2 {
        font-size: 1.5rem;
    }
    
    .read-option {
        padding: 12px 20px;
    }
    
    .book-info h3 {
        font-size: 1.5rem;
    }
}
.cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #232323;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    font-family: sans-serif;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.btn-cookie {
    background: #f1c40f; /* Cor de destaque (estilo super-herói) */
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .cookie-content { flex-direction: column; text-align: center; }
}
/* === ESTILOS PARA DEPOIMENTOS === */
.depoimento-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--highlight-yellow);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}

.depoimento-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--highlight-yellow);
}

.depoimento-info h3 {
    color: var(--highlight-yellow);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.depoimento-info .cargo {
    color: #aaa;
    font-style: italic;
    margin-bottom: 5px;
}

.depoimento-texto {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
}

.depoimento-texto p {
    margin-bottom: 15px;
}

/* === ESTILOS PARA FUTURAS EXPOSIÇÕES === */
.exposicao-futura-card {
    background: rgba(0, 156, 59, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.exposicao-futura-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--highlight-yellow));
}

.exposicao-titulo {
    color: var(--highlight-yellow);
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exposicao-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
}

.info-item strong {
    color: var(--highlight-yellow);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.info-item span {
    color: #ddd;
    font-size: 0.95rem;
}

.exposicao-descricao {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.btn-saiba-mais {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--highlight-yellow);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-saiba-mais:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .depoimento-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .depoimento-foto {
        width: 120px;
        height: 120px;
    }
    
    .exposicao-info {
        grid-template-columns: 1fr;
    }
    
    .exposicao-titulo {
        font-size: 1.3rem;
        flex-wrap: wrap;
    }
}
