@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Great+Vibes&display=swap');
/* ==========================================================================
   CONFIGURAÇÕES GERAIS E RESETS
   ========================================================================== */
body.home {
    background-color: #0a0508; /* Tom escuro elegante de fundo */
    color: rgb(255, 255, 255);
}

html, body {
    overflow-x: hidden; /* Esconde qualquer coisa que vaze para os lados e mata a barra horizontal */
    width: 100%;
}

body {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    background-color: #0a0508;
}

p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4em;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

/* ==========================================================================
   2. BOTÕES DE ACESSO (LOGIN / CADASTRO)
   ========================================================================== */
/* ── BOTÕES DE ACESSO / CHIP DE USUÁRIO ── */
.top-access-btns {
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
}
.access-btn {
    padding: 5px 14px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.78rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.55);
    background: none;
}



.access-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.access-btn-cadastro {
    background: rgba(163,78,158,0.15);
    border-color: rgba(163,78,158,0.4);
    color: #c87fc3;
}
.access-btn-cadastro:hover { background: rgba(163,78,158,0.3); }

.access-btn-login {
    background: transparent;
    color:#d4a87a;
    border: 1px solid #d4a87a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 7px 20px;
}
.access-btn-login:hover {
    background: #d4a87a;
    color: #0a0508;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3px 10px 3px 4px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.user-chip:hover { background: rgba(255,255,255,0.1); border-color: rgba(163,78,158,0.4); }
.user-avatar-mini {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(163,78,158,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #c87fc3;
    overflow: hidden;
    flex-shrink: 0;
}
.user-avatar-mini img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.user-chip-nome {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── DRAWER USUÁRIA ── */
.drawer-user-area {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 0.5rem;
}
.drawer-user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.drawer-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(163,78,158,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #c87fc3;
    overflow: hidden;
    flex-shrink: 0;
}
.drawer-user-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.drawer-user-info { display: flex; flex-direction: column; }
.drawer-user-nome { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.drawer-user-sub  { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.drawer-btn-sair {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-family: inherit;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0.5rem 0;
    text-align: left;
    transition: color 0.2s;
    width: 100%;
    margin-top: 0.4rem;
}
.drawer-btn-sair:hover { color: rgba(255,255,255,0.6); }



/* ==========================================================================
   3. HEADER COM BANNER E MENU (NAV)
   ========================================================================== */
header.header-com-banner {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    aspect-ratio: 1280 / 250 !important;
    padding: 0 !important;
    z-index: 1 !important;
    border-bottom: 1px solid rgba(163, 78, 158, 0.2) !important;
}

.header-bg-static {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

.header-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, rgba(10, 5, 8, 0.65), rgba(10, 5, 8, 0.35)) !important;
    z-index: 2 !important;
}

.header-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10 !important;
    display: flex ;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    padding: 20px 110px !important;
    box-sizing: border-box !important;
}

.header-content nav {
    width: auto !important;
    gap: 2.5rem !important;
    display: flex ;
    justify-content: space-between !important;
    margin: 0 !important;
    margin-bottom: 5px !important;
    font-size: 20px !important;
}

nav a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 18px !important;
    letter-spacing: 0.2em !important;
    text-decoration: none !important;
    font-weight: bold !important;
    margin: 0 !important;
    transition: color 0.2s !important;
}

nav a:hover,
nav a.active {
    color:  #d4a87a !important;
    text-decoration: none !important;
}

/* ==========================================================================
   4. BANNER SLIDER PRINCIPAL
   ========================================================================== */
.banner-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.banner-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(122, 18, 163, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
}

.slider-wrapper {
    display: flex;
    width: 400%;
    transition: transform 0.5s ease-in-out;
    will-change: transform; /* evita flicker no mobile */
}

.slide {
    width: 25%;
    flex-shrink: 0;
}

.banner-img {


    width: 100%;
    
    /* MÁGICA AQUI: 50vh define a altura exata do banner, neste caso metade da tela. */
    height: auto; 
    

    
    /* Garante que o fundo cubra toda a área, escalando de forma responsiva. */
    background-size: cover; 
    
    /* Centraliza a imagem no container. */
    background-position: center; 
    
    /* Evita que a imagem de fundo se repita. */
    background-repeat: no-repeat;
}



/* Fix das setas voando do Slider Principal */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(163, 78, 158, 0.5);
    background: rgba(10, 5, 8, 0.7);
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover,
.next-btn:hover {
    background: #7a12a3;
    border-color: #7a12a3;
    color: #fff;
}

/* ==========================================================================
   5. SEÇÕES DO SITE (HERO, LABELS, DIVISORES)
   ========================================================================== */
.section-divider {
    width: 80%;
    margin: 40px auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(163, 78, 158, 0.35), transparent);
    border: none;
}

.sec-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #a34e9e;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    display: block;
}

