:root {
    --color-bg: #15151a;
    --color-surface: rgba(45, 45, 50, 0.7);
    --color-primary: #9d4edd; /* Rich Purple */
    --color-primary-glow: rgba(157, 78, 221, 0.5);
    --color-secondary: #ffdd00; /* Brighter, more prominent Yellow */
    --color-secondary-glow: rgba(255, 221, 0, 0.8);
    --color-text: #f8f9fa;
    --color-text-muted: #adb5bd;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* 3D Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: float 20s infinite ease-in-out alternate;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
    opacity: 0.4;
}
.orb-2 {
    width: 450px;
    height: 450px;
    background: var(--color-secondary);
    bottom: -50px;
    right: -50px;
    opacity: 0.55;
    animation-delay: -5s;
}
.orb-3 {
    width: 250px;
    height: 250px;
    background: #e0aaff;
    top: 40%;
    left: 40%;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--color-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Typography */
h1, h2, h3 { line-height: 1.2; }
.highlight {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 2px;
}
.logo span { color: var(--color-secondary); }
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--color-secondary);
}
.btn-reservas {
    background: linear-gradient(45deg, var(--color-primary), #7b2cbf);
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 0 15px var(--color-primary-glow);
}
.btn-reservas:hover {
    box-shadow: 0 0 25px var(--color-primary-glow);
    transform: translateY(-2px);
    color: white !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--color-secondary);
    color: #000;
    box-shadow: 0 0 20px var(--color-secondary-glow);
}
.btn-primary:hover {
    background: #ffc300;
    box-shadow: 0 0 30px var(--color-secondary-glow);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-text);
}
.btn-outline:hover {
    background: var(--color-primary);
    box-shadow: 0 0 20px var(--color-primary-glow);
    transform: translateY(-3px);
}

/* Sections */
main { padding-top: 82px; }
.perspective-container { perspective: 1000px; }

/* Hero */
.hero {
    min-height: min(580px, calc(100vh - 180px));
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 20px 48px;
    gap: 50px;
}
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 10;
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid var(--color-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e0aaff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-about-section {
    padding: 82px 20px 88px;
    text-align: center;
}
.home-about-section .about-grid {
    display: flex;
    justify-content: center;
}
.home-about-section .about-text-content {
    max-width: 920px;
    margin: 0 auto;
}
.home-about-section .about-text-content h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    margin-bottom: 24px;
}
.home-about-section .about-text-content p {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: #ccc;
    line-height: 1.6;
    margin: 0 auto 34px;
    max-width: 860px;
}

.home-story-section {
    border-top: 1px solid rgba(157, 78, 221, 0.22);
}

.home-story-section .badge {
    margin: 0 auto 18px;
}

.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0 auto 34px;
    max-width: 780px;
}

.home-proof-item {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 24px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.home-proof-item strong {
    color: var(--color-secondary);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 221, 0, 0.25);
}

.home-proof-item span {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 600;
}
.glitch-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}
.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.hero-image-container {
    flex: 1;
    position: relative;
    z-index: 10;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transform-style: preserve-3d;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    transform: translateZ(50px);
}

/* Stats */
.stats-section {
    max-width: 1000px;
    margin: 50px auto 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}
.stat-card {
    padding: 40px;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}
.stat-card h2 {
    font-size: 3.5rem;
    font-weight: 900;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary), #ff8fa3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(30px);
}
.stat-card span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    transform: translateZ(30px);
    display: inline-block;
}
.stat-card p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: 10px;
    transform: translateZ(20px);
}

/* Testimonials */
.testimonials {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.review-card {
    padding: 40px;
    text-align: left;
    transform-style: preserve-3d;
}
.stars {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transform: translateZ(20px);
}
.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    transform: translateZ(40px);
}
.review-card h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    transform: translateZ(30px);
}

/* Footer */
/* --- PREMIUM FOOTER --- */
.footer {
    background: var(--color-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 20px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}
.footer-col h3 {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-col p, .footer-col a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}
.brand-col p {
    color: #e5e7eb;
}
.brand-col strong {
    color: var(--color-primary);
}
.footer-col a:hover {
    color: var(--color-primary);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 20px; }
}

/* Game Section */
.game-section {
    max-width: 1200px;
    margin: 8px auto 74px;
    padding: 0 20px;
    text-align: center;
}
.game-header {
    margin-bottom: 30px;
}
.game-header .badge {
    margin: 0 auto 10px;
}
.game-header p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.game-container {
    padding: 8px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.game-container:hover {
    box-shadow: 0 0 60px rgba(157, 78, 221, 0.25), 0 20px 60px rgba(0, 0, 0, 0.5);
}
.game-controls-hint {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(45, 45, 50, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.game-controls-hint span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { flex-direction: column; text-align: center; padding-top: 50px; }
    .hero-content { align-items: center; }
    .glitch-title { font-size: 3rem; }
    .stats-section { grid-template-columns: 1fr; }
    .home-proof-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    /* footer resets already inside footer media query block */
    .game-container iframe { height: 400px; }
    .game-controls-hint { gap: 10px; }
    .game-controls-hint span { font-size: 0.8rem; }
}

/* --- RESPONSIVE MOBILE MENU --- */

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100vw;
        background-color: var(--color-primary);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 100px;
        padding-left: 20px;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .nav-links li {
        margin: 15px 0;
        opacity: 0;
    }
    
    .nav-links li a {
        font-size: 1.5rem;
        color: var(--color-secondary);
        text-transform: uppercase;
        font-family: 'Outfit', sans-serif;
    }
    
    .nav-links a.btn-reservas {
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-links.nav-active {
        right: 0px;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@media screen and (max-width: 768px) {
    .navbar .logo {
        position: relative;
        z-index: 1000;
    }
}

/* Game Fullscreen Mode Extensions */
.game-container.fullscreen-active {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 10000;
    margin: 0 !important;
    border-radius: 0 !important;
    max-width: none !important;
    background: #000;
}

.game-container.fullscreen-active iframe {
    height: 100% !important;
    border-radius: 0 !important;
}

.game-fullscreen-btn, .game-close-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.game-fullscreen-btn {
    bottom: 20px;
    right: 20px;
}

.game-close-btn {
    display: none;
    top: 20px;
    right: 20px;
}

/* Safe Area Support for Notched Phones */
@supports (padding: env(safe-area-inset-top)) {
    .game-container.fullscreen-active .game-close-btn {
        top: calc(10px + env(safe-area-inset-top));
        right: calc(10px + env(safe-area-inset-right));
    }
}

.game-container.fullscreen-active .game-close-btn {
    display: flex;
}

.game-container.fullscreen-active .game-fullscreen-btn {
    display: none;
}

body.no-scroll {
    overflow: hidden !important;
}

/* --- FINAL MOBILE REFINEMENTS --- */
@media screen and (max-width: 768px) {
    /* Better Navbar Background */
    .nav-links {
        background-color: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
    }

    /* Hero Refinement */
    .hero {
        padding: 60px 20px 40px;
        min-height: auto;
    }
    
    .glitch-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-image-container {
        max-width: 100%;
        margin-top: 30px;
    }

    /* Store Page Mobile */
    .store-hero-simple {
        padding: 80px 20px 20px;
    }
    
    .store-hero-simple h1 {
        font-size: 2.5rem;
    }

    .featured-image-container {
        height: 200px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no celular fica mais premium */
        gap: 15px;
        padding: 15px;
    }

    .product-item img {
        height: 250px; /* Reduz altura da imagem no celular */
        padding: 10px;
    }

    .product-item-info h3 {
        font-size: 0.9rem;
    }

    /* Blog List Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Stats Mobile */
    .stat-card h2 {
        font-size: 2.5rem;
    }

    /* Section Spacing */
    .testimonials, .stats-section, .game-section {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 coluna em telas muito pequenas */
    }
    
    .glitch-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* --- CART TOAST NOTIFICATION --- */
.cart-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 22, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(157, 78, 221, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    z-index: 10000;
    width: 90%;
    max-width: 450px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-toast.show {
    bottom: 30px;
    opacity: 1;
}

.cart-toast-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
}

.cart-toast-content p strong {
    color: var(--color-primary);
}

.cart-toast-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cart-toast-actions .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}

@media (max-width: 480px) {
    .cart-toast-actions {
        flex-direction: column;
        gap: 10px;
    }
}
