/* ========================================
   MELHORIAS BASEADAS NA ANÁLISE DO SITE VEO3
   ======================================== */

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    padding: 1rem 0;
    text-align: center;
    animation: pulse 2s infinite;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.urgency-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.urgency-content p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.vagas-visual {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vaga {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.vaga.ocupada {
    background: #ff4444;
}

.vaga.disponivel {
    background: transparent;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Quiz Styles */
.quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.quiz-overlay.active {
    display: flex;
}

.quiz-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    border: 2px solid #00ff88;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.quiz-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.quiz-close:hover {
    background: rgba(0, 255, 136, 0.1);
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    width: 25%;
    transition: width 0.3s ease;
}

.progress-text {
    color: #00ff88;
    font-weight: bold;
    font-size: 0.9rem;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-question h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
}

.quiz-option:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.option-icon {
    font-size: 2rem;
    min-width: 40px;
}

.option-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #00ff88;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 600;
}

.client-info p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.result-badge {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
}

/* Enhanced CTAs */
.cta-enhanced {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #1a1a1a;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 300px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-enhanced::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: left 0.5s ease;
}

.cta-enhanced:hover::before {
    left: 100%;
}

.cta-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
    color: #1a1a1a;
}

.cta-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: normal;
}

.cta-urgency {
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    animation: pulse 2s infinite;
}

.cta-urgency:hover {
    color: white;
    box-shadow: 0 15px 30px rgba(255, 68, 68, 0.3);
}

/* Quiz Trigger Button */
.quiz-trigger {
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin: 1rem 0;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    font-family: inherit;
}

.quiz-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 68, 68, 0.3);
}

/* Enhanced Package CTAs */
.package-cta {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #1a1a1a;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
    color: #1a1a1a;
}

/* FAQ Enhancement */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid #00ff88;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quiz-modal {
        width: 95%;
        padding: 1.5rem;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .cta-enhanced {
        min-width: 100%;
        font-size: 1.1rem;
    }
    
    .urgency-banner {
        padding: 1.5rem 1rem;
    }
    
    .vagas-visual {
        max-width: 200px;
        margin: 0 auto;
    }

    .urgency-content h3 {
        font-size: 1rem;
    }

    .urgency-content p {
        font-size: 0.9rem;
    }

    .quiz-question h3 {
        font-size: 1.3rem;
    }

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

    .option-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .vaga {
        width: 12px;
        height: 12px;
    }

    .quiz-modal {
        padding: 1rem;
    }

    .quiz-question h3 {
        font-size: 1.2rem;
    }

    .cta-enhanced {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
}

/* Accessibility Improvements */
.quiz-option:focus,
.cta-enhanced:focus,
.quiz-trigger:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success States */
.success {
    background: linear-gradient(45deg, #28a745, #20c997);
}

/* Animation for vagas counter */
@keyframes vagaOcupada {
    0% { 
        background: transparent; 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.2);
    }
    100% { 
        background: #ff4444; 
        transform: scale(1);
    }
}

