/**
 * Multistep Form - Confirmation Step (Step 6) Styles
 * Estilos para a tela de confirmação de sucesso do cadastro
 */

/* Step 6 - Confirmation Container */
.multistep-step[data-step="6"] {
    animation: fadeInUp 0.5s ease-out;
}

/* Success Icon Animation */
.multistep-step[data-step="6"] .rounded-full.bg-green-100 {
    animation: scaleIn 0.6s ease-out;
}

/* Buttons Hover Effects */
#btn-new-registration,
.multistep-step[data-step="6"] a.btn {
    transition: all 0.3s ease;
}

#btn-new-registration:hover,
.multistep-step[data-step="6"] a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

#btn-new-registration:active,
.multistep-step[data-step="6"] a.btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Success Checkmark Animation */
.multistep-step[data-step="6"] svg path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.8s ease-out 0.3s forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .multistep-step[data-step="6"] h2 {
        font-size: 1.5rem;
    }
    
    .multistep-step[data-step="6"] p {
        font-size: 0.95rem;
    }
    
    .multistep-step[data-step="6"] .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .multistep-step[data-step="6"] .rounded-full.bg-green-100 {
        padding: 1.5rem;
    }
    
    .multistep-step[data-step="6"] .rounded-full.bg-green-100 svg {
        width: 4rem;
        height: 4rem;
    }
}

/* Hide progress bar on step 6 (optional) */
.multistep-step[data-step="6"] ~ .multistep-progress-container {
    opacity: 1;
}

/* Ensure step 6 doesn't show in step indicators */
.step-indicator[data-step="6"] {
    display: none !important;
}
