

 .destaque-slider {
       
        height: 550px;
    }
    
    .destaque-slide-inner {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .destaque-slide-link {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        text-decoration: none;
        color: #fff;
    }
    
    .destaque-slide-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s ease;
    }
    
    .destaque-slide:hover .destaque-slide-image {
        transform: scale(1.05);
    }
    
    .destaque-slide-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        text-align: left;
        box-shadow: 0 -20px 20px rgba(0,0,0,0.3);
    }
    
    .destaque-slide-category {
        display: inline-block;
        background-color: #ff2d2d;
        color: white;
        padding: 3px 10px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 8px;
    }
    
    .destaque-slide-title {
    font-size: 18px;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: white;
    font-weight: bold;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
    position: relative;
    z-index: 2;
}
    
    .destaque-slide-excerpt {
        font-size: 14px;
        opacity: 0.9;
        line-height: 1.4;
    }

.destaque-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.destaque-slider-container {
    flex: 1 1 65%;
    min-width: 300px;
}
.ultimas-lateral {
    flex: 1 1 30%;
    min-width: 260px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ultimas-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ultimas-item {
    display: flex;
    background: #fff;
    padding: 0;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    min-height: 80px;
}

.ultimas-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.ultimas-thumb {
    width: 80px;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.ultimas-content {
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ultimas-cat {
    font-weight: bold;
    color: #333;
    font-size: 14px;
     text-transform: uppercase;
    padding-bottom: 4px;
    margin-bottom: 6px;
    display: inline-block;
    position: relative;
    border: none;
}

.ultimas-cat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: #ff2d2d;
}

.ultimas-item-title {
    font-size: 16px;
     text-transform: uppercase;
    color: #333;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ultimas-button {
    display: block;
    background: linear-gradient(90deg, #ff3019 0%, #cf0404 100%);
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.ultimas-button:hover {
    background: linear-gradient(90deg, #cf0404 0%, #ff3019 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}
/* Swiper Navigation Buttons - Red Palette */
.swiper-button-next,
.swiper-button-prev {
    color: #ff2d2d !important;
    background: rgba(255, 255, 255, 0.8) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ff2d2d !important;
    color: white !important;
    transform: scale(1.1) !important;
}

/* Preview Elements - Red Palette */
.destaque-slide-preview {
    background: rgba(255, 45, 45, 0.85) !important;
    border: 2px solid #ff2d2d !important;
}

.destaque-preview-text {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

/* Active Slide Indicator */
.swiper-pagination-bullet-active {
    background: #ff2d2d !important;
    transform: scale(1.2) !important;
}