/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Badge Superior */
.top-badge {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.star {
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.purple-text {
    color: #8B5CF6;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 5px;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #D1D5DB;
    border-left: 4px solid #8B5CF6;
    padding-left: 20px;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 22px 42px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.rocket {
    font-size: 1.4rem;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: 0.9rem;
}

.lock {
    font-size: 1rem;
}

/* Professor Section */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.professor-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.professor-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 30px;
}

/* Telegram Box Neon */
.telegram-box {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.telegram-button {
    display: block;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #8B5CF6;
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    animation: telegram-neon 2s ease-in-out infinite alternate;
    backdrop-filter: blur(10px);
}

@keyframes telegram-neon {
    0% {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.6),
            0 0 40px rgba(139, 92, 246, 0.4),
            inset 0 0 20px rgba(139, 92, 246, 0.1);
        border-color: #8B5CF6;
    }
    100% {
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 0.9),
            0 0 60px rgba(139, 92, 246, 0.6),
            inset 0 0 30px rgba(139, 92, 246, 0.2);
        border-color: #A855F7;
    }
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.8),
        0 0 80px rgba(139, 92, 246, 0.6),
        inset 0 0 30px rgba(139, 92, 246, 0.2);
}

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

.telegram-seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    flex-shrink: 0;
}

.telegram-text {
    flex: 1;
}

.telegram-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.telegram-text p {
    font-size: 1rem;
    margin: 0;
    color: #E5E7EB;
    opacity: 0.9;
}

.professor-card {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    width: 90%;
    max-width: 400px;
    display: block !important;
    position: static !important;
}

/* Esconder qualquer cartão duplicado */
.professor-card:nth-child(n+2) {
    display: none !important;
}

.professor-card + .professor-card {
    display: none !important;
}

