:root {
    --primary-color: #14532d;
    --secondary-color: #1b6f3d;
    --white-color: #ffffff;
    --blue-color: #0d6efd;
    --yellow-color: #ffc107;
}

.contact-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-widget a:hover {
    transform: translateY(-5px);
}

.whatsapp-icon {
    background-color: #25D366;
}

.phone-icon {
    background-color: #007bff;
}

.divider {
    height: 4px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--blue-color) 50%,
            var(--yellow-color) 100%);
    background-size: 300% 100%;
    animation: gradientAnimation 4s ease infinite alternate;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-footer {
    background-color: var(--primary-color);
}

.hover-primary:hover {
    color: var(--yellow-color) !important;
    transition: color 0.3s ease;
}

.footer-links li a {
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    transform: translateX(5px);
}

.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--yellow-color) !important;
    transform: translateY(-3px);
}


.hover-effect:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.hover-effect {
    transition: transform 0.3s ease;
}


.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 10px;
}


.color-primary {
    color: var(--primary-color) !important;
}

.bck-primary {
    background-color: var(--primary-color);
}


.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hover-shadow:hover {
    box-shadow: 0 0.7rem 1.2rem rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease;
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}


.price-old {
    font-size: 0.9rem;
}

.price-new {
    font-size: 1.5rem;
}

.splide__track {
    overflow: hidden;
}

.grayscale-hover {
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.grayscale-hover:hover {
    filter: grayscale(0%);
    opacity: 1;
}



.client-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.client-logo-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajustes para mobile */
.splide__slide {
    padding: 0 5px;
}

.client-logo-container {
    height: 60px;
}