.hero-frase {
    width: 100%;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-frase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(122, 18, 163, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #a34e9e;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 32px;
    background: #7a12a3;
    color: #fff;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #a34e9e;
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    padding: 12px 32px;
    background: transparent;
    color: #d4a0cc;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(163, 78, 158, 0.5);
    border-radius: 2px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(163, 78, 158, 0.1);
    border-color: #d4a0cc;
    transform: translateY(-2px);
    color: #fff;
}

/* ==========================================================================
   6. SEÇÃO EM BREVE (COMING SOON)
   ========================================================================== */
.coming-soon-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 2rem;
    text-align: center;
}

.coming-soon-wrapper {
    position: relative;
    width: 100%;
    min-height: 320px;
    margin-top: 20px;
}

/* Os slides contêm display dinâmico controlado pelo JS */
.coming-soon-slide {
    display: none;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
    animation: fadeIn 0.5s ease-in-out;
}

.coming-soon-slide.active {
    display: grid;
}

.coming-soon-cover {
    position: relative;
    display: inline-block;
}

.coming-soon-cover::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(163, 78, 158, 0.35);
    z-index: 0;
    pointer-events: none;
}

.coming-soon-cover img {
    position: relative;
    z-index: 1;
    width: 200px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(122, 18, 163, 0.3);
    transition: transform 0.3s;
    display: block;
}

.coming-soon-cover h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #e8c99a;
    letter-spacing: 0.1em;
    margin-top: 25px;
    text-align: center;
}

.coming-soon-text {
    border-left: 2px solid #7a12a3;
    padding-left: 1.5rem;
}

.coming-soon-text p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 100%;
    margin: 0;
}

.cs-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cs-prev-btn,
.cs-next-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(163, 78, 158, 0.5);
    background: transparent;
    color: #a34e9e;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cs-prev-btn:hover,
.cs-next-btn:hover {
    background: #7a12a3;
    color: #fff;
    border-color: #7a12a3;
}

/* ==========================================================================
   7. DEPOIMENTOS E LANÇAMENTOS
   ========================================================================== */
.depoimentos-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem 2rem 4rem;
}

.depoimentos-title {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #d4a87a;
    margin-bottom: 2.5rem;
}

.depoimentos-slider-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.depoimentos-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    flex: 1;
    scroll-behavior: smooth;
    scrollbar-width: none; /* esconde scrollbar no Firefox */
    
}

.depoimentos-grid::-webkit-scrollbar {
    display: none; /* esconde scrollbar no Chrome */
}

.depo-card {
    min-width: 200px; /* era maior, reduz aqui */
    max-width: 250px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(163, 78, 158, 0.15);
    border-radius: 4px;
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s, background 0.3s;
    max-height: 350px;        /* ajuste a altura que preferir */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4a87a transparent;
}

.depo-card::-webkit-scrollbar {
    width: 4px;
}

.depo-card::-webkit-scrollbar-track {
    background: transparent;
}

.depo-card::-webkit-scrollbar-thumb {
    background-color: #d4a87a;
    border-radius: 10px;
}

.depo-card p {
    max-width: 100%; 
    margin: 0;
}

.depo-card:hover {
    border-color: rgba(163, 78, 158, 0.4);
    background: rgba(122, 18, 163, 0.06);
}

.depo-destaque {
    border-color: rgba(163, 78, 158, 0.4);
    background: rgba(122, 18, 163, 0.08);
    position: relative;
}

.depo-destaque::before {
    content: '✦';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0508;
    color: #a34e9e;
    padding: 0 8px;
    font-size: 14px;
}

.depo-stars {
    color: #a34e9e;
    font-size: 14px;
    letter-spacing: 3px;
}

.depo-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    flex: 1;
}

.depo-text {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4a87a transparent;
}

.depo-text::-webkit-scrollbar {
    width: 4px;
}

.depo-text::-webkit-scrollbar-track {
    background: transparent;
}

.depo-text::-webkit-scrollbar-thumb {
    background-color: #d4a87a;
    border-radius: 10px;
}

.depo-autor {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #a34e9e;
    animation: brilho 2s ease-in-out infinite;
}

