/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

@font-face {
    font-family: 'fonte_astro'; 
    src: url('assets/anybodyb.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fonte_astro1'; 
    src: url('assets/anybodycl.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fonte_astro2'; 
    src: url('assets/anybodyubl.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fonte_astro3'; 
    src: url('assets/anybodyexbol.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth; 
    overscroll-behavior: none;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    overscroll-behavior: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #000000; 
    text-align: center;
    
    padding: 20px 0; 
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0); 
    transition: all 0.3s ease; 
}

header.cabecalho-rolou {
    padding: 8px 0; 
    box-shadow: 0 4px 15px rgba(45, 45, 45); 
}

.logo-topo {
    max-height: 130px; 
    width: auto;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease; 
}

header.cabecalho-rolou .logo-topo {
    max-height: 100px; 
}

.grid-produtos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cartao-produto {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none; 
    color: #fff;
}

.cartao-produto:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.container-imagens {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    background-color: #000;
}

.container-imagens img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: opacity 0.2s ease-in-out; 
}

.img-hover {
    opacity: 0; 
    z-index: 2; 
}

.img-padrao {
    opacity: 1; 
    z-index: 1; 
}


.cartao-produto:hover .img-hover {
    opacity: 1;
}

.info-produto {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.info-produto h2 {
    font-family: 'fonte_astro3', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-align: center; 
}

.preco {
    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace; 
    font-weight: bold; 
    color: #27ae60;
    margin-bottom: 0.5rem;
    text-align: center;
}

.descricao {
    color: #bbb;
    font-family: 'fonte_astro', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Botão WhatsApp */
.btn-comprar {
    display: block;
    text-align: center;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.btn-comprar:hover {
    background-color: #128C7E;
}

/* --- Responsividade --- */
@media (max-width: 1024px) {
    .grid-produtos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-produtos {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }
    
}

.btn-detalhes {
    display: block;
    text-align: center;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s, color 0.2s;
}

.btn-detalhes:hover {
    background-color: #333;
    color: #fff;
}

.container-produto {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}


.galeria-produto {
    flex: 1.5;
    display: flex;
    flex-direction: row; 
    gap: 1.5rem; 
    align-items: flex-start; 
}

.imagem-principal {
    flex: 1;
    width: 100%;
    overflow: hidden; 
    border-radius: 8px;
    border: 1px solid #333;
    cursor: zoom-in; 
    position: relative;
}

.imagem-principal img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.2s ease-out; 
    transform-origin: center center; 
}

.miniaturas {
    display: flex;
    flex-direction: column; 
    gap: 1rem;
    max-height: 600px; 
    overflow-y: auto; 
}

.miniaturas::-webkit-scrollbar {
    display: none;
}

.miniatura {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #333;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.6;
    flex-shrink: 0; 
}

.miniatura:hover {
    opacity: 1;
}

.miniatura.ativa {
    border-color: #fff;
    opacity: 1;
}

.info-detalhada {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.link-voltar {
    font-family: 'fonte_astro', sans-serif;
    color: #888;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: inline-block;
}

.link-voltar:hover {
    color: #fff;
}

.info-detalhada h1 {
    font-family: 'fonte_astro', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.preco-destaque {
    font-size: 2.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 2rem;
}

.descricao-longa {
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.descricao-longa p {
    margin-bottom: 1rem;
}

.descricao-longa ul {
    list-style-position: inside;
}

.btn-grande {
    font-family: 'fonte_astro', sans-serif;
    font-size: 1.2rem;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seletor-tamanhos {
    margin-bottom: 2rem; 
}

.titulo-tamanhos {
    display: block;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.botoes-tamanho {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap; 
}

.btn-tamanho {
    background-color: transparent;
    color: #fff;
    border: 2px solid #333;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-tamanho:hover {
    border-color: #888;
}

.btn-tamanho.selecionado {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.btn-tamanho:disabled {
    background-color: #1a1a1a;
    color: #444;
    border-color: #333;
    cursor: not-allowed; 
    text-decoration: line-through; 
    transform: none; 
}

.btn-tamanho:disabled:hover {
    background-color: #1a1a1a;
    color: #444;
    border-color: #333;
}
.topo-seletor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.topo-seletor .titulo-tamanhos {
    margin-bottom: 0; 
}

.link-tabela {
    
    color: #888;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.link-tabela:hover {
    color: #fff;
}

.container-tabela {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem 4rem 2rem;
    text-align: center;
}

.container-tabela h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.container-tabela p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.tabela-responsiva {
    overflow-x: auto;
}

.container-tabela table {
    width: 100%;
    border-collapse: collapse;
    background-color: #111; 
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.container-tabela th, 
.container-tabela td {
    padding: 1.2rem;
    border-bottom: 1px solid #000000;
    text-align: center;
    color: #ddd;
}

.container-tabela th {
    background-color: #222;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.container-tabela tr:last-child td {
    border-bottom: none;
}

.container-tabela tr:hover td {
    background-color: #1a1a1a; 
    color: #fff;
}

.microcopy-botao {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 0.6rem;
    font-weight: normal;
}

.barra-fixa-mobile {
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    padding: 1rem 1.5rem;
    border-top: 1px solid #333;
    z-index: 1000; 
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.6); 
}

.preco-fixo {
    font-size: 1.3rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #27ae60;
}

.barra-fixa-mobile .btn-comprar {
    margin: 0;
    padding: 0.8rem 1.5rem;
    font-family: 'fonte_astro', sans-serif;
    font-size: 1rem;
}

@media (max-width: 800px) {
    .container-produto {
        flex-direction: column; 
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .info-detalhada h1 {
        font-size: 1.5rem;
    }

    .galeria-produto {
        flex-direction: column-reverse; 
    }
    
    .miniaturas {
        flex-direction: row; 
        overflow-x: auto; 
    }

    .barra-fixa-mobile {
        display: flex; 
    }
    
    body {
        padding-bottom: 90px; 
    }

    .info-produto h2 {
        font-size: 0.85rem; 
    }

    .galeria-produto {
        flex-direction: column-reverse;
        width: 100%; 
    }
    
    .miniaturas {
        flex-direction: row;
        overflow-x: auto; 
        width: 100%; 
        max-width: 100vw; 
        padding-bottom: 8px; 
        gap: 0.5rem; 
    }

    .bloco-preco-lancamento {
        display: flex !important;
        width: 100%;
        margin-top: 1rem;
    }
}

.hero-text {
    text-align: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.hero-text h1 {
    font-family: 'fonte_astro3', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-text p {
    color: #ffffff;
    font-size: 1.1rem;
}

main.drop-exclusivo {
    display: block; 
    max-width: 450px; 
    margin: 2rem auto 4rem auto; 
    padding: 0 1rem;
}

main.drop-exclusivo .cartao-produto {
    width: 100%;
}

footer {
    border-top: 1px solid #333;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 2rem;
    background-color: #0a0a0a;
}

.manifesto {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.manifesto h3 {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.manifesto p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.6;
}

.redes-sociais p {
    color: #888;
    margin-bottom: 0.5rem;
}

.link-insta {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.link-insta:hover {
    color: #27ae60;
    border-bottom-color: #27ae60;
}

.linha-um {
    font-family: 'fonte_astro3', sans-serif;
    white-space: nowrap; 
}

.bloco-preco-lancamento {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.tag-escassez {
    background-color: #e74c3c; 
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.valores-destaque {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 0.2rem; 
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.preco-antigo {
    color: #666;
    font-size: 1.1rem;
    text-decoration: line-through;
    font-family: 'Courier New', Courier, monospace;
    white-space: nowrap; 
}
.bloco-preco-lancamento .preco-destaque {
    margin-bottom: 0;
    color: #27ae60;
    font-size: 2.2rem; 
    white-space: nowrap; 
    line-height: 1; 
}
.texto-urgencia {
    color: #fff;
    font-family: 'fonte_astro','sans_serif'; 
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 0.2rem;
}

.mensagem-erro {
    background-color: rgba(231, 76, 60, 0.15); 
    border: 1px solid #e74c3c; 
    color: #ff6b6b; 
    font-size: 1.05rem; 
    font-weight: bold;
    text-align: center; 
    padding: 0.8rem 1rem; 
    border-radius: 6px; 
    margin-bottom: 1.2rem;
    width: 100%;
    box-sizing: border-box; 
    animation: tremer 0.4s ease-in-out; 
}

@keyframes tremer {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex; justify-content: center; align-items: center;
    z-index: 1000;
}
.modal-content {
    background: #fff; padding: 30px 20px; border-radius: 8px;
    width: 90%; max-width: 400px; text-align: center;
    position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.fechar-modal {
    position: absolute; top: 10px; right: 15px; font-size: 28px;
            cursor: pointer; color: #666; font-weight: bold;
}
.fechar-modal:hover { color: #000; }
.modal-content h2 { font-size: 20px; margin-bottom: 10px; }
.modal-content p { font-size: 14px; color: #000000; margin-bottom: 20px; }
.modal-content input {
    width: 100%; padding: 12px; margin-bottom: 20px;
    border: 1px solid #000000; border-radius: 4px; box-sizing: border-box;
    font-size: 16px;
}
.btn-confirmar-email {
    background-color: #000; color: #fff; border: none;
    padding: 15px 20px; font-size: 16px; border-radius: 4px;
    cursor: pointer; width: 100%; font-weight: bold; text-transform: uppercase;
}
.btn-confirmar-email:hover { background-color: #333; }
.btn-confirmar-email:disabled { background-color: #999; cursor: not-allowed; }

#lightning-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: #000; 
}