        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f7f9fc;
        }
        .text-jac-green {
            color: #2c7744; /* Verde más oscuro y representativo */
        }
        .bg-jac-green {
            background-color: #2c7744;
        }
        .bg-jac-light-green {
            background-color: #d8f5e1;
        }
        .border-jac-green {
            border-color: #2c7744;
        }
        .card {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border-radius: 0.75rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .news-card {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border-radius: 0.75rem;
            overflow: hidden;
        }
        .carousel-container {
            position: relative;
        }
        .carousel-slide {
            display: none;
        }
        .carousel-slide.active {
            display: block;
        }
        .carousel-control {
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        .scroll-container::-webkit-scrollbar {
            width: 8px;
        }
        .scroll-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        .scroll-container::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }
        .scroll-container::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        .video-container {
            width: 100%; /* Ocupa el 100% del contenedor padre */
            max-width: 320px; /* Tamaño fijo para el video */
            margin: 0 auto; /* Centrar el contenedor del video */
        }
        .video-container video {
            width: 100%;
            height: auto;
        }
        /* Estilos del preloader */
         /* Estilos CSS para el lienzo */
        html, body {
            margin: 0;
            background: #fff;
        }

        canvas {
            display: block;
        }
        
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
            transition: opacity 0.5s ease-out;
            opacity: 1;
        }

        #preloader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .main-content {
            display: none;
            background-color: #f0fff4; /* Fondo verde claro para el contenido principal */
        }

        /* Estilos para la animación de los puntos de carga */
        @keyframes dot-flashing {
            0% {
                opacity: 0.2;
            }
            20% {
                opacity: 1;
            }
            100% {
                opacity: 0.2;
            }
        }

        .loading-dot {
            animation: dot-flashing 1.4s infinite alternate;
            font-size: 2em;
        }

        .loading-dot:nth-child(2) {
            animation-delay: 0.4s;
        }

        .loading-dot:nth-child(3) {
            animation-delay: 0.8s;
        }