:root {
    --bg-color: #050505;
    --primary-color: #ff007f; /* Rosa Vibrante */
    --primary-glow: rgba(255, 0, 127, 0.4);
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --text-muted: #9ca3af;
    --card-bg: rgba(255, 255, 255, 0.03);
    --nav-bg: rgba(10, 10, 10, 0.7);
    --nav-border: rgba(255, 0, 127, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--nav-border);
    border-radius: 50px;
    padding: 12px 30px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.floating-nav:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 0, 127, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px; /* Adicionado um pequeno padding interno */
}

.nav-logo {
    height: 45px; /* Aumentado de 32px */
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.btn-login {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pink-blur-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5px; /* Reduzido drasticamente para aproximar da logo */
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.hero-logo-container {
    margin-bottom: 0px; /* Removido o espaço abaixo da logo */
    display: flex;
    justify-content: center;
}

.hero-logo-img {
    max-width: 250px; /* Reduzido ainda mais de 280px */
    width: 65%; /* Reduzido de 70% */
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px); /* Reduzido o balanço de 25px para 12px */
    }
}

.hero-title {
    display: none; /* Removido em favor da logoletra.png */
}

.glow-text {
    color: var(--primary-color);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-muted);
    margin-top: -10px; /* Margem negativa para "subir" o texto para perto da logo */
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

/* Background Stars */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 0 0 5px var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* Jogos Testados */
.games-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.game-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 0, 127, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.1);
}

.game-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-name {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
}

.game-fps {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 0, 127, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Feedbacks */
.feedbacks-section {
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(255, 0, 127, 0.03) 0%, transparent 70%);
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.feedback-card {
    background: #0a0a0a;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
}

.feedback-card:hover {
    border-color: rgba(255, 0, 127, 0.3);
    transform: translateY(-5px);
}

.feedback-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.feedback-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

.feedback-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stars {
    color: #ffb400;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.feedback-content {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
}

.loading-simple {
    grid-column: 1 / -1;
    padding: 40px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Plans Section */
.plans-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

/* Professional Plans Layout */
/* Cyan Theme for specific plans (2 and 5) */
.plan-card.cyan-theme {
    border-color: rgba(0, 255, 255, 0.3);
}

.plan-card.cyan-theme:hover {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.plan-card.cyan-theme .plan-title {
    color: #00ffff;
}

.plan-card.cyan-theme .plan-specs li i {
    color: #00ffff;
}

.plan-card.cyan-theme:hover .btn-plan {
    border-color: #00ffff;
}

.plan-card.cyan-theme .btn-plan:hover {
    background: white !important;
    color: black !important;
}

.plan-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.2);
}

.plan-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.plan-price-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 5px;
}

.plan-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-top: 15px; /* Alinha o R$ um pouco mais pra baixo do topo do número grande */
}

.plan-price-value {
    font-size: 5rem; /* Aumentado de 4rem */
    font-weight: 800;
    color: white;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.plan-price-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

.plan-price-decimal {
    font-size: 1.4rem; /* Um pouco menor */
    font-weight: 700;
    color: white;
    line-height: 1;
}

.plan-price-period {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.plan-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 40px;
    min-height: auto;
}

.plan-specs-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    width: 100%;
    margin-bottom: 60px; /* Aumentado de 40px para distanciar do botão */
}

.plan-specs {
    margin-bottom: 0;
    text-align: left;
}

.plan-specs li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
}

.plan-specs li:last-child {
    margin-bottom: 0;
}

.plan-specs li i {
    color: var(--primary-color);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.plan-button-wrapper {
    width: 100%;
    margin-top: auto; /* Garante que o botão fique no fundo se os cards tiverem alturas diferentes */
    padding-top: 20px; /* Espaçamento extra */
}

.btn-plan {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    background: #1a1a1a;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-size: 1rem;
}

.plan-card:hover .btn-plan {
    background: #1a1a1a;
    border-color: var(--primary-color);
    color: white;
}

.btn-plan:hover {
    background: white !important;
    color: black !important;
}

/* Sobre Nós Section */
.about-section {
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(255, 0, 127, 0.05) 0%, transparent 70%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 127, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

.about-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

.about-content {
    text-align: left;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Footer */
.footer {
    background: #080808;
    padding: 80px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
}

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

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-email {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--nav-border);
    border-radius: 20px;
    padding: 20px 30px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 0.5s ease-out;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-content i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .about-content { text-align: center; }
    .about-content h2 { text-align: center !important; }
    .about-stats { justify-content: center; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .cookie-content { flex-direction: column; text-align: center; }
}

/* Custom Notifications (Toast) */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-left: 4px solid var(--primary-color);
    color: white;
    padding: 16px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.3s ease-out forwards;
    transition: var(--transition);
}

.toast.error {
    border-left-color: #ff4444;
    border-color: rgba(255, 68, 68, 0.3);
}

.toast.success {
    border-left-color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}

.toast i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-content {
    font-size: 0.95rem;
    font-weight: 600;
}

.toast.fade-out {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* User Profile Menu */
.user-profile-menu {
    position: relative;
    display: inline-block;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.profile-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

#user-name-display {
    font-weight: 600;
    font-size: 0.9rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--nav-border);
    min-width: 180px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow: hidden;
    padding: 8px;
}

.user-profile-menu.active .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: var(--text-color);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: rgba(255, 0, 127, 0.1);
    color: var(--primary-color);
}

.dropdown-content hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 8px 0;
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-nav {
        padding: 8px 15px;
        width: 95%;
        top: 10px;
    }

    .nav-content {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .nav-logo {
        height: 28px;
    }

    #user-name-display {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
    
    .hero-features {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .admin-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        flex-grow: 1;
    }

    .admin-form {
        grid-template-columns: 1fr;
    }

    .admin-table-container {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

    .admin-table th, .admin-table td {
        padding: 10px;
        font-size: 0.8rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .product-card-dash {
        padding: 15px;
    }

    .vm-actions {
        grid-template-columns: 1fr;
    }
}
}
