:root {
    --primary-mint: #00ffcc;
    --accent-purple: #a855f7; 
    --bg-dark: #111111;
    --bg-gradient: linear-gradient(180deg, #1a0b2e 0%, #111111 100%);
    --card-bg: rgba(26, 26, 26, 0.9);
}

/* BARRA DE ROLAGEM */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-mint); }
* { scrollbar-width: thin; scrollbar-color: var(--accent-purple) #000000; }

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { 
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 120px;
    overflow-x: hidden;
}

header { padding: 40px 10px 20px; display: flex; justify-content: center; width: 100%; }
.logo-container { display: flex; align-items: center; gap: 8px; }
.logo-img { width: 50px; height: auto; }
header h1 { 
    font-size: 2rem; font-weight: 800; text-transform: uppercase; 
    letter-spacing: -2px; line-height: 1;
    background: linear-gradient(90deg, var(--primary-mint) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.main-container { flex: 1; display: flex; align-items: flex-start; justify-content: center; width: 100%; zoom: 85%; }

.product-card { 
    background: var(--card-bg); width: 100%; max-width: 460px; border-radius: 28px; 
    padding: 10px; border: 1px solid var(--primary-mint); backdrop-filter: blur(15px); 
    display: flex; flex-direction: column; gap: 20px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    
}

@media (min-width: 900px) {
    header h1 { font-size: 2.5rem; }
    .product-card { max-width: 1000px; flex-direction: row; padding: 25px; }
    .product-left { flex: 1.1; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 35px; }
    .product-right { flex: 1; padding-left: 35px; }
}

/* ÁREA DA IMAGEM PADRONIZADA */
.product-img-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-img-container img {
    width: 100%; height: 100%; object-fit: contain; padding: 15px;
}

/* BLOCOS PRETOS ARREDONDADOS COM BORDA LATERAL */
.info-block {
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 16px;
    position: relative;
    margin-bottom: 10px;
}

/* Cores das Bordas Laterais */
.block-purple { border-left: 4px solid var(--accent-purple); }
.block-mint { border-left: 4px solid var(--primary-mint); }

.info-block h3, .info-block h2.block-title {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 800;
}

.txt-mint { color: var(--primary-mint); }
.txt-purple { color: var(--accent-purple); }

/* TEXTO LIMITADO (5 LINHAS) */
.limit-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}
.limit-text.expanded { -webkit-line-clamp: unset; }

.info-block ol { padding-left: 18px; }

/* BOTÕES VEJA MAIS */
.btn-toggle {
    background: none; border: none; cursor: pointer;
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    padding: 10px 0 0 0; display: flex; gap: 4px;
}
.btn-purple { color: var(--accent-purple); }
.btn-mint { color: var(--primary-mint); }

/* CAIXA DE COMPRA */
.buy-box { 
    margin-top: 20px; background: rgba(255,255,255,0.03); padding: 25px; 
    border-radius: 24px; border: 1px solid rgba(0, 255, 204, 0.1); 
}
label { display: block; margin-bottom: 10px; font-size: 11px; font-weight: 800; color: var(--accent-purple); text-transform: uppercase; }
select { 
    width: 100%; padding: 16px; background: #1a1a1a; border: 1px solid var(--primary-mint); 
    color: #fff; border-radius: 14px; font-size: 16px; margin-bottom: 20px; outline: none;
}
.btn-buy { 
    background: linear-gradient(90deg, #6a11cb, #45108a); 
    color: white; border: none; width: 100%; padding: 18px; border-radius: 14px; 
    font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.3s;
}
.btn-buy:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(168, 85, 247, 0.5); }

/* MENU INFERIOR */
.mac-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.95); border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: center; z-index: 10000; backdrop-filter: blur(20px);
}
.nav-list { display: flex; list-style: none; padding: 10px 15px; gap: 15px; max-width: 100%; overflow-x: auto; }
.nav-item { display: flex; flex-direction: column; align-items: center; color: #555; min-width: 70px; text-decoration: none; }
.nav-item:hover { color: var(--primary-mint); }
.nav-item i { font-size: 1.2rem; margin-bottom: 4px; }
.nav-item span { font-size: 9px; font-weight: 700; text-transform: uppercase; }
