
        @media (max-width: 767px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                height: 100vh;
                width: 260px;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding-top: 80px;
                padding-left: 32px;
                display: flex;
                transform: translateX(-100%);
                transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
                box-shadow: 2px 0 16px 0 rgba(23, 35, 118, 0.08);
                z-index: 200;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .nav-links a {
                color: #172376 !important;
                font-size: 1.2rem;
                font-weight: 600;
                transition: color 0.2s;
            }

            .nav-links a:hover {
                color: #ff8800 !important;
            }
        }

        /* Estilos personalizados para o slider da galeria */
        .gallery {
            position: relative;
        }

        .gallery-slider {
            position: relative;
            padding: 0;
        }

        /* Setas personalizadas */
        .custom-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(23, 35, 118, 0.9);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .custom-arrow:hover {
            background: rgba(23, 35, 118, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .custom-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .custom-prev {
            left: -30px;
        }

        .custom-next {
            right: -30px;
        }

        /* Bullets personalizados */
        .slick-dots {
            bottom: -40px;
            list-style: none;
            display: flex !important;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin: 0;
            padding: 0;
        }

        .slick-dots li {
            margin: 0;
        }

        .custom-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(23, 35, 118, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            margin: 0;
        }

        .custom-dot:hover {
            background: rgba(23, 35, 118, 0.6);
            transform: scale(1.2);
        }

        .slick-dots li.slick-active .custom-dot {
            background: #172376;
            border-color: #ff8800;
            transform: scale(1.3);
        }

        /* Responsividade para setas */
        @media (max-width: 1024px) {
            .custom-prev {
                left: -15px;
            }

            .custom-next {
                right: -15px;
            }

            .custom-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .custom-prev {
                left: 0;
            }

            .custom-next {
                right: 0;
            }

            .custom-arrow {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .custom-prev {
                left: -10px;
            }

            .custom-next {
                right: -10px;
            }

            .custom-arrow {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        /* Melhorias na galeria */
        .gallery-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* Esconder setas padrão do Slick */
        .slick-prev,
        .slick-next {
            display: none !important;
        }

        /* Indicador de slide atual */
        .gallery-slider::after {
            content: attr(data-current-slide) " / " attr(data-total-slides);
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(23, 35, 118, 0.9);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            z-index: 5;
        }

        /* Melhorar acessibilidade */
        .custom-arrow:focus,
        .custom-dot:focus {
            outline: 2px solid #ff8800;
            outline-offset: 2px;
        }

        /* Animação de entrada para os itens da galeria */
        .gallery-item {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Melhorar contraste dos bullets em fundos claros */
        .slick-dots {
            background: rgba(255, 255, 255, 0.8);
            padding: 8px 16px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-container {
            position: relative;
        }

        .banner-slider {
            margin-bottom: 0 !important;
        }

        .banner-slider,
        .banner-slide {
            min-height: 70vh;
            height: 70vh;
            width: 100% !important;
            background-size: cover !important;
            background-position: center !important;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        @media (max-width: 768px) {

            .banner-slider,
            .banner-slide {
                min-height: 40vh;
            }
        }

        .gallery-slider .slick-slide {
            padding-left: 0.5rem;
            padding-right: 0.5rem;
            transition: opacity 0.5s;
            z-index: 1;
        }

        .gallery-slider .slick-current {
            opacity: 1;
            z-index: 2;
        }

        /* Setas do banner rotativo */
        .banner-slider .custom-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 4%;
            right: auto;
            z-index: 30;
        }

        .banner-slider .custom-next {
            left: auto;
            right: 4%;
        }

        @media (max-width: 768px) {
            .banner-slider .custom-arrow {
                left: 8px;
            }

            .banner-slider .custom-next {
                right: 8px;
            }
        }
  

        /* Para garantir que os elementos internos do Slick ocupem a largura total */
.banner-slider .slick-list,
.banner-slider .slick-track,
.banner-slider .slick-slide {
    width: 100% !important; /* Força a largura total */
    max-width: none !important; /* Remove qualquer max-width */
    margin: 0 !important; /* Remove qualquer margin horizontal */
    padding: 0 !important; /* Remove qualquer padding horizontal */
    box-sizing: border-box; /* Garante que padding e border sejam incluídos na largura */
}

/* Se você ainda quiser um respiro para o texto dentro do hero-content */
.banner-slider .hero-content {
    /* Mantenha suas classes Tailwind como max-w-2xl mx-auto se quiser o texto centralizado */
    /* E adicione paddings horizontais para o texto não colar nas bordas da tela */
    padding-left: 1rem; /* Exemplo de padding */
    padding-right: 1rem; /* Exemplo de padding */
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    z-index: 10;
    position: relative;
    z-index: 100;
    pointer-events: auto;
  }


.hero-content a {
    position: relative;
    z-index: 101;
    pointer-events: auto;
}
.banner-slide .bg-black {
    pointer-events: none;
}

/* Estilos para o Modal */
#privacy-modal.hidden {
    display: none;
}

#privacy-modal {
    transition: opacity 0.3s ease-in-out;
}

.modal-content {
    animation: fadeIn 0.3s ease-in-out;
}

/* Estilo para o select quando a opção placeholder está selecionada */
select.placeholder-shown {
    color: #64748b; /* Cor de placeholder (slate-500 do Tailwind) */
}