.scrolling {
    animation: fadeInDown 0.9s 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 10%);
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.scrolling.is-bg-transparent-text-white {
    background: rgba(1, 25, 255, 0.95);
}

.scrolling.is-bg-transparent-text-dark {
    background: rgba(255, 255, 255, 0.95);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.reveal-text {
    display: inline-block;
    position: relative;
    transform: translateY(100%);
    translate-origin: top left;
    animation: text-reveal 2s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}


/* Other CSS */

.hero-slider .swiper-slide {
    overflow: hidden;
}

.hero-slider .swiper-slide .hero-bg-img {
    transform: scale(1.25);
    transition: all 1.5s ease;
}

.hero-slider .swiper-slide-active .hero-bg-img {
    transform: scale(1);
}

.hero-slider .swiper-slide h4,
.hero-slider .swiper-slide h1,
.hero-slider .swiper-slide p,
.hero-slider .swiper-slide a {
    transform: translateY(25%);
    opacity: 0;
    transition: all 0.65s ease;
    transition-delay: 1.25s;
}

.hero-slider .swiper-slide h4,
.hero-slider .swiper-slide-active h1,
.hero-slider .swiper-slide-active p,
.hero-slider .swiper-slide-active a {
    transform: translateY(0%);
    opacity: 1;
}


/* Style for the loader */

.fullpage_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0d0e1d;
    /* Light background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure the loader is on top of everything */
}


/* Loader spinner */

.spinner {
    border: 4px solid #fff;
    /* Light gray */
    border-top: 4px solid #0119ff;
    /* Blue color for the spinner */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}


/* Animation for the spinner */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* The ripple effect */

.ripple-button .ripple {
    animation: ripple-animation 2s infinite;
}


/* Ripple animation */

@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.logo-cliente {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 190px;
    padding: 0px;
    margin: auto;
}


/* Botón Flotante WhatsApp */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    background-color: #25D366;
    color: #fff;
    border-radius: 9999px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    position: relative;
    z-index: 10;
}


/* Animación tipo ola */

.whatsapp-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    opacity: 0.5;
    border-radius: 9999px;
    animation: whatsapp-wave 1.5s infinite;
    z-index: 0;
}

@keyframes whatsapp-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}