/* Estilos del Slider */
    .hero-slider {
        position: relative;
        width: 100%;
        height: 80vh;
        overflow: hidden;
        margin-top: 70px;
    }
    
    .slider-container {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        background-color: rgba(0, 0, 0, 0.6);
        background-blend-mode: overlay;
    }
    
    .slide.active {
        opacity: 1;
    }
    
    .slide-content {
        max-width: 800px;
        padding: 0 20px;
    }
    
    
    
    .slide h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .slide p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(56, 181, 169, 0.7);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .slider-btn:hover {
        background-color: rgb(56, 181, 169);
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    
    .slider-indicators {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .indicator.active {
        background-color: rgb(56, 181, 169);
        transform: scale(1.2);
    }
    
    /* Estilos del botón */
    .btn {
        display: inline-block;
        background-color: rgb(56, 181, 169);
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(56, 181, 169, 0.4);
    }
    
    .btn:hover {
        background-color: rgb(33, 81, 68);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(56, 181, 169, 0.6);
    }
    
    @media (max-width: 768px) {
        .hero-slider {
            height: 60vh;
        }
        
        .slide h2 {
            font-size: 1.8rem;
        }
        
        .slide p {
            font-size: 1rem;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }