
    .hero-slider {
        position: relative;
        height: 85vh;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide.active {
        opacity: 1;
    }

    .overlay {
        position: absolute;
        inset: 0;
        /*background: rgba(112, 41, 225, 0.24);*/
        background: rgb(112 41 225 / 66%);
    }

    .content {
        position: relative;
        z-index: 2;
        color: #fff;
        /* max-width: 600px; */
        padding-top: 5rem;
        position: relative;
        min-height: 700px;
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        /* display: flex; */
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }

    .content h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .content p {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: var(--my-second-color);
    }

    .btn {
        font-family: 'Montserrat', sans-serif;
        display: inline-block;
        padding: 0.9rem 1.6rem;
        border-radius: 8px;
        border-color: var(--my-second-color);
        text-decoration: none;
        font-weight: 600;
    }


    @media (max-width: 768px) {
        .hero-slider {
            height: 80vh;
        }

        .content {
            padding: 2rem;
        }

        .content h1 {
            font-size: 2rem;
        }
    }


    /* Flechas */
    .nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #94a3b82b;
        border: none;
        color: #fff;
        font-size: 2rem;
        padding: 0.6rem 1rem;
        cursor: pointer;
        z-index: 10;
    }

    .nav.prev {
        left: 20px;
    }

    .nav.next {
        right: 20px;
    }

    .nav:hover {
        background: var(--my-grey-color);
    }

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

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

    .dot.active {
        background: #00e0ff;
    }
