﻿/* ESTILOS GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ESTILOS DO BANNER PREMIUM */
.gold-premium-banner {
    background: linear-gradient(90deg, #000000, #1a1a1a);
    color: #d4af37;
    text-align: center;
    height: 40px;
    padding: 0 12px;
    font-family: 'Arial', sans-serif;
    border-bottom: 2px solid #d4af37;
    position: relative; /* agora faz parte do fluxo */
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    z-index: 1100;
}

.gold-promo-content {
    font-size: clamp(12px, 2vw, 16px);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gold-highlight {
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    white-space: nowrap;
}

.gold-promo-button {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 6px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 1px solid #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    white-space: nowrap;
    font-size: clamp(11px, 1.8vw, 14px);
    flex-shrink: 0;
}

.gold-promo-button:hover {
    background: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* Efeito de brilho deslizante */
.gold-premium-banner::before {
    /* remover efeito flutuante/brilho para banner fixo */
    display: none;
}

@keyframes shine-effect {
    100% {
        left: 150%;
    }
}

/* HEADER PREMIUM */
header {
    background-color: #000;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
    /* altura reduzida e posicionado abaixo do banner fixo */
    height: 40px;
    padding: 0;
    position: sticky;
    top: 0; /* header sticks to top after banner (now in flow) */
    z-index: 100;
    border-bottom: 1px solid #d4af37;
}

.header-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 16px;
    width: 100%;
}

.header-content nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}

.logo-img {
    height: clamp(28px, 4vw, 48px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    background: linear-gradient(to right, #d4af37, #f9d423);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Header Top - Logo, Hamburger, Search */
.header-top {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    background: #000;
    border-bottom: 2px solid #d4af37;
    gap: 15px;
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.hamburger-menu {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.hamburger-menu:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.logo-header {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-text-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.logo-text-header img {
    max-width: 200px;
    height: auto;
    display: block;
}

.logo-recarga {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-bux {
    background: linear-gradient(135deg, #ff6b35, #f9d423);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(249, 212, 35, 0.5);
}

.cart-icon-header {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cart-icon-header:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.logo-large {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.search-header {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.search-input-header {
    width: 100%;
    padding: 12px 50px 12px 15px;
    background: #1a1a1a;
    border: 2px solid #d4af37;
    border-radius: 25px;
    color: #e0e0e0;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.search-input-header::placeholder {
    color: #888;
}

.search-input-header:focus {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.search-btn-header {
    position: absolute;
    right: 5px;
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    transition: all 0.3s;
}

.search-btn-header:hover {
    color: #ffd700;
    transform: scale(1.1);
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #000;
    border-bottom: 2px solid #d4af37;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-nav.active {
    display: flex;
    max-height: 500px;
    padding: 15px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-left-color: #d4af37;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    align-items: center;
    width: auto;
}

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 8px 12px;
    font-size: clamp(12px, 3vw, 16px);
    white-space: nowrap;
}

nav a:hover {
    color: #d4af37;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO SECTION PREMIUM */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../photo-1633613286848-e6f43bbafb8d');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(to right, #d4af37, #f9d423);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
    padding: 0 10px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #d4af37, #f9d423);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(1rem, 3vw, 1.2rem);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 150%;
}

/* OFFERS SECTION PREMIUM */
.offers {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #d4af37;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Section Header - MAIS VENDIDOS */
.section-header-bestsellers {
    margin-bottom: 30px;
}

.section-title-bestsellers {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-line {
    width: 100%;
    height: 2px;
    background: #d4af37;
    max-width: 200px;
}

.offer-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.offer-banner {
    background: linear-gradient(90deg, #000, #1a1a1a);
    color: #d4af37;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #d4af37;
}

.popular-banner {
    background: linear-gradient(90deg, #d4af37, #f9d423) !important;
    color: #000 !important;
}

.popular-card {
    border-color: #d4af37 !important;
}

.offer-header {
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: #d4af37;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.offer-header h3 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 8px;
}

.offer-header p {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.offer-body {
    padding: 20px;
}

.offer-price {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: bold;
    color: #d4af37;
    text-align: center;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.offer-price span {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #e0e0e0;
}

.offer-features {
    list-style: none;
    margin-bottom: 25px;
}

.offer-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features li::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
}

.offer-button {
    display: block;
    text-align: center;
    background: linear-gradient(to right, #d4af37, #f9d423);
    color: #000;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.offer-button:hover {
    background: linear-gradient(to right, #f9d423, #d4af37);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* HOW IT WORKS PREMIUM */
.how-it-works {
    padding: 60px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../photo-1635070041078-e363dbe005cb') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 25px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}

.step:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom, #d4af37, #f9d423);
    color: #000;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.step h3 {
    margin-bottom: 15px;
    color: #d4af37;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.step p {
    color: #b0b0b0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* REDEEM FORM PREMIUM */
.redeem-form {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1627855437693-dcc7b0c4ba7b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.redeem-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #d4af37;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #d4af37;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #d4af37;
}

.submit-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #d4af37, #f9d423);
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background: linear-gradient(to right, #f9d423, #d4af37);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* TESTIMONIALS PREMIUM */
.testimonials {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #e0e0e0;
    position: relative;
    padding-left: 20px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.testimonial-text::before {
    content: "“";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-size: 2rem;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
}

.author-info h4 {
    color: #d4af37;
    margin-bottom: 5px;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.author-info p {
    color: #b0b0b0;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* FAQ PREMIUM */
.faq {
    padding: 60px 0;
    background-color: #000;
}

.faq-item {
    margin-bottom: 12px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #d4af37;
}

.faq-question {
    padding: 16px;
    background: linear-gradient(90deg, #1a1a1a, #000);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d4af37;
    transition: all 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.faq-question:hover {
    background: linear-gradient(90deg, #000, #1a1a1a);
}

.faq-answer {
    padding: 16px;
    display: none;
    color: #b0b0b0;
    border-top: 1px solid #333;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.faq-item.active .faq-answer {
    display: block;
}

/* FOOTER PREMIUM */
footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 25px;
    border-top: 1px solid #d4af37;
    position: relative;
}

/* Options panel for product pages */
.options-panel{display:flex;flex-direction:column;gap:8px;margin-top:8px;width:100%}
.option-btn{display:flex;justify-content:space-between;align-items:center;padding:8px 10px;background:#0b0b0b;border:1px solid #222;color:#e0e0e0;border-radius:8px;cursor:pointer;width:100%}
.option-btn:hover{border-color:#d4af37}
.option-btn.selected{border-color:#d4af37;box-shadow:0 0 0 3px rgba(212,175,55,0.08)}
.option-btn small{color:#cfcfcf}
@media(min-width:700px){.options-panel{flex-direction:column}}

/* Animations for qty changes */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}
.anim-pulse{animation:pulse 350ms ease}

.selected-robux{transition:opacity 220ms, transform 220ms}

/* Product purchase panel layout (matches requested design) */
.product-purchase{
    background:#070707;
    border:1px solid rgba(212,175,55,0.12);
    border-radius:12px;
    padding:18px;
    box-shadow:0 6px 18px rgba(0,0,0,0.55);
}
.product-purchase .product-price{
    font-size:28px;
    color:#d4af37;
    font-weight:800;
    margin-top:12px;
    text-align:center;
}
.product-purchase .small{ text-align:center }
.product-purchase .availability{ color:#7ed957;margin-top:8px;font-weight:700;text-align:center }
.product-purchase .qty-controls{display:flex;align-items:center;gap:10px;justify-content:center;margin-top:12px}
.product-purchase .qty-controls .qty-btn{width:40px;height:36px;border-radius:8px;background:transparent;border:1px solid #222;color:#e0e0e0;font-size:18px}
.product-purchase .qty-controls input[type="number"]{width:86px;text-align:center;padding:8px;border-radius:8px;background:#0a0a0a;color:#e0e0e0;border:1px solid rgba(212,175,55,0.12)}
.product-purchase .premium-button{background:linear-gradient(90deg,#ffd54a,#f7c948);color:#000;font-weight:800;border-radius:8px;padding:12px 16px;border:none;box-shadow:0 6px 14px rgba(212,175,55,0.12)}
.product-purchase .premium-button:hover{transform:translateY(-2px)}
.product-purchase .add-cart-outline{background:transparent;border:1px solid rgba(212,175,55,0.18);color:#d4af37;padding:10px;border-radius:8px;width:100%;font-weight:700}
.product-purchase .meios{margin-top:12px;font-size:14px;color:#cfcfcf}


/* Product description styling (matches provided example) */
.product-desc {
    background: linear-gradient(145deg,#0b0b0b,#121212);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    margin-top: 18px;
}
.product-desc h2{
    color:#ffffff;
    font-size:18px;
    margin-bottom:10px;
    font-weight:800;
}
.product-desc .desc-intro{
    color:#cfcfcf;
    margin-bottom:10px;
}
.product-desc .desc-pin{
    color:#ff6b6b;
    font-weight:700;
    margin-bottom:8px;
}
.product-desc ol{color:#dcdcdc;margin-left:18px;margin-top:8px}
.product-desc ol li{padding:6px 0}
.product-desc img{
    width:100%;
    border-radius:10px;
    margin-top:12px;
    box-shadow:0 8px 30px rgba(0,0,0,0.6);
    border:1px solid rgba(255,255,255,0.03);
}


footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../photo-1633613286848-e6f43bbafb8d') center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo {
    height: clamp(80px, 12vw, 140px);
    margin: 0 auto;
}

.footer-column {
    text-align: center;
}

.footer-column:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-column:first-child p {
    color: #b0b0b0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-top: 10px;
    max-width: 300px;
}

.footer-column h2,
.footer-column h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    position: relative;
    padding-bottom: 8px;
    text-align: center;
}

.footer-column h2::after,
.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #d4af37;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #b0b0b0;
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: #d4af37;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #666;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    position: relative;
    z-index: 2;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
    .offer-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .premium-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        min-height: auto;
        padding: 0;
    }

    .header-content {
        flex-direction: row;
        gap: 8px;
        padding: 0 12px;
        align-items: center;
        justify-content: center;
    }
    
    .logo-img {
        height: clamp(28px, 6vw, 40px);
    }
    
    .footer-logo {
        height: clamp(70px, 15vw, 120px);
    }
    
    .main-nav {
        gap: 12px;
        padding: 12px 15px;
    }
    
    .main-nav a {
        font-size: 14px;
    }
    
    .nav-icon {
        font-size: 14px;
    }

    .hero {
        padding: 50px 0;
    }
    
    .form-container {
        padding: 20px 16px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .offer-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .header-top {
        padding: 10px 12px;
    }
    
    .logo-text-header img {
        max-width: 150px;
    }
    
    .header-top-row {
        gap: 8px;
    }
    
    .logo-large {
        height: 70px;
    }
    
    .hamburger-menu {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .search-input-header {
        padding: 10px 45px 10px 12px;
        font-size: 12px;
    }
    
    .logo-img {
        height: clamp(24px, 6vw, 36px);
    }
    
    .footer-logo {
        height: clamp(56px, 14vw, 96px);
    }
    
    .gold-promo-content {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        flex-wrap: nowrap;
        font-size: 11px;
    }
    
    .gold-promo-button {
        padding: 5px 10px;
        margin-top: 0;
        font-size: 10px;
        flex-shrink: 0;
    }
    
    .gold-promo-content strong {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .main-nav {
        gap: 8px;
        padding: 10px 12px;
    }
    
    .main-nav a {
        font-size: 12px;
    }
    
    .nav-icon {
        font-size: 12px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: clamp(20px, 6vw, 32px);
    }
    
    .footer-logo {
        height: clamp(48px, 18vw, 80px);
    }
    
    .offer-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .premium-card {
        max-width: 100%;
    }
    
    .premium-banner {
        height: 150px;
    }
    
    .premium-banner-image {
        height: 70%;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .header-top {
        padding: 12px 15px;
    }
    
    .header-top-row {
        gap: 10px;
    }
    
    .logo-large {
        height: 80px;
    }
    
    .hamburger-menu {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .search-header {
        width: 100%;
    }
    
    .header-content {
        padding: 0 8px;
        gap: 6px;
    }
    
    nav ul {
        gap: 3px;
    }
    
    nav a {
        font-size: 9px;
        padding: 3px 4px;
    }
    
    .gold-premium-banner {
        height: auto;
        min-height: 36px;
        padding: 6px 8px;
    }
    
    .gold-promo-content {
        font-size: 11px;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

/* Product page defaults (override inline grid styles) */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.product-main {
    min-width: 0;
    overflow: visible;
}

.product-purchase {
    width: 100%;
}

.product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Removed duplicate - using consolidated rule below */

.qty-btn {
    padding: 8px 12px;
    border-radius: 6px;
}

.premium-button {
    padding: 12px;
    border-radius: 8px;
}

/* Reviews carousel adjustments */
.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-track {
    display: flex;
    gap: 12px;
}

.review-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 14px;
    border-radius: 8px;
    min-width: 220px;
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
        padding: 0 12px;
    }

    .product-purchase {
        order: 2;
    }

    .product-main {
        order: 1;
    }

    .premium-button {
        width: 100%;
    }

    .reviews-track {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        padding: 0 10px;
        gap: 12px;
    }

    .review-card {
        min-width: 180px;
    }

    nav a {
        font-size: 14px;
    }
}

/* Reset básico para margens e paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo da seção principal */
.home-section {
    padding: 60px 0;
    background-color: #000000; /* Cor de fundo opcional */
}

/* Estilo do banner */
.hero-banner {
    border-radius: 50px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito hover (aumenta e sombra mais intensa) */
.hero-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Estilo do Card - Tema Ouro e Preto */
.offer-card.gold-theme {
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #FFD700;
}

/* Banner */
.offer-card.gold-theme .offer-banner {
    border-bottom: 2px solid #FFD700;
}

.offer-card.gold-theme .banner-overlay {
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Cabeçalho */
.offer-card.gold-theme .offer-header {
    background: linear-gradient(to right, #000000, #1a1a1a);
    border-bottom: 1px dashed #FFD700;
}

.offer-card.gold-theme .offer-header h3 {
    color: #FFD700;
}

.offer-card.gold-theme .offer-header p {
    color: #AAAAAA;
}

/* Corpo do Card */
.offer-card.gold-theme .offer-price {
    color: #FFD700;
}

.offer-card.gold-theme .offer-price span {
    color: #FFFFFF;
}

.offer-card.gold-theme .offer-features li {
    color: #DDDDDD;
    border-bottom: 1px dashed #333333;
}

/* Botão */
.offer-card.gold-theme .offer-button {
    background: linear-gradient(to right, #FFD700, #FFC000);
    color: #000000;
    font-weight: bold;
    border: none;
}

.offer-card.gold-theme .offer-button:hover {
    background: linear-gradient(to right, #FFC000, #FFA500);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Estilo Premium do Card */
/* Links que envolvem os cards de produto */
a[href*="product"] {
    text-decoration: none;
    display: block;
    cursor: pointer;
    color: inherit;
}

a[href*="product"]:hover {
    text-decoration: none;
}

a[href*="product"] .premium-card {
    cursor: pointer;
}

.premium-card {
    width: 100%;
    max-width: 350px;
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    margin: 0 auto;
    border: 1px solid #d4af37;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

/* Banner Ampliado */
.premium-banner {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-banner-image {
    width: auto;
    height: 80%;
    max-width: 90%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
}

.premium-card:hover .premium-banner-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.15);
}

/* Efeitos Premium */
.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.exclusive-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

.premium-tag {
    color: #FFD700;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.diamond-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 215, 0, 0) 70%);
    animation: shine 4s infinite alternate;
}

/* Product Info Section */
.premium-body {
    padding: 20px;
    background: #1a1a1a;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-robux {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.product-rating {
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
}

.product-reviews {
    color: #cfcfcf;
    font-size: 14px;
}

.product-price {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-top: 8px;
}

/* Seção de Preços */
.price-section {
    padding: 20px;
    background: linear-gradient(to bottom, #111, #0a0a0a);
    border-bottom: 1px solid #222;
    text-align: center;
}

.original-price {
    font-size: 16px;
    color: #777;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.discount-price {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700;
    margin: 10px 0;
    position: relative;
}

.discount-price:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, #FFD700, transparent);
}

.economy {
    font-size: 14px;
    color: #4CAF50;
    font-weight: bold;
}

/* Detalhes Premium */
.premium-details {
    padding: 15px 20px;
    background: #0a0a0a;
}

.limited-offer {
    color: #FF5555;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fire-icon {
    margin-right: 8px;
    animation: flame 1s infinite alternate;
}

.payment-option {
    color: #AAA;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Botão Ultra Premium */
.premium-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #f9d423);
    color: #000;
    text-align: center;
    padding: 12px 20px;
    margin-top: auto;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.premium-button:hover {
    background: linear-gradient(135deg, #f9d423, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.sparkle {
    margin-left: 8px;
    animation: sparkle 1.5s infinite;
    display: inline-block;
}

/* Animações Premium */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shine {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

@keyframes flame {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}
@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.premium-card {
    animation: breathe 4s ease-in-out infinite;
}

/* Product page styles */
.product-grid img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.product-purchase .qty-btn {
    background:#1a1a1a;
    color:#e0e0e0;
    border:1px solid #2b2b2b;
    padding:8px 12px;
    border-radius:6px;
    cursor:pointer;
    font-weight:700;
}
.product-purchase .qty-btn:hover { background:#2b2b2b }
.product-purchase input[type="number"]::-webkit-outer-spin-button,
.product-purchase input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-purchase .premium-button { width:100%; }

/* Reviews list compact */
.product-main ul { max-height:260px; overflow:auto; padding-right:8px; }
.product-main ul li { padding:6px 0; border-bottom:1px dashed #222; }

@media (max-width:900px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-purchase { order: -1; margin-bottom:16px; }
}

/* Product description image - consolidated and responsive */
.product-desc-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 300px;
    min-width: 200px;
    object-fit: contain;
    display: block;
    float: left;
    margin: 12px 16px 12px 0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    background: transparent;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Fallback for broken images */
.product-desc-image:not([src]),
.product-desc-image[src=""],
.product-desc-image[src*="undefined"] {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(212,175,55,0.2);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-desc-image:not([src])::after,
.product-desc-image[src=""]::after,
.product-desc-image[src*="undefined"]::after {
    content: "Imagem não disponível";
    color: #888;
    font-size: 12px;
}

/* Reviews carousel */
.reviews-section {
    margin-top: 18px;
    background: linear-gradient(145deg,#0b0b0b,#121212);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 12px;
    padding: 18px;
}
.reviews-section { width: 100%; max-width: 100%; margin: 28px auto 0; overflow: visible; }
.reviews-section h3 {
    color: #ffffff;
    margin: 0 0 14px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
}
.reviews-carousel { position: relative; display:flex; align-items:center; }
.reviews-viewport { 
    overflow-x: auto !important; 
    overflow-y: hidden !important; 
    width: 100%; 
    padding: 0;
    -webkit-overflow-scrolling: touch;
}
.reviews-viewport::-webkit-scrollbar { height: 8px; }
.reviews-viewport::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 8px; }
.reviews-viewport::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 8px; }
.reviews-track {
    display: flex !important;
    gap: 18px;
    width: auto;
    padding: 0;
    flex-wrap: nowrap !important;
    min-width: max-content;
}
.reviews-track { -webkit-overflow-scrolling: touch; }
.reviews-track .review-card { flex: 0 0 auto; flex-shrink: 0; }
.review-card { min-width: 260px; }

/* marquee keyframes used by script (translate by original set width) */
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(var(--marquee-distance, -100%)); }
}

/* Animation disabled - using manual scroll instead */
.reviews-track { animation: none !important; }

/* hide nav buttons if any remain */
.rev-btn { display: none !important; }

/* product description image: thumbnail control */
/* Consolidated above */
/* Scrollbar styling moved to .reviews-viewport */
.review-card {
    min-width: 300px;
    max-width: 300px;
    background: linear-gradient(145deg,#0f0f0f,#0b0b0b);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    color: #e0e0e0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    scroll-snap-align: start;
    overflow: hidden;
}
.review-user { font-weight:700; color:#fff; margin-bottom:8px; word-wrap: break-word; overflow-wrap: break-word; }
.review-stars { color:#ffd700; margin-bottom:12px; font-size:14px; }
.review-text { color:#cfcfcf; font-size:0.95rem; word-wrap: break-word; overflow-wrap: break-word; white-space: normal; }
.rev-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(212,175,55,0.18);
    color: #fff;
    width:40px;
    height:40px;
    border-radius:8px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}
.rev-prev { left: -16px; }
.rev-next { right: -16px; }

@media (max-width:900px) {
    .review-card { min-width:220px; }
    .product-desc-image { 
        display: block; 
        float: none; 
        margin: 12px auto; 
        max-width: 100%;
        max-height: 250px;
    }
    .rev-prev { left: 4px; }
    .rev-next { right: 4px; }
}
@media (max-width:600px) {
    .review-card { min-width: 200px; }
    .product-desc-image {
        max-width: 100%;
        max-height: 200px;
        margin: 12px auto;
    }
}
