html {
    scroll-padding-top: 270px;
    scroll-behavior: smooth;
}

.d-unset {
    display: unset;
}

.color-secondary {
    color: var(--color-secondary) !important;
}

.opacity-30 {
    opacity: 0.30;
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 9999;
    font-size: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Banner principal 100vh */
.banner-area-v1 .hero-slider-one .single-hero {
    min-height: calc(100vh - 147px);
    padding: 0 !important;
    display: flex;
    align-items: center;
}

/* Service Slider Arrows */
.service-area-v1 .service-arrows-one {
    position: relative;
    margin-top: 20px;
}

.service-area-v1 .service-arrows-one .prev,
.service-area-v1 .service-arrows-one .next {
    position: absolute;
    bottom: auto;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
    font-size: 18px;
}

.service-area-v1 .service-arrows-one .prev {
    left: 50%;
    top: 50%;
    transform: translate(calc(-100% - 10px), -50%);
}

.service-area-v1 .service-arrows-one .next {
    left: 50%;
    top: 50%;
    transform: translate(10px, -50%);
}

.service-area-v1 .service-arrows-one .prev:hover,
.service-area-v1 .service-arrows-one .next:hover {
    background-color: var(--color-secondary);
}


.service-area-v1 .service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: calc(100% - 230px);
    justify-content: space-between;
}

.service-area-v1 .service-content h3 {
    flex: 0 0 auto;
}

.service-area-v1 .service-content p {
    flex: 0 0 auto;
    margin-top: auto;
}



/* @media (max-width: 991px) {
    .banner-area-v1 .hero-slider-one .single-hero {
        min-height: 100vh;
        padding: 0 !important;
    }
} */

.container-custom {
    max-width: 1530px;
    margin: 0 auto;
}

@media (max-width: 1550px) {
    .container-custom {
        max-width: 100%;
        padding: 0 15px;
    }
}