/* para el carrusel principal */
swiper-container {
    width: 100%;
    height: 100%;
}
swiper-slide {
    background-position: center;
    background-size: cover;
}
swiper-slide img {
    display: block;
    width: 100%;
}
/* Inicia seccion de style para el carrusel de productos */
.product-swiper {
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
}
.product-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}
.product-swiper .swiper-pagination-bullet {
    background: #173861;
}
.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    color: #173861;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.product-swiper .swiper-button-next:after,
.product-swiper .swiper-button-prev:after {
    font-size: 1rem;
}
.product-card {
    background: #f8f9fa;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
}
/*Finaliza seccion de carrusel de productos*/
p {
    color: #173861;
}
h2 {
    color: #173861;
}
.bg-gradient {
    background: linear-gradient(180deg, #144a8d  0%, #081633 100%);
}        
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
#backToTop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
}
#backToTop:hover {
    transform: translateY(-5px); /* Pequeño desplazamiento al hacer hover */
}

/* Estilos para el menú móvil */
@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: block;
    }
    #banne-brands-m {
        display: block;
    }
}
.styleimgitem {
    border-radius: 1rem;
}
.item-menu {
    position: relative;
    color: rgb(0, 76, 172);
    padding: 0.2rem 0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.item-menu::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #80b8ff;
    transition: width 0.2s ease;
}

.item-menu:hover {
    color: #0046ac;
}

.item-menu:hover::after {
    width: 100%;
}
.quejabtn {
    background-color: #fff0f0;
}
.sugerenciabtn {
    background-color: #f0faff;
}
input[type="radio"]:checked + label span {
    --tw-border-opacity: 1;
    border-color: rgb(99 102 241 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241 / var(--tw-bg-opacity));
    --tw-shadow: inset 0 0px 0px 3.5px #E7E7FF;
    --tw-shadow-colored: inset 0 0px 0px 3.5px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
input[type="radio"] + label span {
    transition: background .2s, transform .2s;
}
.ps-3\.5 {
    -webkit-padding-start: .875rem;
    padding-inline-start: .875rem;
}
.start-0 {
    inset-inline-start: 0;
}
.ps-10 {
    -webkit-padding-start: 2.5rem;
    padding-inline-start: 2.5rem;
}
.ps-2\.3 {
    -webkit-padding-start: 2.3rem;
    padding-inline-start: 2.3rem;
}
.ps-2\.6 {
    -webkit-padding-start: 2.6rem;
    padding-inline-start: 2.6rem;
}
.w-25 {
    width: 25rem;
}
.end-2\.5 {
    inset-inline-end: .625rem;
}