        :root {
            --delta-red: #f51b1c;
            --delta-dark: #242438;
        }

        body {
            font-family: 'Gabarito', sans-serif;
        }

        .logo-font {
            font-family: 'Agency FB', sans-serif;
        }

    .hero-slider {
        height: 100vh;
        position: relative;
    }
    
    .swiper {
        width: 100%;
        height: 100%;
    }
    
    .swiper-slide {
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .swiper-slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        z-index: 1;
    }
    
    .slide-content {
        position: relative;
        z-index: 2;
        color: white;
        text-align: center;
        max-width: 800px;
        padding: 0 20px;
    }
    
    .swiper-button-next, .swiper-button-prev {
        color: white;
        background: #e53e3e; 
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px;
        font-weight: bold;
    }
    
    .swiper-button-next:hover, .swiper-button-prev:hover {
        background: rgba(229, 62, 62, 0.8);
    }
    
    .swiper-pagination-bullet {
        background: white;
        opacity: 0.5;
        width: 12px;
        height: 12px;
    }
    
    .swiper-pagination-bullet-active {
        background: #e53e3e; 
        opacity: 1;
    }

    /* Asegurar que el slider sea responsive */
    @media (max-width: 768px) {
        .slide-content h1 {
            font-size: 2.5rem !important;
        }
        
        .slide-content p {
            font-size: 1.1rem !important;
        }
        
        .swiper-button-next, .swiper-button-prev {
            width: 40px;
            height: 40px;
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 16px;
        }
    }

:root {
    --whatsapp-green: #25D366;
    --whatsapp-dark-green: #128C7E;
    --text-color: #333;
}


.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Gabarito', 'Segoe UI', Roboto, sans-serif;
}

#whatsapp-button {
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#whatsapp-button:hover {
    background-color: var(--whatsapp-dark-green);
    transform: scale(1.1);
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Gabarito', 'Segoe UI', Roboto, sans-serif;
}

.whatsapp-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-header {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
}

.whatsapp-header span {
    font-weight: 500;
    font-size: 14px;
    flex-grow: 1;
}

#close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin-left: 10px;
}

.whatsapp-body {
    padding: 15px;
}

.whatsapp-body p {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.whatsapp-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatsapp-options li {
    margin-bottom: 10px;
}

.whatsapp-options a {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    gap: 10px;
}

.whatsapp-options a:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.whatsapp-options i {
    color: var(--whatsapp-green);
    font-size: 24px;
    flex-shrink: 0;
}

.whatsapp-options strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.whatsapp-options span {
    font-size: 12px;
    color: #666;
    display: block;
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-popup {
        width: 280px;
        right: -10px;
    }
}