/*
Theme Name: UGlobal
Theme URI: https://uglobal.com
Description: Tema moderno para UGlobal - Soluciones Educativas
Version: 1.0
Author: UGlobal
*/

/* Tailwind will be loaded via CDN in index.php */
/* Custom styles that extend Tailwind */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #cd001c;
    border-radius: 4px;
}

/* Slider animations */
.slide-enter {
    opacity: 0;
    transform: scale(1.1);
}

.slide-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: all 1s ease;
}

/* Pulse animation for CTA buttons */
@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(205, 0, 28, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(205, 0, 28, 0);
    }
}

.animate-pulse-red {
    animation: pulse-red 2s infinite;
}
