/**
 * ValidaTel - Estilos Complementares ao Tailwind CSS
 */

/* ===== Animações ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.4s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 55, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(212, 160, 55, 0.15); }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== Scrollbar Custom ===== */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* ===== Drag & Drop Upload ===== */
.upload-area.drag-over {
    border-color: #2c3e6b !important;
    background-color: rgba(44, 62, 107, 0.06) !important;
}

/* ===== WhatsApp link ===== */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #25D366;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.whatsapp-link:hover {
    color: #128C7E;
}

/* ===== Gradient text ===== */
.text-gradient {
    background: linear-gradient(135deg, #2c3e6b, #3d5291);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Glass effect ===== */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
