.carrossel-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carrossel-hero-slides {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carrossel-hero-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease;
}

.carrossel-hero-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.carrossel-hero-slide.is-active {
    opacity: 1;
}

.carrossel-hero-slide-placeholder {
    padding: 40px;
    text-align: center;
    background: #f5f5f5;
    border: 1px dashed #ccc;
    font-size: 14px;
}

.carrossel-hero-edit-template {
    margin-top: 10px;
    text-align: right;
}

.carrossel-hero-edit-template a {
    font-size: 12px;
    text-decoration: underline;
}

.carrossel-hero-prev,
.carrossel-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    line-height: 1;
    z-index: 10;
}

.carrossel-hero-prev {
    left: 16px;
}

.carrossel-hero-next {
    right: 16px;
}

.carrossel-hero-prev:hover,
.carrossel-hero-next:hover {
    background: rgba(0,0,0,0.85);
}

.carrossel-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carrossel-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.5);
    padding: 0;
}

.carrossel-hero-dot.is-active {
    background: rgba(255,255,255,1);
}

@media (max-width: 767px) {
    .carrossel-hero-prev,
    .carrossel-hero-next {
        padding: 8px 12px;
        font-size: 14px;
    }
}
