.enap-carousel {
    position: relative;
    width: 100%;
    height: var(--altura-desktop);
    overflow: hidden;
    margin-bottom: 60px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1142px;
    margin: auto;
    border-radius: 25px;
    overflow: hidden;
}

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

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsividade das Imagens */
.mobile-image {
    display: none;
}

.desktop-image {
    display: block;
}

@media (max-width: 768px) {
    .enap-carousel {
        height: var(--altura-mobile);
    }
    
    .mobile-image {
        display: block;
    }
    
    .desktop-image {
        display: none;
    }
}


/* Conteúdo do Slide */
.slide-content {
    position: absolute;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 20px;
}

.slide-content.centro {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slide-content.esquerda {
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    width: 100%;
    max-width: 1142px;
    margin: auto;
}

.slide-content.direita {
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    text-align: right;
}

.slide-content.inferior-esquerda {
    bottom: 60px;
    left: 60px;
    text-align: left;
}

.slide-content.inferior-centro {
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.slide-content.inferior-direita {
    bottom: 60px;
    right: 60px;
    text-align: right;
}

.content-wrapper {
    max-width: 600px;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
}


.slide-subtitle p{
    color: white;
}

.slide-button-wrapper {
    margin-top: 20px;
}

.slide-button {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-button.primario {
    background: #007D7A;
    color: white;
}

.slide-button.primario:hover {
    background: #006969;
    transform: translateY(-2px);
}

.slide-button.secundario {
    background: white;
    color: #007D7A;
    border-color: white;
}

.slide-button.secundario:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.slide-button.outline {
    background: transparent;
    color: white;
    border-color: white;
}

.slide-button.outline:hover {
    background: white;
    color: #006969;
    transform: translateY(-2px);
}

/* Setas de Navegação */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #007D7A;
    border: 2px white solid;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    color: white;
}

.carousel-arrow:hover {
    background: #006969;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

.indicator:hover {
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .slide-content {
        padding: 15px;
    }
    
    .slide-content.esquerda,
    .slide-content.direita,
    .slide-content.inferior-esquerda,
    .slide-content.inferior-direita {
        left: 20px;
        right: 20px;
        text-align: center;
        transform: none;
        height: 100%;
    }
    
    .slide-content.inferior-esquerda,
    .slide-content.inferior-centro,
    .slide-content.inferior-direita {
        bottom: 40px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow.prev {
        left: 15px;
    }
    
    .carousel-arrow.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .slide-button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}