.slider-container {
            position: relative;
            width: 100%;
            height: 460px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide video,
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
            color: white;
            text-align: center;
            padding: 20px;
        }

        .slide-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .slide-description {
            font-size: 1.2rem;
            max-width: 80%;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .subscribe-btn {
            padding: 15px 30px;
            background: linear-gradient(25deg,#cfee06, #b1b408);
            color: white;
            border: none;
            text-decoration: none;
            border-radius: 50px;
            font-size: 3.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .subscribe-btn:hover {
            transform: translateY(-3px);
          
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
            }

            .slide-title {
                font-size: 2rem;
            }

            .slide-description {
                font-size: 1rem;
            }

            .subscribe-btn {
                padding: 12px 25px;
                margin-top: 130px;
                font-size: 5px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .slider-container {
                height: 300px;
            }

            .slide-title {
                font-size: 1.5rem;
            }

            .slide-description {
                font-size: 0.9rem;
                max-width: 90%;
            }

            .subscribe-btn {
                padding: 10px 20px;
                margin-top: 130px;

                font-size: 0.9rem;
            }

            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

@media (min-width: 769px) {
    .subscribe-btn {
        margin-top: 32px; /* Ajusto este valor según lo necesites */
    }
}

.hero{
    display: flex;
    justify-content: center;
    flex-flow: wrap column;
    align-items: center;
}