/* Estilos Globais */
:root {
    --bg-dark: #0a0a14;
    --bg-darker: #050510;
    --primary: #3a1cc1;
    --primary-light: #4f30e2;
    --secondary: #7928ca;
    --accent: #00d4ff;
    --accent-gold: #ffb700;
    --text-light: #f0f0f0;
    --text-dark: #a0a0a0;
    --card-bg: rgba(20, 20, 40, 0.7);
    --card-border: rgba(80, 80, 255, 0.3);
    --shadow-neon: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-gold: 0 0 10px rgba(255, 183, 0, 0.5), 0 0 20px rgba(255, 183, 0, 0.3);
    --nav-bg: rgba(5, 5, 16, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
}

.highlight {
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
}

/* Animações Globais */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent), 0 0 15px var(--accent), 0 0 20px var(--primary), 0 0 35px var(--primary), 0 0 40px var(--primary);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Seção Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 70px 0 0 0; /* Ajustado para dar espaço à navegação */
    background: var(--bg-darker);
}

/* Estilo para o banner de teste gratuito */
.trial-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    margin: 25px auto;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
    animation: pulse-glow 2s infinite;
    max-width: 90%;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.trial-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
    z-index: -1;
}

.trial-banner i {
    margin-right: 15px;
    font-size: 1.4em;
    color: var(--accent-gold);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 212, 255, 1);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Estilos da Navegação */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
}

.login-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
}

.login-button i {
    font-size: 0.9rem;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 28, 193, 0.1) 0%, rgba(121, 40, 202, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.glitch-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100%" height="0.5" fill="rgba(0,212,255,0.2)" y="20"/><rect width="100%" height="0.5" fill="rgba(0,212,255,0.2)" y="40"/><rect width="100%" height="0.5" fill="rgba(0,212,255,0.2)" y="60"/><rect width="100%" height="0.5" fill="rgba(0,212,255,0.2)" y="80"/></svg>');
    opacity: 0.3;
    animation: glitch 2s infinite;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.neon-text {
    color: var(--text-light);
    text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent), 0 0 15px var(--accent), 0 0 20px var(--primary), 0 0 35px var(--primary), 0 0 40px var(--primary);
    animation: neonFlicker 2s infinite alternate;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.cta-button:hover::before {
    left: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Seção de Funcionalidades */
.features {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-image {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.feature-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

/* Seção de Planos e Preços */
.pricing {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
    border: 1px solid rgba(0, 212, 255, 0.5);
    box-shadow: var(--shadow-neon);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--bg-darker);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0 10px 0 10px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.trial-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    padding: 10px 15px;
    margin: 0 -10px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-info i {
    margin-right: 8px;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
}

.price span {
    font-size: 1rem;
    color: var(--text-dark);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--accent);
    margin-right: 10px;
}

.pricing-button {
    width: 100%;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 12px 0;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: 80%;
}

.pricing-button:hover {
    background: var(--accent);
    color: var(--bg-darker);
    box-shadow: var(--shadow-neon);
}

.popular .pricing-button {
    background: var(--accent);
    color: var(--bg-darker);
}

.popular .pricing-button:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: var(--shadow-neon);
}

/* Seção de Depoimentos */
.testimonials {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 212, 255, 0.1);
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.user-details {
    flex: 1;
}

.user-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.user-level {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.level {
    font-size: 0.9rem;
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    flex: 1;
    min-width: 100px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
    border-radius: 3px;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção de Ação Final e Contato */
.cta-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--bg-darker);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-links a:hover {
    color: var(--accent);
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 20px;
    text-align: center;
    color: var(--text-dark);
    border-top: 1px solid var(--card-border);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
        order: -1;
        margin-bottom: 20px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .feature-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}