
        body {
            font-family: 'Inter', sans-serif;
            background-color: white;
            color: #333;
            overflow-x: hidden; /* Prevent horizontal scrolling */
            padding-top: 6rem; /* Add padding to prevent content from being hidden behind fixed navbar */
        }
        .section {
            padding: 4rem 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .section.fade-in {
            opacity: 1;
            transform: translateY(0);
        }
        .header-bg {
            background: linear-gradient(135deg, #60A5FA, #3B82F6);
        }
        .card {
            background-color: #fff;
            border-radius: 1rem;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
        }
        .animate-bounce-custom {
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 100% {
                transform: translateY(-5%);
                animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            }
            50% {
                transform: translateY(0);
                animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            }
        }
        /* Custom styles for animations */
        .reveal-text {
            overflow: hidden;
            white-space: nowrap;
            animation: typing 3s steps(40, end) forwards;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        .slide-in-left {
            transform: translateX(-100%);
            opacity: 0;
            animation: slideInLeft 1s forwards;
        }

        @keyframes slideInLeft {
            to { transform: translateX(0); opacity: 1; }
        }

        .slide-in-right {
            transform: translateX(100%);
            opacity: 0;
            animation: slideInRight 1s forwards;
        }

        @keyframes slideInRight {
            to { transform: translateX(0); opacity: 1; }
        }
        .beat {
            width: 300px; /* Ajusta el tamaño de tu imagen si es necesario */
            height: auto;
            animation: beat 2s infinite alternate; /* Aplica la animación */
            transform-origin: center; /* Asegura que la escala se origine desde el centro */
        }
        @keyframes beat {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
    