@keyframes brilho {
    0%   { text-shadow: 0 0 5px #d4a87a, 0 0 10px #d4a87a; opacity: 1; }
    50%  { text-shadow: 0 0 15px #d4a87a, 0 0 30px #ffcd85, 0 0 50px #ffcd85; opacity: 0.8; }
    100% { text-shadow: 0 0 5px #d4a87a, 0 0 10px #d4a87a; opacity: 1; }
}

.depo-prev, .depo-next {
    background: transparent;
    border: 1px solid rgba(212, 168, 122, 0.4);
    color: #d4a87a;
    font-size: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.depo-prev:hover, .depo-next:hover {
    background: rgba(212, 168, 122, 0.1);
    border-color: #d4a87a;
}

.latest-releases-section {
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.latest-releases-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3em;
    color: #d4a87a;
    margin-bottom: 40px;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.release-item {
    display: block;
    transition: transform 0.3s;
}

.release-item:hover {
    transform: translateY(-10px);
}

.release-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid rgba(163, 78, 158, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.release-item:hover img {
    border-color: rgba(163, 78, 158, 0.6);
    box-shadow: 0 12px 30px rgba(122, 18, 163, 0.35);
}

 /* ==========================================================================
    4. FOOTER (RODAPÉ)
    ========================================================================== */
footer {
    background: #0a0508;
    color: rgba(255, 245, 230, 0.7);
    text-align: center;
    padding: 2rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
    
    /* Adicione estas duas linhas abaixo para garantir o comportamento */
    width: 100% !important;
    box-sizing: border-box !important;
}

.social-media p {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.4rem;
}

.social-media a {
    color: #742670;
    text-decoration: none;
    font-size: 15px;
    display: block;
    margin-bottom: 0.5rem;
}

.copyright p {
    font-size: 12px;
    opacity: 0.5;
    margin-top: 0.5rem;
}

.dev-credits a {
    color: #d4a87a; /* Usa o dourado para destacar seu nome com elegância */
    text-decoration: none;
    transition: opacity 0.2s;
}

.dev-credits a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
    

.section-divider2 {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #c4956a55, transparent);
}

/* ==========================================================================
   9. ANIMAÇÕES E RESPONSIVIDADE
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .coming-soon-slide.active {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .coming-soon-text {
        text-align: center;
        border-left: none;
        border-top: 2px solid #7a12a3;
        padding-top: 20px;
        padding-left: 0;
    }


    .depo-card {
        min-width: calc(100% - 0px);
        max-width: 100%
    }
    .hero-quote {
        font-size: 26px;
    }
    .header-content {
        padding: 20px !important;
        justify-content: center !important;
    }
    .header-content nav {
        width: 100% !important;
        font-size: 14px !important;
    }
    nav a {
        font-size: 13px !important;
    }
}

/* ==========================================================================

/* ==========================================================================
   MENU HAMBURGUER — ESTILOS BASE (sempre ativos)
   ========================================================================== */

/* Botão hamburguer: escondido no desktop, aparece no mobile */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(10, 5, 8, 0.7);
    border: 1px solid rgba(163, 78, 158, 0.4);
    border-radius: 4px;
    cursor: pointer;
    z-index: 9999;
    position: fixed;
    top: 16px;
    left: 16px;
    transition: border-color 0.3s;
}
.hamburger-btn:hover { border-color: #a34e9e; }

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #d4a87a;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Overlay escuro */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 8, 0.6);
    z-index: 1050;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.visible { opacity: 1; }

/* Gaveta lateral */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    background: #0f0610;
    border-right: 1px solid rgba(163, 78, 158, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 0 0 40px;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, #7a12a3, #d4a87a, #7a12a3);
}

.mobile-drawer-logo {
    padding: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(163, 78, 158, 0.15);
    overflow: hidden;
    height: 100px;
    flex-shrink: 0;
}

.mobile-drawer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.mobile-drawer nav {
    display: flex;
    flex-direction: column !important;
    padding: 8px 24px 0 !important;
    gap: 0 !important;
    width: auto !important;
    font-size: unset !important;
    justify-content: unset !important;
    margin-bottom: 0 !important;
}

.mobile-drawer nav a {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 13px !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(163, 78, 158, 0.1) !important;
    transition: color 0.2s, padding-left 0.2s !important;
    display: block !important;
    margin: 0 !important;
}

.mobile-drawer nav a:last-child { border-bottom: none !important; }

.mobile-drawer nav a:hover,
.mobile-drawer nav a.active {
    color: #d4a87a !important;
    padding-left: 8px !important;
}

.mobile-drawer-access {
    margin-top: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(163, 78, 158, 0.15);
}

.mobile-drawer-access .access-btn {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   MEDIA QUERIES MOBILE
   ========================================================================== */
@media (max-width: 768px) {

    /* Mostra o botão hamburguer */
    .hamburger-btn {
        display: flex ;
    }

    /* Esconde a nav do header e os botões de acesso */
    .header-content nav {
        display: none !important;
    }


    /* Header menor */
    header.header-com-banner {
        aspect-ratio: unset !important;
        height: 90px !important;
        
    }

    /* Hero */
    .hero-quote {
        font-size: 22px;
    }
    .hero-frase {
         padding: 3rem 0;
    }

    .hero-sub {
        padding: 0 1rem; /* ← adiciona isso */
        box-sizing: border-box;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;    /* ← adiciona esse padding */
        width: 100%;
        box-sizing: border-box;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        max-width: 260px;
    }

    /* Coming Soon */
    .coming-soon-slide.active {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .coming-soon-cover img {
        width: 150px;
        margin: 0 auto;
    }
    .coming-soon-text {
        text-align: center;
        border-left: none;
        border-top: 2px solid #7a12a3;
        padding-top: 20px;
        padding-left: 0;
    }
    .coming-soon-text p { font-size: 15px; }

    /* Depoimentos */
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    /* Lançamentos: 2 colunas */
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 12px;
        gap: 12px;
    }

    /* Filtro */
    .filter-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .filter-grid label {
        white-space: normal;
        word-break: break-word;
    }
    .filter-dropdown {
        width: 92vw !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: unset !important;
    }

    /* Tipografia */
    h1 { font-size: 2.8em; }
    .depoimentos-title,
    .latest-releases-section h2 { font-size: 2.2em; }

    .btn-primary, .btn-secondary {
        width: auto;        /* ← troca 100% por auto */
        min-width: 220px;
        text-align: center;
        max-width: 260px;
        box-sizing: border-box;
    }

    .hero-inner {
    padding: 0 1rem;
    box-sizing: border-box;
}
}

@media (max-width: 480px) {
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    h1 { font-size: 2.2em; }
}


.lancamento-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.lancamento-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
    text-align: left;
}

.lancamento-frame {
    position: relative;
    width: 240px;
}

.lancamento-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(163, 78, 158, 0.4);
    z-index: 0;
}

.lancamento-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 12px 40px rgba(122, 18, 163, 0.3);
}

.lancamento-serie {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #a34e9e;
    margin: 0 0 8px 0;
    max-width: 100%;
}

.lancamento-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.1;
}

.lancamento-titulo em {
    font-style: italic;
    color: #d4a87a;
}

.lancamento-subtitulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 1.5rem 0;
    max-width: 100%;
}

.lancamento-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 200px;
}

.lancamento-divider::before,
.lancamento-divider::after {
    content: '';
    flex: 1;
    height: 1px;
}

.lancamento-divider::before {
    background: linear-gradient(to right, transparent, #c4956a);
}

.lancamento-divider::after {
    background: linear-gradient(to left, transparent, #c4956a);
}

.lancamento-diamond {
    width: 5px;
    height: 5px;
    background: #d4a87a;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.lancamento-sinopse {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin: 0 0 1.5rem 0;
    border-left: 2px solid #7a12a3;
    padding-left: 1.2rem;
    max-width: 100%;
}

.lancamento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2rem;
}

.lancamento-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 0.5px solid #c46ac4;
    border-radius: 20px;
    color: #e8c99a;
}

.lancamento-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lancamento-btn-amazon {
    padding: 12px 28px;
    background: #FF9900;
    color: #000;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
}

.lancamento-btn-amazon:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.lancamento-btn-ilustra {
    padding: 12px 28px;
    background: transparent;
    color: #d4a87a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #c4956a;
    border-radius: 2px;
    transition: all 0.2s;
}

.lancamento-btn-ilustra:hover {
    background: rgba(196, 149, 106, 0.1);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .lancamento-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .lancamento-capa {
        display: flex;
        justify-content: center;
    }

    .lancamento-frame {
        width: 180px;
    }

    .lancamento-sinopse {
        border-left: none;
        border-top: 2px solid #7a12a3;
        padding-left: 0;
        padding-top: 1rem;
        text-align: center;
    }

    .lancamento-tags {
        justify-content: center;
    }

    .lancamento-btns {
        justify-content: center;
    }

    .lancamento-divider {
        margin: 0 auto 1.5rem;
    }
}

.sec-label.destaque {
    animation: brilho 2s ease-in-out infinite;
}

@keyframes brilho {
    0%   { color: #a34e9e; text-shadow: none; }
    50%  { color: #e8c99a; text-shadow: 0 0 12px rgba(212, 168, 122, 0.8), 0 0 24px rgba(163, 78, 158, 0.4); }
    100% { color: #a34e9e; text-shadow: none; }
}

.dev-credit p {
    font-size: 11px;
    opacity: 0.35;
    margin-top: 0.3rem;
    transition: opacity 0.2s;
}
.dev-credit p:hover { opacity: 0.7; }
.dev-credit a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.depo-paginacao {
    display: block;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    margin-top: 0.8rem;
}

