/* Estilos Específicos do Modal de Versão - Premium Theme */
#modalVersao .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(106, 79, 0, 0.2);
    font-family: 'Catamaran', sans-serif;
    overflow: hidden;
}

#modalVersao .modal-header {
    background: linear-gradient(135deg, #d4a574 0%, #d39e00 100%);
    padding: 20px 25px;
    border-bottom: none;
    align-items: center;
}

#modalVersao .modal-title {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0;
}

#modalVersao .modal-title small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-left: 10px;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 10px;
}

#modalVersao button.close {
    color: #fff;
    opacity: 0.8;
    text-shadow: none;
    font-size: 1.5rem;
    padding: 0;
    margin: -5px 0 0 0;
    transition: all 0.3s ease;
}

#modalVersao button.close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

#modalVersao .modal-body {
    padding: 30px 25px;
    background: #fffaf6; /* Tom creme suave */
}

#modalVersao .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#modalVersao .feature-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border-left: 4px solid #d39e00;
    display: flex;
    align-items: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

#modalVersao .feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 15px rgba(106, 79, 0, 0.08);
}

#modalVersao .feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #fff 0%, #f4f4f4 100%);
    border: 1px solid #e0e0e0;
    color: #d39e00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

#modalVersao .feature-text {
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

#modalVersao .modal-footer {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 15px 25px;
    justify-content: space-between;
    align-items: center;
}

#modalVersao .footer-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

#modalVersao .btn-close-custom {
    background: #6a4f00;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(106, 79, 0, 0.2);
    cursor: pointer;
}

#modalVersao .btn-close-custom:hover {
    background: #856404;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(106, 79, 0, 0.3);
}

/* Badge no Footer */
.version-badge {
    background: rgba(255,255,255,0.9);
    color: #6a4f00 !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 79, 0, 0.2);
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    margin-left: 10px;
}

.version-badge i {
    font-size: 0.75rem;
    margin-right: 6px;
    color: #d39e00;
}

.version-badge:hover {
    background: #6a4f00;
    color: #fff !important;
    border-color: #6a4f00;
    transform: scale(1.05);
}

.version-badge:hover i {
    color: #fff;
}

/* Animação de Entrada */
@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUpCustom 0.5s ease-out forwards;
}

/* Ajuste delay para itens */
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
