        /* Estilo para la fuente Inter */
        body {
            font-family: 'Inter', sans-serif;
        }
        /* Clase para un gradiente sutil en el texto */
        .text-gradient {
            background: linear-gradient(to right, #00CFFF, #00FFD1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* Clase para el fondo del hero con un toque visual */
        .hero-bg {
            background-color: #111827; /* gray-900 */
        }
        .card-hover-effect {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .card-hover-effect:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 207, 255, 0.1), 0 10px 10px -5px rgba(0, 207, 255, 0.08);
        }
        /* Estilos para el modal para evitar FOUC */
        #contact-modal.hidden {
            display: none;
        }
        /* Ocultar la barra de scroll en el carrusel */
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }
        .scrollbar-hide {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }