.cem-porcento-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.cpc-section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 600;
    color: #333;
}

.cpc-section-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #666;
}

/* 3D Carousel Container */
.cpc-3d-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    perspective: 1200px;
    overflow: visible;
}

.cpc-3d-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(-400px);
}

.cpc-3d-slide {
    position: absolute;
    width: var(--cpc-active-width, 1100px);
    height: var(--cpc-active-height, 670px);
    left: 50%;
    top: 50%;
    margin-left: calc(var(--cpc-active-width, 1100px) / -2);
    margin-top: calc(var(--cpc-active-height, 670px) / -2);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
                opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1),
                width 0.8s cubic-bezier(0.4, 0.0, 0.2, 1),
                height 0.8s cubic-bezier(0.4, 0.0, 0.2, 1),
                margin 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
}

.cpc-3d-slide-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.cpc-3d-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Estado ativo - imagem central */
.cpc-3d-slide.active {
    z-index: 100;
    width: var(--cpc-active-width, 1100px);
    height: var(--cpc-active-height, 670px);
    margin-left: calc(var(--cpc-active-width, 1100px) / -2);
    margin-top: calc(var(--cpc-active-height, 670px) / -2);
}

.cpc-3d-slide.active .cpc-3d-slide-image {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

/* Navigation */
.cpc-3d-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent !important;
    color: #D7D7D7 !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 80px;
    font-weight: 150;
    line-height: 50px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 200;
    opacity: 0.8;
}

.cpc-3d-nav:hover {
    color: #F48120 !important;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.cpc-3d-nav-prev {
    left: 50px;
}

.cpc-3d-nav-next {
    right: 50px;
}

/* Dots */
.cpc-3d-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--cpc-dots-gap, 15px);
    z-index: 200;
    padding: 0;
    margin: 0;
}

.cpc-3d-dot {
    width: var(--cpc-dot-width, var(--cpc-dot-size, 12px));
    height: var(--cpc-dot-height, var(--cpc-dot-size, 12px));
    display: inline-block;
    border-radius: var(--cpc-dot-radius, 50%);
    background: var(--cpc-dot-inactive-color, #ddd);
    opacity: var(--cpc-dot-inactive-opacity, 1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.cpc-3d-dot.active {
    background: var(--cpc-dot-active-color, #d63384);
    opacity: var(--cpc-dot-active-opacity, 1);
    width: var(--cpc-dot-active-width, var(--cpc-dot-width, var(--cpc-dot-size, 12px)));
    border-radius: var(--cpc-dot-active-radius, var(--cpc-dot-radius, 50%));
}

.cpc-3d-dot:hover {
    background: var(--cpc-dot-hover-color, #999);
    opacity: var(--cpc-dot-hover-opacity, 1);
}

/* Responsive */
@media (max-width: 1024px) {
    .cpc-3d-carousel-container {
        height: 450px;
    }
    
    .cpc-3d-slide {
        width: 280px;
        height: 340px;
        margin-left: -140px;
        margin-top: -170px;
    }
    
    .cpc-3d-nav-prev {
        left: 20px;
    }
    
    .cpc-3d-nav-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .cpc-section-title {
        font-size: 28px;
    }
    
    .cpc-3d-carousel-container {
        height: 400px;
    }
    
    .cpc-3d-slide {
        width: 240px;
        height: 290px;
        margin-left: -120px;
        margin-top: -145px;
    }
    
    .cpc-3d-nav {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
    
    .cpc-3d-nav-prev {
        left: 10px;
    }
    
    .cpc-3d-nav-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .cpc-section-title {
        font-size: 24px;
    }
    
    .cpc-3d-carousel-container {
        height: 400px;
        perspective: 800px;
    }
    
    .cpc-3d-slide {
        width: 200px;
        height: 250px;
        margin-left: -100px;
        margin-top: -125px;
    }
    
    .cpc-3d-slide.active {
        width: var(--cpc-active-width-mobile, 300px);
        height: var(--cpc-active-height-mobile, 350px);
        margin-left: calc(var(--cpc-active-width-mobile, 300px) / -2);
        margin-top: calc(var(--cpc-active-height-mobile, 350px) / -2);
    }
}

/* ===== SEÇÃO DE DESCRIÇÕES ===== */
.cpc-title-section {
    text-align: center;
    padding: 60px 0 20px 0;
}

.cpc-carousel-title {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    color: #606060;
    text-transform: uppercase;
}

/* Divider laranja abaixo do título */
.cpc-carousel-title::after {
    content: '';
    display: block;
    width: 471px;
    height: 1px;
    background-color: #f48120;
    margin: 20px auto 0 auto;
}

.cpc-carousel-img-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.cpc-descriptions-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0;
    padding-top: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cpc-descriptions-container {
    position: relative;
    text-align: center;
    flex: 1;
    max-width: 800px;
    height: 120px;
    overflow: hidden;
}

.cpc-description-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.cpc-description-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cpc-description-content {
    text-align: center;
    width: 100%;
}

.cpc-slide-description {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: #0A0505;
    font-weight: 400;
    line-height: 1.6;
}


/* Reposicionamento das setas para ficar ao lado das descrições */
.cpc-descriptions-section .cpc-3d-nav {
    position: static;
    transform: none;
    margin: 0;
    flex-shrink: 0;
}

/* ===== DOTS ===== */
.cpc-dots-container {
    text-align: center;
    padding: 30px 0 20px 0;
}

.cpc-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.cpc-dots .cpc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d7d7d7;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.cpc-dots .cpc-dot.active {
    background: #F48120;
}

.cpc-dots .cpc-dot:hover {
    background: #F48120;
}

/* ===== RESPONSIVO PARA DESCRIÇÕES ===== */
@media (max-width: 1024px) {
    .cpc-carousel-title {
        font-size: 36px;
    }
    
    .cpc-carousel-title::after {
        width: 350px;
    }
    
    .cpc-slide-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cpc-carousel-title {
        font-size: 28px;
        letter-spacing: 1.5px;
    }
    
    .cpc-carousel-title::after {
        width: 280px;
    }
    
    .cpc-slide-description {
        font-size: 16px;
    }
    
    .cpc-descriptions-container {
        height: 70px;
    }
    
    .cpc-descriptions-section {
        gap: 20px;
        padding: 15px 20px;
    }
    
    .cpc-descriptions-section .cpc-3d-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cpc-carousel-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .cpc-carousel-title::after {
        width: 200px;
    }
    
    .cpc-slide-description {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .cpc-descriptions-container {
        height: 100px;
    }
    
    .cpc-descriptions-section {
        gap: 15px;
        padding: 10px 15px;
    }
    
    .cpc-descriptions-section .cpc-3d-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}