:root {
    --primary: #00b06f;
    --primary-hover: #009960;
    --bg-dark: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-secondary: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.main-wrapper {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at 70% 30%, rgba(0, 176, 111, 0.15) 0%, rgba(10, 10, 12, 1) 70%);
    overflow-x: hidden;
    max-width: 100vw;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: var(--primary);
    text-transform: lowercase;
    text-decoration: none;
}

.logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-main);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
}

.btn-login {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px -10px rgba(0, 176, 111, 0.5);
}

.btn-login:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
}

.btn-lang {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.btn-lang:hover {
    color: var(--text-main);
    border-color: var(--text-main);
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.lang-btn:hover {
    color: var(--text-main);
    border-color: var(--text-main);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #111114;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 6px;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s;
    z-index: 9999;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: 0.2s;
}

.lang-menu a:hover,
.lang-menu a.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    padding: 0 10%;
    height: 100vh;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1,
.hero-content h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff 60%, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-premium {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: white;
    background: var(--card-bg);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 176, 111, 0.4);
}

.social-mini {
    display: flex;
    gap: 20px;
}

.social-mini a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-mini a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 120%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(0, 176, 111, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* --- TIENDA PAGE --- */
.page-header {
    padding: 140px 10% 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #fff 60%, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 10% 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.shop-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.shop-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px -20px rgba(0, 176, 111, 0.3);
}

.shop-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(0, 176, 111, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.shop-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.shop-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.shop-card .btn-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px -10px rgba(0, 176, 111, 0.5);
}

.shop-card .btn-card:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 30px rgba(0, 176, 111, 0.4);
}

/* --- ACTIVAR WINDOWS --- */
.activate-windows {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
    text-align: right;
    pointer-events: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0c;
}

::-webkit-scrollbar-thumb {
    background: #1e1e22;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-content h1, .hero-content h2 { font-size: 3rem; }
    .hero-image { display: none; }
    .hero { text-align: center; justify-content: center; padding: 0 5%; }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
    .social-mini { justify-content: center; }
    .nav-links { display: none; }
    .shop-grid { padding: 40px 5% 80px; }
    .page-header h1 { font-size: 2.2rem; }
    .seo-content h1 { font-size: 2.5rem; }
    .seo-section .container { grid-template-columns: 1fr; }
    .seo-widget { order: -1; }
}

@media (max-width: 640px) {
    .hero-content h1, .hero-content h2 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .seo-content h1 { font-size: 1.8rem; }
    .seo-subtitle { font-size: 1.1rem; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header p { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-premium { width: 100%; justify-content: center; }
    .shop-card h2 { font-size: 1.4rem; }
    .faq-section h2 { font-size: 1.4rem; }
    nav { padding: 15px 4%; }
    .logo { font-size: 1.2rem; }
    .btn-login { padding: 8px 16px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
        padding: 20px 4% 60px;
    }
    .seo-section { padding: 60px 4%; }
    .faq-section { padding: 60px 4%; }
    .site-footer { padding: 40px 4% 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col:first-child { grid-column: auto; }
}

/* --- CART MODAL --- */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cart-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    background: #111114;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 480px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: 0.3s;
}

.cart-modal-overlay.open .cart-modal {
    transform: translateY(0);
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
}

.cart-close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.cart-close-btn:hover {
    color: var(--text-main);
}

.cart-empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 30px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-type {
    font-weight: 700;
    color: var(--text-main);
}

.cart-item-amount {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-price {
    color: #00C853;
    font-weight: 700;
}

.cart-item-num {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    padding: 4px;
}

.cart-item-remove:hover {
    color: #f87171;
}

.cart-summary {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-total span:last-child {
    color: #00C853;
}

.btn-confirm-order {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: #00C853;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-confirm-order:hover {
    background: #00a845;
}

.btn-confirm-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-modal {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #00C853;
    margin-bottom: 16px;
}

.success-modal h2 {
    margin-bottom: 12px;
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.success-modal p strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.success-note {
    font-size: 0.85rem !important;
    margin-bottom: 24px !important;
}

/* --- SEO SECTION --- */
.seo-section {
    padding: 80px 10%;
    background: #050507;
    border-top: 1px solid var(--glass-border);
}

.seo-section .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.1;
}

.seo-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
}

.seo-body {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-item p {
    color: var(--text-main);
    font-size: 1rem;
    margin: 0;
}

/* WIDGET */
.widget-card {
    background: #111114;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.widget-header {
    margin-bottom: 20px;
}

.widget-icon {
    font-size: 3rem;
    color: #facc15;
}

.slider-group {
    margin-bottom: 24px;
}

#robux-slider {
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: #3b82f6;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#robux-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 8px;
}

.widget-details {
    background: #0a0a0c;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-main);
    font-weight: 600;
}

.price-highlight {
    color: #00C853;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: #00C853;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: #00a845;
}

.widget-note {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

.widget-note i {
    color: #00C853;
}

@media (max-width: 1024px) {
    .seo-section .container {
        grid-template-columns: 1fr;
    }
    .seo-widget {
        order: -1;
    }
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 10%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 8px;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #111114;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 176, 111, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.8rem;
    transition: 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 24px 20px;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 5%;
    }
    .faq-section h2 {
        font-size: 1.6rem;
    }
}

/* --- FOOTER --- */
.site-footer {
    background: #08080a;
    border-top: 1px solid var(--glass-border);
    padding: 100px 10% 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #52525b;
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 5% 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col:first-child {
        grid-column: auto;
    }
}
