*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

* {
    scrollbar-width: none; /* Firefox */
}
.barra {
    border-bottom: 1px solid white; /* Línea blanca debajo del navbar */
}

.swiper-slide a{
    text-decoration: none;
}
.swiper {
    width: 100%;
    height: calc(100vh - 60px);
}
.swiper-wrapper{
    height: 80% !important;
}
.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Alinea el contenido en la parte inferior */
    overflow: hidden;
    border-radius: 15px; /* Bordes redondeados como en la imagen */
}

.fondo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Coloca la imagen de fondo detrás del contenido */
}

.fondo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px; /* Mantiene el borde redondeado */
}

.info {
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Efecto de fondo semi-transparente */
    padding: 15px;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 100%;
}

.info img {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto 5px;
}

.company-name {
    color: white;
    font-size: 16px;
    margin: 0;
}

    /* 🌈 Degradado basado en tu especificación */
.back{
    background:linear-gradient(180deg, 
    rgba(18,24,48,1) 41%,
    rgba(29,37,68,1) 82%,
    rgba(17,35,107,1) 98%); ;
  /* 🎭 Efecto de desenfoque */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Soporte para Safari */
}