.professor-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.professor-title {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(139, 92, 246, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature p {
    color: #9CA3AF;
    line-height: 1.6;
}

/* Exhaustion Section */
.exhaustion {
    padding: 80px 0;
    text-align: center;
}

.exhaustion h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.exhaustion-text {
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 60px;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit {
    text-align: center;
}

.benefit h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit p {
    color: #9CA3AF;
}

/* Resultados Comprovados */
.proven-results {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0;
    padding: 40px 20px;
    background: transparent;
    border-radius: 20px;
}

.proven-results h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.result-stat {
    background: #000;
    padding: 30px 20px;
    border-radius: 15px;
    border: 2px solid #00BFFF;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 10px rgba(0, 191, 255, 0.3),
        0 0 20px rgba(0, 191, 255, 0.2),
        0 0 30px rgba(0, 191, 255, 0.1);
    animation: neon-blue-pulse 2s ease-in-out infinite alternate;
}

.result-stat:hover {
    transform: translateY(-3px);
    border-color: #1E90FF;
    box-shadow: 
        0 0 15px rgba(0, 191, 255, 0.5),
        0 0 25px rgba(0, 191, 255, 0.3),
        0 0 35px rgba(0, 191, 255, 0.2);
}

@keyframes neon-blue-pulse {
    from {
        box-shadow: 
            0 0 10px rgba(0, 191, 255, 0.3),
            0 0 20px rgba(0, 191, 255, 0.2),
            0 0 30px rgba(0, 191, 255, 0.1);
    }
    to {
        box-shadow: 
            0 0 15px rgba(0, 191, 255, 0.4),
            0 0 25px rgba(0, 191, 255, 0.3),
            0 0 35px rgba(0, 191, 255, 0.2);
    }
}

.result-number {
    font-size: 3rem;
    font-weight: 900;
    color: #10B981;
    margin-bottom: 10px;
}

.result-label {
    font-size: 1rem;
    color: #E5E7EB;
    font-weight: 600;
}

/* Frase de Impacto */
.impact-quote {
    margin-top: 30px;
}

.impact-text {
    background: #000;
    border: 2px solid #00BFFF;
    border-radius: 15px;
    padding: 25px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 10px rgba(0, 191, 255, 0.3),
        0 0 20px rgba(0, 191, 255, 0.2),
        0 0 30px rgba(0, 191, 255, 0.1);
    animation: neon-blue-pulse 2s ease-in-out infinite alternate;
}

.impact-text:hover {
    border-color: #1E90FF;
    box-shadow: 
        0 0 15px rgba(0, 191, 255, 0.5),
        0 0 25px rgba(0, 191, 255, 0.3),
        0 0 35px rgba(0, 191, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .proven-results h2 {
        font-size: 2rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    .impact-text {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
}
.results {
    padding: 80px 0;
    background: transparent;
}

.results h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.results-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 40px;
}

.click-instruction {
    text-align: center;
    color: #8B5CF6;
    font-weight: 500;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pointer {
    font-size: 1.2rem;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.report-card {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid #8B5CF6;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    animation: neon-border 2s ease-in-out infinite alternate;
}

@keyframes neon-border {
    0% {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.5),
            0 0 40px rgba(139, 92, 246, 0.3),
            inset 0 0 20px rgba(139, 92, 246, 0.1);
        border-color: #8B5CF6;
    }
    100% {
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 0.8),
            0 0 60px rgba(139, 92, 246, 0.5),
            inset 0 0 30px rgba(139, 92, 246, 0.2);
        border-color: #A855F7;
    }
}

.report-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.15);
}

.report-header {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.report-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.report-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-image {
    margin-bottom: 20px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.report-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.report-description {
    color: #9CA3AF;
    margin-bottom: 20px;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.report-btn {
    background: linear-gradient(45deg, #8B5CF6, #A855F7, #8B5CF6);
    background-size: 200% 200%;
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: neon-glow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
}
}

.report-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 25px rgba(139, 92, 246, 0.5),
        0 0 30px rgba(139, 92, 246, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes neon-glow {
    0% {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 0.5),
            0 0 40px rgba(139, 92, 246, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

/* Notificações de Prova Social */
.social-proof-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
}

.social-proof-notification {
    background: linear-gradient(135deg, #1F2937, #374151);
    border: 1px solid #8B5CF6;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 8px;
    box-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(139, 92, 246, 0.3);
    color: white;
    font-size: 0.75rem;
    max-width: 250px;
    animation: slideInRight 0.5s ease-out;
    position: relative;
    backdrop-filter: blur(10px);
}

.social-proof-notification.fade-out {
    animation: slideOutRight 0.5s 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;
    }
}

.social-proof-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.social-proof-icon {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.social-proof-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: #10B981;
}

.social-proof-name {
    font-weight: 700;
    color: #8B5CF6;
}

.social-proof-time {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 3px;
}

/* Responsividade */
@media (max-width: 768px) {
    .social-proof-container {
        top: 10px;
        right: 10px;
    }
    
    .social-proof-notification {
        max-width: 200px;
        padding: 8px 12px;
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: auto;
    padding: 60px 10px 10px 10px;
}

.modal-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
    width: 100%;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    z-index: 10001;
    font-size: 14px;
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(139, 92, 246, 0.6);
}

#modalImage {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
    border: 3px solid rgba(139, 92, 246, 0.3);
    display: block;
    margin: 0 auto;
}

/* Proven Results */


.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.trophy {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.results-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.result-stat {
    text-align: center;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Sharks Section */
.sharks {
    padding: 80px 0;
    text-align: center;
}

.sharks-content {
    max-width: 800px;
    margin: 0 auto;
}

.sharks-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.sharks h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.sharks-description {
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 30px;
}

.sharks h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #8B5CF6;
}

.sharks-learn {
    font-size: 1.1rem;
    color: #D1D5DB;
    margin-bottom: 40px;
}

.sharks-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.shark-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #10B981;
    font-weight: 500;
}

.check {
    font-size: 1.2rem;
}

.sharks-cta {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.sharks-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

/* Quotes Section */
.quotes {
    padding: 60px 0;
    background: rgba(139, 92, 246, 0.05);
}

.quotes-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.quotes blockquote {
    font-style: italic;
    font-size: 1.3rem;
    text-align: center;
    color: #D1D5DB;
    position: relative;
    padding: 0 40px;
}

.quotes blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #8B5CF6;
    position: absolute;
    left: 0;
    top: -10px;
}

.quotes blockquote::after {
    content: '"';
    font-size: 4rem;
    color: #8B5CF6;
    position: absolute;
    right: 0;
    bottom: -40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-badge {
        top: 10px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-row {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quote {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 18px 20px;
        font-size: 1rem;
        text-align: center;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .telegram-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .telegram-seal {
        width: 60px;
        height: 60px;
    }
    
    .telegram-text h3 {
        font-size: 1.1rem;
    }
    
    .telegram-text p {
        font-size: 0.9rem;
    }
    
    .professor-image {
        max-width: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .exhaustion h2 {
        font-size: 2.2rem;
    }
    
    .exhaustion-text {
        font-size: 1rem;
    }
    
    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .benefit h3 {
        font-size: 1.5rem;
    }
    
    .results h2 {
        font-size: 2.2rem;
    }
    
    .results-subtitle {
        font-size: 1rem;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .report-card {
        padding: 20px;
    }
    
    .report-image {
        height: 250px;
    }
    
    .modal {
        padding: 70px 5px 5px 5px;
        overflow: auto;
    }
    
    .modal-content {
        width: 100%;
        min-height: 100%;
        align-items: flex-start;
    }
    
    #modalImage {
        width: auto;
        height: auto;
        max-width: none;
        max-height: none;
        border-radius: 10px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .results-header h2 {
        font-size: 2rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .result-number {
        font-size: 3rem;
    }
    
    .sharks h2 {
        font-size: 2.2rem;
    }
    
    .sharks-description {
        font-size: 1rem;
    }
    
    .sharks-benefits {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .sharks-cta {
        width: 100%;
        padding: 16px 24px;
    }
    
    .quotes blockquote {
        font-size: 1.1rem;
        padding: 0 30px;
    }
    
    .quotes blockquote::before,
    .quotes blockquote::after {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-row {
        grid-template-columns: 1fr;
    }
    
    .benefit h3 {
        font-size: 1.3rem;
    }
    
    .sharks-benefits {
        gap: 15px;
    }
    
    .quotes blockquote {
        font-size: 1rem;
        padding: 0 20px;
    }
}


/* Estilo para o ícone do Telegram */
.telegram-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.telegram-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
    animation: telegram-pulse 2s ease-in-out infinite alternate;
}

@keyframes telegram-pulse {
    from {
        filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8));
        transform: scale(1.05);
    }
}

.telegram-header h3 {
    margin: 0;
}


/* Botões Redes Sociais Superiores */
.social-buttons-top {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 15px;
    animation: social-float 3s ease-in-out infinite;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.youtube-btn {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    box-shadow: 
        0 4px 15px rgba(255, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 0, 0.2);
}

.youtube-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 25px rgba(255, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    box-shadow: 
        0 4px 15px rgba(228, 64, 95, 0.3),
        0 0 20px rgba(228, 64, 95, 0.2);
}

.instagram-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 25px rgba(228, 64, 95, 0.4),
        0 0 30px rgba(228, 64, 95, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(1.2);
}

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

/* Responsividade para mobile */
@media (max-width: 768px) {
    .social-buttons-top {
        top: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}


/* Modal do YouTube */
.youtube-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.youtube-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid #FFFFFF;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2);
    animation: slideIn 0.4s ease;
}

.youtube-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.youtube-modal-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.youtube-modal-header h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.youtube-modal-body {
    color: white;
}

.youtube-instruction {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    color: #E5E7EB;
}

.youtube-steps {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #FFFFFF;
}

.youtube-steps li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: #E5E7EB;
}

.youtube-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.youtube-subscribe-btn {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.youtube-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.youtube-confirm-btn {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.youtube-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.youtube-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.youtube-modal-close:hover {
    color: #FFFFFF;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .youtube-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .youtube-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .youtube-modal-icon {
        width: 50px;
        height: 50px;
    }
}


/* Botão Telegram Original */
.telegram-box {
    margin-top: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.telegram-button {
    display: block;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #8B5CF6;
    border-radius: 20px;
    padding: 20px 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.3),
        0 0 40px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    animation: neon-border 3s ease-in-out infinite alternate;
}

@keyframes neon-border {
    0% {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.3),
            0 0 40px rgba(139, 92, 246, 0.4),
            inset 0 0 20px rgba(139, 92, 246, 0.1);
        border-color: #8B5CF6;
    }
    100% {
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 0.9),
            0 0 60px rgba(139, 92, 246, 0.6),
            inset 0 0 30px rgba(139, 92, 246, 0.2);
        border-color: #A855F7;
    }
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.8),
        0 0 80px rgba(139, 92, 246, 0.6),
        inset 0 0 30px rgba(139, 92, 246, 0.2);
}

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

.telegram-seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    flex-shrink: 0;
}

.telegram-text {
    flex: 1;
}

.telegram-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.telegram-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
    animation: telegram-pulse 2s ease-in-out infinite alternate;
}

@keyframes telegram-pulse {
    from {
        filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8));
        transform: scale(1.05);
    }
}

.telegram-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.telegram-text p {
    font-size: 1rem;
    margin: 0;
    color: #E5E7EB;
    opacity: 0.9;
}


/* Texto Branco Simples para Telegram */
.telegram-neon-text {
    font-size: 1rem;
    margin: 0;
    color: #FFFFFF;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Selo no Título */
.title-seal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 15px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    display: inline-block;
}

@media (max-width: 768px) {
    .title-seal {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
}


/* Botão WhatsApp */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.3),
        0 0 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 25px rgba(37, 211, 102, 0.4),
        0 0 30px rgba(37, 211, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Seção de Investimento */
.investment-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 80px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.investment-content {
    text-align: center;
}

.investment-header {
    margin-bottom: 60px;
}

.investment-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.investment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.feature-text h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.feature-text p {
    color: #E5E7EB;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.investment-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 15px;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

@media (max-width: 768px) {
    .investment-header h2 {
        font-size: 2rem;
    }
    
    .investment-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
}


/* Seção de Depoimentos */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F0F23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

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

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #8B5CF6;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4, #8B5CF6);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #06B6D4;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #8B5CF6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    text-align: center;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #E5E7EB;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #8B5CF6;
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: #8B5CF6;
    position: absolute;
    bottom: -25px;
    right: -15px;
    font-family: serif;
}

.testimonial-author {
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-bottom: 10px;
}

.testimonial-earnings {
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse-earnings 2s ease-in-out infinite;
}

@keyframes pulse-earnings {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-photo {
        width: 70px;
        height: 70px;
    }
}



/* Seção FAQ */
.faq-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 69, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 69, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(139, 69, 255, 0.5);
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(139, 69, 255, 0.3);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 69, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 255, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(139, 69, 255, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 40px;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #8B45FF;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(10, 10, 10, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 25px 30px;
    margin: 0;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(139, 69, 255, 0.2);
}

.faq-answer strong {
    color: #8B45FF;
    font-weight: 600;
}

/* Responsividade FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
        margin-right: 12px;
        min-width: 35px;
    }
    
    .faq-answer p {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 15px;
        font-size: 0.9rem;
    }
}



/* Media query específica para telas muito pequenas */
@media (max-width: 480px) {
    .cta-button {
        padding: 16px 15px;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    .rocket {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .cta-button {
        padding: 14px 12px;
        font-size: 0.9rem;
        letter-spacing: 0px;
    }
    
    .rocket {
        font-size: 1.1rem;
    }
}


/* SEÇÕES DE ALTA CONVERSÃO COM CAIXAS NEON */
.neon-conversion-section {
    padding: 60px 0;
    background: #000;
}

.neon-box {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Cores exatas da imagem enviada */
.blue-neon {
    border: 2px solid #00D4FF;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.blue-neon:hover {
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.6),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.purple-neon {
    border: 2px solid #8B5CF6;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
}

.purple-neon:hover {
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.6),
        inset 0 0 30px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

.pink-neon {
    border: 2px solid #FF006B;
    box-shadow: 
        0 0 20px rgba(255, 0, 107, 0.3),
        inset 0 0 20px rgba(255, 0, 107, 0.1);
}

.pink-neon:hover {
    box-shadow: 
        0 0 40px rgba(255, 0, 107, 0.6),
        inset 0 0 30px rgba(255, 0, 107, 0.2);
    transform: translateY(-5px);
}

.neon-header {
    text-align: center;
    margin-bottom: 30px;
}

.neon-header h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.neon-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Comparação Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.us-column, .others-column {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.us-column {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid #00D4FF;
}

.others-column {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    border: 1px solid #ff6b6b;
}

.us-column h3 {
    color: #00D4FF;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.others-column h3 {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.comparison-grid .stat-item {
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.us-column .stat-item {
    background: rgba(0, 212, 255, 0.1);
    color: #00D4FF;
}

.others-column .stat-item {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

/* Tabela de Lucros */
.profit-table {
    margin: 30px 0;
}

.profit-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 15px 20px;
    margin: 10px 0;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.profit-row:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateX(10px);
}

.profit-row.popular {
    background: rgba(255, 0, 107, 0.15);
    border: 2px solid #FF006B;
    box-shadow: 0 0 15px rgba(255, 0, 107, 0.3);
}

.capital {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00D4FF;
}

.monthly {
    font-size: 1.1rem;
    color: #8B5CF6;
    font-weight: 600;
}

.annual {
    font-size: 1.1rem;
    color: #FF006B;
    font-weight: 600;
}

.profit-highlight {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 0, 107, 0.2), rgba(255, 0, 107, 0.1));
    border-radius: 15px;
    border: 1px solid #FF006B;
    margin-top: 20px;
    font-size: 1.2rem;
    color: #FF006B;
}

/* Timeline de Fases */
.timeline-phases {
    margin: 30px 0;
}

.phase-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.phase-item.current {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
    border: 2px solid #00D4FF;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.phase-item.future {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phase-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.phase-item.current .phase-number {
    background: linear-gradient(45deg, #00D4FF, #8B5CF6);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.phase-item.future .phase-number {
    background: linear-gradient(45deg, #8B5CF6, #FF006B);
    color: #fff;
}

.phase-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.phase-content p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.phase-status {
    background: linear-gradient(90deg, #00D4FF, #8B5CF6);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    font-size: 0.9rem;
}

.phase-benefit {
    background: rgba(255, 0, 107, 0.2);
    color: #FF006B;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    font-size: 0.9rem;
}

/* Vantagens Early Bird */
.early-bird-offer {
    margin-top: 30px;
    text-align: center;
}

.early-bird-offer h3 {
    color: #FF006B;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 107, 0.5);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.benefit {
    background: rgba(255, 0, 107, 0.1);
    border: 1px solid #FF006B;
    padding: 15px;
    border-radius: 10px;
    color: #FF006B;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(255, 0, 107, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 107, 0.3);
}

/* Objeções Grid */
.objections-grid {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.objection-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.objection-item:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.question {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00D4FF;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.answer {
    color: #fff;
    line-height: 1.6;
}

.answer strong {
    color: #8B5CF6;
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
}

.question-back {
    background: rgba(255, 0, 107, 0.1);
    border-left: 3px solid #FF006B;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-style: italic;
    color: #FF006B;
}

/* Responsividade */
@media (max-width: 768px) {
    .neon-box {
        padding: 25px;
        margin: 20px 0;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profit-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .phase-item {
        flex-direction: column;
        text-align: center;
    }
    
    .phase-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .neon-header h2 {
        font-size: 1.5rem;
    }
}

/* Animações Neon */
@keyframes neonPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.3),
            inset 0 0 20px rgba(0, 212, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(0, 212, 255, 0.6),
            inset 0 0 30px rgba(0, 212, 255, 0.2);
    }
}

.blue-neon {
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes purplePulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.3),
            inset 0 0 20px rgba(139, 92, 246, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(139, 92, 246, 0.6),
            inset 0 0 30px rgba(139, 92, 246, 0.2);
    }
}

.purple-neon {
    animation: purplePulse 3s ease-in-out infinite;
}

@keyframes pinkPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 0, 107, 0.3),
            inset 0 0 20px rgba(255, 0, 107, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(255, 0, 107, 0.6),
            inset 0 0 30px rgba(255, 0, 107, 0.2);
    }
}

.pink-neon {
    animation: pinkPulse 3s ease-in-out infinite;
}

/* Novas Seções - Diferenças vs Concorrentes */
.competitors-comparison {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.competitors-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.comparison-battle {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: start;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.our-side-battle, .others-side-battle {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.our-side-battle:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 150, 0.2);
}

.others-side-battle:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 100, 0.2);
}

.battle-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.our-header h3 {
    color: #00ff96;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 255, 150, 0.5);
}

.others-header h3 {
    color: #ff6b6b;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.crown, .warning {
    font-size: 2rem;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

.battle-stats {
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item.winner {
    background: linear-gradient(90deg, rgba(0, 255, 150, 0.1) 0%, rgba(0, 255, 150, 0.05) 100%);
    border-left: 4px solid #00ff96;
}

.stat-item.loser {
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-left: 4px solid #ff6b6b;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.stat-value {
    font-weight: bold;
    font-size: 1.1rem;
}

.winner .stat-value {
    color: #00ff96;
}

.loser .stat-value {
    color: #ff6b6b;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vs-text {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.lightning {
    font-size: 2rem;
    margin-top: 10px;
    animation: flash 1.5s infinite;
}

.battle-features h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.battle-features ul {
    list-style: none;
    padding: 0;
}

.battle-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.battle-features li:hover {
    transform: translateX(10px);
}

.restaurant-analogy {
    margin-top: 50px;
    text-align: center;
}

.restaurant-analogy h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.analogy-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.michelin-side, .fastfood-side {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.michelin-side {
    border: 2px solid #00ff96;
}

.fastfood-side {
    border: 2px solid #ff6b6b;
}

.restaurant-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Tabela de Lucros Realista */
.realistic-profits {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    padding: 80px 0;
}

.profits-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.profits-table-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

.profits-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.profits-table th {
    background: linear-gradient(90deg, #4a90e2, #7b68ee);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    border: none;
}

.profits-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.beginner-row { background: rgba(255, 193, 7, 0.1); }
.intermediate-row { background: rgba(40, 167, 69, 0.1); }
.popular-row { background: rgba(0, 123, 255, 0.1); }
.advanced-row { background: rgba(108, 117, 125, 0.1); }
.vip-row { background: rgba(220, 53, 69, 0.1); }

.roi-positive {
    color: #00ff96;
    font-weight: bold;
}

.annual-profit {
    color: #ffd700;
    font-weight: bold;
}

.profits-explanation {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.calculation-details {
    margin-top: 20px;
}

.calc-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.calc-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.calc-text strong {
    color: #00ff96;
}

.calc-text small {
    color: #b0b0b0;
    display: block;
}

.profit-comparison {
    margin-top: 40px;
    grid-column: 1 / -1;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.profit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.our-profits {
    border: 2px solid #00ff96;
}

.others-profits {
    border: 2px solid #ff6b6b;
}

.result-good {
    color: #00ff96;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.result-bad {
    color: #ff6b6b;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* Cronograma de Evolução */
.evolution-timeline {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
}

.timeline-evolution {
    position: relative;
    margin: 50px 0;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #4a90e2, #7b68ee, #ff6b6b);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-phase {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.timeline-phase:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 30px;
    position: relative;
    z-index: 3;
}

.phase-marker.current {
    background: linear-gradient(45deg, #00ff96, #4ecdc4);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 150, 0.5);
    animation: pulse 2s infinite;
}

.phase-marker.future {
    background: linear-gradient(45deg, #4a90e2, #7b68ee);
    color: white;
}

.phase-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.phase-current .phase-content {
    border: 2px solid #00ff96;
    box-shadow: 0 0 30px rgba(0, 255, 150, 0.2);
}

.phase-period {
    color: #4a90e2;
    font-weight: bold;
    margin-bottom: 10px;
}

.phase-stats {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.phase-stats .stat {
    background: rgba(74, 144, 226, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a90e2;
    font-weight: bold;
}

.phase-highlight {
    background: linear-gradient(90deg, rgba(0, 255, 150, 0.1), rgba(0, 255, 150, 0.05));
    border-left: 4px solid #00ff96;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.phase-benefits {
    margin-top: 15px;
}

.phase-benefits ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.phase-benefits li {
    padding: 5px 0;
    color: #b0b0b0;
}

.early-adopter-benefits {
    margin-top: 60px;
    text-align: center;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 150, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Respostas para Objeções */
.objections-crusher {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    padding: 80px 0;
}

.objections-container {
    margin-top: 40px;
}

.objection-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.objection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.objection-question {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.question-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #4a90e2;
}

.objection-question h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
}

.objection-answer {
    padding: 25px;
}

.answer-highlight {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.2), rgba(74, 144, 226, 0.1));
    border-left: 4px solid #4a90e2;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.answer-question {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
    color: #4a90e2;
}

.proof-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.proof-stat {
    background: rgba(0, 255, 150, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    color: #00ff96;
    font-size: 0.9rem;
}

/* Animações */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 30px rgba(0, 255, 150, 0.5); }
    50% { box-shadow: 0 0 50px rgba(0, 255, 150, 0.8); }
    100% { box-shadow: 0 0 30px rgba(0, 255, 150, 0.5); }
}

/* Responsividade */
@media (max-width: 768px) {
    .comparison-battle {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-divider {
        order: 2;
        padding: 15px;
    }
    
    .our-side-battle {
        order: 1;
    }
    
    .others-side-battle {
        order: 3;
    }
    
    .profits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .analogy-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-phase {
        flex-direction: column !important;
        text-align: center;
    }
    
    .phase-marker {
        margin: 0 0 20px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-stats {
        justify-content: center;
    }
}


/* Seção de Horários dos Sinais */
.signals-schedule {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a2e 50%, #16213e 100%);
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #00D4FF;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.4),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: neonGlow 3s ease-in-out infinite;
}

@keyframes neonGlow {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.4),
            inset 0 0 30px rgba(0, 212, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(0, 212, 255, 0.6),
            inset 0 0 40px rgba(0, 212, 255, 0.2);
    }
}

.schedule-header {
    text-align: center;
    margin-bottom: 30px;
}

.schedule-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.schedule-badge {
    background: linear-gradient(45deg, #FF006B, #8B5CF6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(255, 0, 107, 0.3);
}

.pairs-sections {
    margin: 30px 0;
}

.pairs-section {
    margin-bottom: 40px;
}

.pairs-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    border-left: 4px solid #00D4FF;
    padding-left: 15px;
}

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

.pair-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pair-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.pair-card:hover::before {
    left: 100%;
}

.pair-card:hover {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
    border-color: #8B5CF6;
}

.pair-name {
    font-weight: bold;
    color: #00D4FF;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pair-time {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.pair-days {
    color: #FF006B;
    font-size: 0.85rem;
    font-weight: 500;
}

.reports-section {
    background: rgba(255, 0, 107, 0.1);
    border: 1px solid rgba(255, 0, 107, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

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

.report-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 0, 107, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.report-card:hover {
    background: rgba(255, 0, 107, 0.1);
    transform: translateX(5px);
}

.report-icon {
    font-size: 1.5rem;
}

.report-name {
    color: #FF006B;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 3px;
}

.report-time {
    color: #fff;
    font-size: 0.85rem;
}

.schedule-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.quality-badge {
    background: linear-gradient(45deg, #00D4FF, #8B5CF6);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Responsivo para Horários */
@media (max-width: 768px) {
    .schedule-container {
        padding: 25px;
        margin: 15px;
    }
    
    .pairs-grid {
        grid-template-columns: 1fr;
    }
    
    .pair-card {
        padding: 15px;
    }
    
    .pairs-title {
        font-size: 1.1rem;
    }
    
    .schedule-badges {
        gap: 10px;
    }
    
    .schedule-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

