/* Estilos Adicionais que fogem um pouco do padrão utilitário do Tailwind ou que organizam melhor */

/* Navbar Background on Scroll */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Swiper custom pagination styles */
.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: #b39d82 !important; /* Secondary color (Dourado) */
    opacity: 1;
    width: 24px;
    border-radius: 4px;
    transition: width 0.3s;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #b39d82;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1c2e4a;
}
