/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Efeito de partículas de fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(0, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

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

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Telas */
.screen {
    min-height: 100vh;
    display: none;
    position: relative;
    padding: 20px 0;
}

.screen.active {
    display: block;
}

/* Header melhorado */
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 60px rgba(0, 255, 255, 0.6);
}

.logo i {
    margin-right: 12px;
    font-size: 32px;
    animation: eyeBlink 3s ease-in-out infinite;
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.urgency-timer {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #ff4757, #ff6b7a, #ff4757);
    background-size: 200% 200%;
    animation: gradientPulse 3s ease infinite, timerPulse 2s infinite;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 6px 25px rgba(255, 71, 87, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.6);
    position: relative;
    overflow: hidden;
}

.urgency-timer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

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

@keyframes timerPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 25px rgba(255, 71, 87, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 8px 35px rgba(255, 71, 87, 0.6); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.urgency-timer i {
    margin-right: 10px;
    animation: clockTick 1s infinite;
    font-size: 20px;
}

@keyframes clockTick {
    0%, 50% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.urgency-timer span {
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Content Box */
.content-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ff4757, #ff6b7a, #ff4757);
    background-size: 200% 200%;
    animation: gradientPulse 3s ease infinite;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4);
    border: 1px solid rgba(255, 71, 87, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

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

.highlight {
    color: #ff4757;
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.8), 0 0 40px rgba(255, 71, 87, 0.4);
    -webkit-text-fill-color: #ff4757;
    animation: dangerGlow 2s ease-in-out infinite;
}

@keyframes dangerGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 71, 87, 0.8), 0 0 40px rgba(255, 71, 87, 0.4); }
    50% { text-shadow: 0 0 30px rgba(255, 71, 87, 1), 0 0 60px rgba(255, 71, 87, 0.6); }
}

.subtitle {
    font-size: clamp(18px, 3.5vw, 24px);
    font-weight: 500;
    margin-bottom: 45px;
    color: #b8c6db;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

/* Progress Bar melhorado */
.progress-bar {
    margin: 30px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.progress-fill {
    height: 8px;
    background: linear-gradient(90deg, #00ffff, #0099cc, #00ffff);
    background-size: 200% 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    animation: progressShine 2s linear infinite;
    position: relative;
    width: 0%;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: progressGloss 1.5s ease-in-out infinite;
}

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

@keyframes progressGloss {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    margin-top: 12px;
    font-size: 16px;
    color: #b8c6db;
    font-weight: 600;
}

/* Question Container melhorado */
.question-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.step {
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.step.active {
    background: linear-gradient(45deg, #00ffff, #0099cc);
    color: #000;
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6), 0 0 50px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

.step.active::before {
    transform: translateX(100%);
}

.question-header h2 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.question-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.question-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    animation: cardShimmer 3s linear infinite;
}

@keyframes cardShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.question-box i {
    font-size: 60px;
    color: #00ffff;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.question-box p {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.answer-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

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

.answer-btn:hover {
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.answer-btn:hover::before {
    left: 100%;
}

.answer-btn i {
    margin-right: 18px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.answer-btn:hover i {
    transform: scale(1.2);
}

.risk-indicator {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Risk Meter melhorado */
.risk-meter-container {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.risk-meter-container span {
    font-size: 18px;
    color: #00ffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.risk-bar {
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 15px 0;
}

#risk-meter {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #ffff00, #ff9800, #ff4757);
    border-radius: 20px;
    transition: width 0.8s ease;
    width: 0%;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
}

#risk-meter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: meterGloss 2s ease-in-out infinite;
}

@keyframes meterGloss {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

#risk-points {
    font-size: 20px;
    font-weight: 700;
    color: #ff4757;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

/* Botões CTA melhorados */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00ffff, #0099cc, #00ffff);
    background-size: 200% 200%;
    color: #000;
    padding: 25px 50px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    margin: 40px 0;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(0, 255, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(0, 255, 255, 0.6);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.3);
    background-position: 100% 50%;
}

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

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

.cta-button i {
    margin-left: 12px;
    font-size: 22px;
}

.cta-button.pulse {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 12px 35px rgba(0, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 15px 45px rgba(0, 255, 255, 0.6);
    }
}

/* Social Proof melhorado */
.social-proof {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.stars i {
    color: #ffd700;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.social-proof p {
    color: #b8c6db;
    font-size: 15px;
    font-weight: 500;
}

.social-proof strong {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Tela de Resultado */
.result-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.result-badge i {
    margin-right: 12px;
    font-size: 20px;
}

.result-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.result-container p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b8c6db;
}

.vision-bar-container {
    margin: 30px 0;
}

.vision-bar-container p {
    margin-bottom: 15px;
    color: #00ffff;
    font-weight: 600;
}

.vision-bar {
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.bar-value {
    height: 100%;
    background: linear-gradient(90deg, #ff4757, #ff9800, #ffff00, #00ff00);
    border-radius: 20px;
    transition: width 2s ease;
    width: 0%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 16px;
}

.result-message {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    margin: 30px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

/* Tela de Tratamento */
.treatment-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.treatment-container i {
    font-size: 60px;
    color: #00ffff;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.treatment-container h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
}

.treatment-container p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b8c6db;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.features div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.features i {
    color: #00ff00;
    font-size: 20px;
}

.features span {
    color: #ffffff;
    font-weight: 500;
}

/* Tela Final */
.final-cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.badge-final {
    display: inline-block;
    background: linear-gradient(45deg, #00ff00, #00cc88);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    animation: pulse 2s infinite;
}

.final-cta-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b8c6db;
    line-height: 1.6;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    margin-right: 12px;
    font-size: 24px;
}

.disclaimer {
    font-size: 14px;
    color: #b8c6db;
    margin-top: 20px;
    font-style: italic;
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .urgency-timer {
        padding: 10px 20px;
    }
    
    .urgency-timer span {
        font-size: 18px;
    }
    
    .content-box h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .question-box {
        padding: 30px 20px;
    }
    
    .question-box p {
        font-size: 20px;
    }
    
    .question-box i {
        font-size: 50px;
    }
    
    .answer-btn {
        padding: 20px;
        font-size: 16px;
    }
    
    .answer-btn:hover {
        transform: translateX(5px) scale(1.01);
    }
    
    .cta-button {
        padding: 20px 35px;
        font-size: 18px;
    }
    
    .step {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .step-indicator {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .urgency-timer {
        padding: 8px 15px;
        flex-direction: column;
        gap: 5px;
    }
    
    .urgency-timer span {
        font-size: 16px;
    }
    
    .question-box {
        padding: 25px 15px;
    }
    
    .question-box p {
        font-size: 18px;
    }
    
    .answer-btn {
        padding: 18px;
        font-size: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .answer-btn i {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .step {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .step-indicator {
        gap: 10px;
    }
}

/* Animações adicionais */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOutLeft {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-50px); }
}

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

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

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Floating Points */
@keyframes pointsFloat {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -80px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -120px) scale(0.8);
    }
}

