/* Estilos base y para componentes específicos que no son fácilmente manejables con Tailwind */
body {
    background-color: #f1f1f1;
    color: #656b6f;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.35px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Estilos para el scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Estilos para el carrusel Swiper */
.main-carousel .swiper-slide {
    transition: opacity 0.4s ease-in-out;
    opacity: 0.5;
}

.main-carousel .swiper-slide-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    /* Corrección para centrar verticalmente las flechas */
    top: 50% !important; /* Se añade !important para forzar el centrado */
    transform: translateY(-50%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

.swiper-button-next {
    right: 24px;
}

.swiper-button-prev {
    left: 24px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: white !important;
}
