/* Office Carousel Styles */
.office-carousel {
    position: relative;
    background: #f9f9f9;
    width: 100%
}

.office-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.office-slider .slide {
    padding: 0 15px;
}

.office-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation Arrows */
.office-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 500px;
    background: rgba(216, 157, 85, 0.7);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.office-slider .slick-arrow:hover {
    background: rgba(216, 157, 85, 0.9);
}

.office-slider .slick-prev {
    left: 0;
    border-radius: 8px 0 0 8px;
}

.office-slider .slick-next {
    right: 0;
    border-radius: 0 8px 8px 0;
}

.office-slider .slick-arrow::before {
    font-family: 'FontAwesome';
    font-size: 40px;
}

.office-slider .slick-prev::before {
    content: '\f104';
}

.office-slider .slick-next::before {
    content: '\f105';
}

.slick-prev:before,
.slick-next:before {
    content: '' !important;
}

/* Use seus próprios ícones (usando ZMDI já tem no projeto) */
.slick-prev i,
.slick-next i {
    font-size: 40px;
    color: white;
}

/* Dots Navigation */
.office-slider .slick-dots {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.office-slider .slick-dots li {
    margin: 0 5px;
}

.office-slider .slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d3d3d3;
    text-indent: -9999px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.office-slider .slick-dots .slick-active button {
    background: #D89D55;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .office-image {
        height: 400px;
    }

    .office-slider .slick-arrow {
        height: 400px;
        width: 40px;
    }
}

@media (max-width: 576px) {
    .office-image {
        height: 300px;
    }

    .office-slider .slick-arrow {
        height: 300px;
        width: 30px;
    }

    .office-slider .slick-arrow::before {
        font-size: 25px;
    }
}


/* Office Carousel Fullwidth Styles */
.office-carousel-fullwidth {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.office-slider-fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
}

.office-slider-fullwidth .slide {
    padding: 0;
    margin: 0;
}

/* .office-image-fullwidth {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
} */

.image-container {
    position: relative;
    width: 100%;
}

.office-image-fullwidth {
    width: 100%;
    aspect-ratio: 1024/500;
    object-fit: cover;
    object-position: center;
}

/* Fallback para navegadores sem suporte a aspect-ratio */
@supports not (aspect-ratio: 1024/500) {
    .image-container::before {
        content: "";
        display: block;
        padding-top: 48.828125%;
    }

    .office-image-fullwidth {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

/* Navigation Arrows - Ajuste para fullwidth */
.office-slider-fullwidth .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 500px;
    background: rgba(216, 157, 85, 0.7);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.office-slider-fullwidth .slick-prev {
    left: 0;
}

.office-slider-fullwidth .slick-next {
    right: 0;
}

/* Remove as bordas arredondadas */
.office-slider-fullwidth .slick-arrow,
.office-image-fullwidth {
    border-radius: 0 !important;
}

/* Dots Navigation */
.office-slider-fullwidth .slick-dots {
    bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .office-image-fullwidth {
        height: 400px;
    }

    .office-slider-fullwidth .slick-arrow {
        height: 400px;
        width: 40px;
    }
}

@media (max-width: 576px) {
    .office-image-fullwidth {
        height: 300px;
    }

    .office-slider-fullwidth .slick-arrow {
        height: 300px;
        width: 30px;
    }
}