        body {
            font-family: 'Poppins', sans-serif;
        }

        .hero-bg {
            background-image: url("../images/background.jpg");
            background-size: cover;
            background-attachment: fixed;
            background-position: 70%;
        }

        .card-hover {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px (--tw-shadow-color, #00000060), 0 12px 17px (--tw-shadow-color, #00000060);
        }

        /* Estilos para os botões do slider */
        .slider-btn {
            background-color: rgba(0, 0, 0, 0.4);
            color: white;
            border-radius: 50%;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease;
        }

        .slider-btn:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        /* Estilos para os botões flutuantes */
        .floating-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            opacity: 0.6; /* Opacidade padrão de 60% */
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }

        /* Aplica opacidade total ao passar o mouse apenas em dispositivos com 'hover' */
        @media (hover: hover) and (pointer: fine) {
            .floating-button:hover {
                transform: scale(1.1);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
                opacity: 1; /* Opacidade de 100% ao passar o mouse */
            }
        }

        /* Nova classe para o estado ativo/foco em dispositivos de toque */
        .floating-button.active {
            opacity: 1;
        }
        
        /* Estilos para o visualizador de imagens em tela cheia */
        #fullscreen-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        
        #fullscreen-modal.active {
            display: flex !important;
        }

        [data-slider] {
            cursor: pointer;
        }
        
        #modal-content img {
            max-height: 90vh;
            max-width: 90vw;
            object-fit: contain;
        }
        
        #modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 10001;
        }
        
        #modal-counter {
            position: absolute;
            top: 20px;
            left: 20px;
            color: white;
            font-size: 16px;
            z-index: 10001;
        }
        
        #modal-prev, #modal-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10001;
            border: none;
        }
        
        #modal-prev {
            left: 20px;
        }
        
        #modal-next {
            right: 20px;
        }
        
        /* Melhorias para dispositivos móveis */
        @media (max-width: 768px) {
            #modal-prev, #modal-next {
                width: 40px;
                height: 40px;
            }
            
            #modal-close {
                font-size: 24px;
            }
            
            #modal-counter {
                font-size: 14px;
            }
        }