/* Sistema de Seções Progressivas */
.progressive-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Barra de Progresso */
.progress-bar-container {
    margin-bottom: 40px;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50 0%, #2196F3 100%);
    transition: width 0.5s ease;
    border-radius: 10px;
}

/* Steps do Progresso */
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.progress-step {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-number {
    background-color: #2196F3;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.2);
}

.progress-step.completed .step-number {
    background-color: #4CAF50;
    color: white;
}

.progress-step.completed::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Conteúdo da Seção */
.section-content {
    min-height: 400px;
    opacity: 1;
    transition: opacity 0.3s ease;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.hero-title {
    color: #1a1a1a;
    font-weight: 800;
}

.text-danger {
    color: #ff4444;
}

.section-title .highlight {
    color: #2196F3;
}

/* Navegação */
.section-navigation {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-continue {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-continue svg {
    transition: transform 0.3s ease;
}

.btn-continue:hover svg {
    transform: translateX(5px);
}

/* Estado desabilitado do botão */
.btn-continue.disabled {
    background: #9e9e9e;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-continue.disabled:hover {
    transform: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-continue.disabled svg {
    opacity: 0.5;
}

.btn-continue.disabled:hover svg {
    transform: none;
}

/* Estilos específicos para cada seção */
.video-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

.testimonial-carousel {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-content > * {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsividade */
@media (max-width: 768px) {
    .progressive-container {
        padding: 15px;
    }
    
    .progress-steps {
        padding: 0 5px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .progress-step.active .step-number {
        box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .section-content {
        min-height: 300px;
        margin-bottom: 30px;
    }
    
    .btn-continue {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .special-price {
        font-size: 2.5rem;
    }
    
    .scarcity-box {
        padding: 20px;
    }
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Estilos para a última seção (CTA) */
.scarcity-box {
    background: #1a1a1a;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #ff4444;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.scarcity-box p {
    color: white;
}

.scarcity-text {
    color: white !important;
}

.urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #ff4444;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.offer-status {
    margin: 20px 0;
}

.price-showcase {
    margin: 30px 0;
}

.original-price {
    font-size: 1.2rem;
    color: #666;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.special-price {
    font-size: 3rem;
    font-weight: bold;
    color: #4CAF50;
    margin: 10px 0;
}

.discount-badge {
    display: inline-block;
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    margin-left: 10px;
}

/* Seção de Pergunta */
.question-container {
    text-align: center;
    padding: 20px;
}

.question-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.question-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.question-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 5px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.question-option:hover {
    border-color: #2196F3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
}

.question-option.selected {
    background: #2196F3;
    color: white;
    border-color: #2196F3;
}

.question-option.selected .option-text {
    color: white;
}

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

.option-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.question-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 30px;
    font-style: italic;
}

/* Container do input "Outro" */
.other-input-container {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.other-reason-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.other-reason-input:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.other-reason-input.error {
    border-color: #ff4444;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.btn-send-other {
    background: #2196F3;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-send-other:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}