.cuvra-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 45px;
}

.cuvra-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.cuvra-slide {
    min-width: 350px;
    height: 650px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

.cuvra-slide.active {
    transform: scale(1);
    opacity: 1;
    z-index: 5;
}

.cuvra-slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    padding: 20px;
    border-radius: 12px;
}

.cuvra-slide-content h2 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: bold;
	color: white;
}

.cuvra-slide-content p {
    margin: 0 0 15px;
}

.cuvra-btn {
    padding: 10px 20px;
    background: #5EC7D5;
    color: white;
    border-radius: 20px;
    text-decoration: none !important;
    display: inline-block;
}

.cuvra-btn:hover {
    background: #380982;
    color: white;
}

/* FLECHAS */
.cuvra-prev,
.cuvra-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #66C4D8;
	color: white;
    border: none;
    padding: 15px;
	border-radius: 100%;
	width:50px;
	height:50px;
    cursor: pointer;
    z-index: 10;
}

.cuvra-prev:hover,
.cuvra-next:hover {
    background: #380982;
	color: white;
}

.cuvra-prev:focus,
.cuvra-next:focus {
    background: #66C4D8 !important;
	color: white;
}

.cuvra-prev { left: 10px; }
.cuvra-next { right: 10px; }


@media (max-width: 768px) {
.cuvra-slider {
    justify-content:center;
}
}
