.home-destaque .slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2/1;
    max-height: 540px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(32, 54, 86, 0.3);
}

.home-destaque .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.home-destaque .slide.active {
    opacity: 1;
    z-index: 2;
}

.home-destaque .slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 0;
    transform: scale(1);
}

.home-destaque .slide:hover::before {
    transform: scale(1.05);
}

.home-destaque .overlay {
    position: absolute;
    background: #203656;
    opacity: 0.6;
    width: 100%; height: 100%;
    top: 0; left: 0;
    z-index: 1;
}

.home-destaque .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.home-destaque .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 50px; 
    height: 50px;
    cursor: pointer;
    z-index: 3;
    color: white;
}
.home-destaque .arrow.left { 
    left: 20px; 
}
.home-destaque .arrow.right { 
    right: 20px; 
}

.home-destaque .dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.home-destaque .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}

.home-destaque .dot.active {
    opacity: 1;
    width: 20px;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gradiente-1), var(--gradiente-2));
    transition: all 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}

