.carousel-container {
    max-width: 100%;
    width: 100%;
    position: relative;
    background: white;
    overflow: hidden;
    box-shadow: 0px 4px 4px #00000045;
}

.carousel-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 300ms ease-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); */
    color: white;
    padding: 40px 80px 0px;
    transform: translateY(-90px);
    /* transition: transform 300ms ease-out; */
    z-index: 1;
}

/* 
.carousel-slide.active .slide-content {
    transform: translateY(0);
} */

.slide-content h3 {
    margin: 0;
    font-size: 2.5rem;
}

.slide-content p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease-out;
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    /* left: 20px; */
    display: none;
}

.carousel-nav.next {
    /* right: 20px; */
    display: none;
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.carousel-dots {
    position: absolute;
    right: 100px;
    bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 25px;
    /* background: rgba(0, 0, 0, 0.02); */
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FFF;
    box-shadow: -1px 0px 1px #0000006e;
    cursor: pointer;
    transition: all 300ms ease-out;
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #667eea; */
    border-radius: 50%;
    transform: scale(0);
    transition: transform 300ms ease-out;
}

.dot.active::before {
    transform: scale(1);
}

/* .dot:hover {
    transform: scale(1.2);
} */

.dot.active {
    background: #0371FF;
    width: 50px;
    border-radius: 10px;
}

/* Animación de entrada */
.carousel-container {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-container {
        margin: 0;
    }

    .carousel-wrapper {
        height: 480px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .slide-content {
        padding: 20px 20px 20px;
    }

    .slide-content h3 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 16px;
    }
}


.carousel-button {
    margin-top: 8px;
    font-weight: bold;
    background: linear-gradient(90deg, #024499 0%, #0371FF 100%);
    color: #FFF;
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
	transition: .5s ease;
}

.carousel-button:hover{
	opacity: 0.8;
}

.carousel-button:active{
	opacity: 0.8;
}

.plabs_checkgroup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* The container */
.container_checkgroup_item {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 768px) {
	.container_checkgroup_item {
		font-size: xx-small;
		margin-bottom: 10px;
	}
}

/* Hide the browser's default checkbox */
.container_checkgroup_item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container_checkgroup_item:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container_checkgroup_item input:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container_checkgroup_item input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container_checkgroup_item .checkmark:after {
    left: 8px;
    top: 5px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}