  body {
            font-family: 'Inter', sans-serif;
        }
        .glassmorphism {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(209, 213, 219, 0.3);
        }
        .dark .glassmorphism {
            background: #2531412e;
            backdrop-filter: blur(2px) saturate(180%);
            -webkit-backdrop-filter: blur(2px) saturate(180%);
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid rgba(55, 65, 81, 0.3);
        }

        :root {
            --jusneural-green-rgb: 34, 197, 94;
            --card-bg-light-rgb: 249, 250, 251; 
            --card-bg-dark-rgb: 20, 28, 46;
        }

        .innovative-card {
            background-color: rgb(var(--card-bg-light-rgb));
            padding: 2rem;
            border-radius: 0.75rem;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.35s ease-in-out;
            border: 2px solid transparent;
           
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0,0,0,0.06); 
        }

        .dark .innovative-card {
            background-color: rgb(var(--card-bg-dark-rgb)); 
            
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0,0,0,0.2); 
        }

        .innovative-card:hover {
            transform: translateY(-10px) scale(1.03);
            border-color: rgba(var(--jusneural-green-rgb), 0.4);
            box-shadow: 0 20px 40px -10px rgba(var(--jusneural-green-rgb), 0.25),
                        0 0 0 4px rgba(var(--jusneural-green-rgb), 0.1);
        }

        .dark .innovative-card:hover {
            border-color: rgba(var(--jusneural-green-rgb), 0.6);
            box-shadow: 0 20px 40px -10px rgba(var(--jusneural-green-rgb), 0.35),
                        0 0 0 4px rgba(var(--jusneural-green-rgb), 0.15);
        }

        .innovative-card > * {
            position: relative;
            z-index: 1;
        }

        .logo-slider {
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        .logo-track {
            animation: scrollLogos 30s linear infinite;
        }
        .logo-slide img {
            filter: grayscale(100%);
            transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
            background-color: transparent;
        }
        .logo-slide img:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }
        .logo-slider:hover .logo-track {
            animation-play-state: paused;
        }

        @keyframes scrollLogos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        html:not(.dark) .logo-slide img[src="disco2jusneural/img/logo-caasc.svg"] {
            filter: grayscale(100%) invert(1);
        }
        html:not(.dark) .logo-slide img[src="disco2jusneural/img/logo-caasc.svg"]:hover {
            filter: grayscale(0%) invert(1);
        }

        .image-effect {
            transition: transform 0.2s ease-out;
        }

        .new-footer-style {
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            background: rgba(255, 255, 255, 0.75) radial-gradient(circle, rgba(var(--jusneural-green-rgb), 0.25) 0%, rgba(var(--jusneural-green-rgb), 0) 70%);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 17px;
            color: #374151;
            position: relative;
            z-index: 10;
            width: calc(100% - 3rem);
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding: 2rem 1.5rem;
        }

        .footer-nav-links .footer-link {
            color: #16A34A;
            transition: color 0.3s ease;
            font-weight: 500;
            padding: 0.25rem 0.5rem;
            position: relative;
            text-decoration: none;
        }

        .footer-nav-links .footer-link:hover {
            color: #15803D;
        }

        .dark .footer-nav-links .footer-link {
            color: white;
        }

        .dark .footer-nav-links .footer-link:hover {
            color: #E5E7EB;
        }

        .footer-nav-links .footer-link::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1.5px;
            background-color: rgb(var(--jusneural-green-rgb));
            transition: width 0.3s ease-out;
        }

        .footer-nav-links .footer-link:hover::after {
            width: 100%;
        }

        .footer-social-icons .social-icon img {
            display: block;
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
            opacity: 0.75;
        }

        .footer-social-icons .social-icon:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
            opacity: 1;
        }

        .footer-separator {
            border-color: rgba(0, 0, 0, 0.12);
            border-top-width: 1px;
        }

        .new-footer-style .footer-text {
            color: #4B5563;
            font-size: 0.75rem;
            line-height: 1rem;
        }

        #footer-logo {
            max-height: 1.5rem;
        }

        .dark .new-footer-style {
            background: radial-gradient(circle, rgb(10 255 108 / 50%) 0%, rgba(10, 255, 108, 0) 80%);
            border-color: rgba(255, 255, 255, 0.125);
            color: #ddd;
        }

        .dark .footer-social-icons .social-icon img {
            opacity: 0.7;
        }

        .dark .footer-social-icons .social-icon:hover img {
            opacity: 1;
        }

        .dark .footer-separator {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .dark .new-footer-style .footer-text {
            color: #ddd;
        }
        
        .footer-bottom-texts {
            text-align: center;
        }
        .footer-bottom-texts > p {
            margin-bottom: 0.5rem;
        }
         .footer-bottom-texts > p:last-child {
            margin-bottom: 0;
        }

        .hero-animated-bg-container {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .hero-animated-bg-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                110deg,
                rgba(var(--jusneural-green-rgb), 0.25) 20%,
                rgba(var(--jusneural-green-rgb), 0.1) 40%,
                rgba(var(--jusneural-green-rgb), 0.05) 50%,
                rgba(var(--jusneural-green-rgb), 0.1) 60%,
                rgba(var(--jusneural-green-rgb), 0.25) 80%
            );
            background-size: 300% 300%;
            animation: animateHeroBackground 12s ease infinite;
            opacity: 0;
            will-change: background-position;
        }

        html:not(.dark) .hero-animated-bg-container::before {
            opacity: 1;
        }

        @keyframes animateHeroBackground {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-animated-bg-container::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top,
                rgb(255, 255, 255) 15%,
                rgba(255, 255, 255, 0) 100%
            );
            z-index: 1;
            opacity: 0;
        }
        html:not(.dark) .hero-animated-bg-container::after {
            opacity: 1;
        }
        details > summary {
            list-style: none; 
        }
        details > summary::-webkit-details-marker {
            display: none; 
        }
        html:not(.dark) .service-icon {
            filter: brightness(0.6);
        }

        .image-ux-fade {
            display: block;
            -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 85%);
            mask-image: radial-gradient(ellipse at center, black 60%, transparent 85%);
        }
         .convenios-link {
            text-decoration: none !important;
            position: relative;
            display: inline-block;
            padding-bottom: 5px; 
        }

        .convenios-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: currentColor; 
            transition: width 0.3s ease-out;
        }

        .convenios-link:hover::after,
        .convenios-link:focus::after {
            width: 100%;
        }

          #whatsapp-float-button {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        background-color: #efefef;
        border-radius: 50px;
        text-align: center;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      #whatsapp-float-button:hover {
        transform: scale(1.1);
        box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
      }

      #whatsapp-float-button img {
        width: 49px;
        height: 49px;
      }

      @media (max-width: 768px) {
        #whatsapp-float-button {
          width: 50px;
          height: 50px;
          bottom: 20px;
          right: 20px;
        }
        #whatsapp-float-button img {
          width: 42px;
          height: 42px;
        }
      }

      .image-slider-container {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 1rem;
        margin-top: 3rem;
      }
      .image-slider-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        animation: slide-fade 12s infinite;
        transition: opacity 0.5s ease-in-out;
      }
      .image-slider-container img:nth-child(2) {
        animation-delay: 6s;
      }
      @keyframes slide-fade {
        0% { opacity: 0; }
        8.33% { opacity: 1; }
        41.67% { opacity: 1; }
        50% { opacity: 0; }
        100% { opacity: 0; }
      }