<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



/* =========================
   SLIDER
========================= */

.slider{
    position:relative;
    width:100%;
    max-width:1200px;
    height:600px;
    overflow:hidden;
    border-radius:1px;
  /*  border-radius:24px; 
    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 10px 25px rgba(0,0,0,.25); */
}

.slides{
    display:flex;
    width:100%;
    height:100%;
    transition:transform .7s cubic-bezier(.77,0,.18,1);
}

.slide{
    min-width:100%;
    height:100%;
    position:relative;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Overlay */

.overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.65),
            rgba(0,0,0,.2)
        );
    display:flex;
    align-items:center;
    padding:80px;
}

.content{
    max-width:600px;
    color:white;
}

.content h2{
    font-size:clamp(2rem,5vw,4rem);
    margin-bottom:20px;
    line-height:1.1;
}

.content p{
    font-size:1.1rem;
    line-height:1.7;
    opacity:.92;
    margin-bottom:30px;
}

.content a{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    background:white;
    color:#111827;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.content a:hover{
    transform:translateY(-3px);
    background:#e2e8f0;
}

/* Botones */

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#f5a425;
    /* background:rgba(255,255,255,.15); */
    backdrop-filter:blur(10px);
    color:#000000;
    font-size:1.5rem;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.nav-btn:hover{
    background:rgba(255,255,255,.3);
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

/* Indicadores */

.dots{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    width:34px;
    border-radius:20px;
    background:white;
}

/* Responsive */

@media (max-width:768px){

    .slider{
        height:500px;
    }

    .overlay{
        padding:40px 30px;
        align-items:flex-end;
    }

    .content p{
        font-size:1rem;
    }

    .nav-btn{
        width:44px;
        height:44px;
    }
}

@media (max-width:480px){

    .slider{
        height:420px;
        border-radius:18px;
    }

    .overlay{
        padding:25px;
    }

    .content a{
        width:100%;
        text-align:center;
    }
}
</style>