/* RESET PARA EVITAR CONFLITOS */
.home-editorial-container * {
    box-sizing: border-box;
}

/* ESTRUTURA DE 3 COLUNAS */
.home-editorial-container {
max-width: 1200px;
    width: 100%;
    margin: auto;
    margin-top: 20px;
	margin-bottom: -10px;
}

.home-editorial-columns {
    display: flex;
    width: 100%;
    gap: 20px;
}


.home-coluna-meio {
    flex: 2;
    min-width: 0;
    width: 100%;
}

.home-coluna-direita {
    flex: 1;
    min-width: 250px;
    max-width: 287px;
    min-height: 300px;

}

/* SLIDER */
.slider-home-container {
    width: 100%;
}

.slider-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

.slider-wrapper {
padding: 10px;
    border-right: 1px solid #20212426;
    border-left: 1px solid #20212426;
    border-bottom: 1px solid #20212426;
    border-radius: 0;
    background: white;
    margin-bottom: 30px;
}

.custom-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
   border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 500px;
}

.custom-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.custom-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 30%, transparent 100%);
    padding: 40px;
    color: white;
    z-index: 2;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.slide-overlay-content {
    position: relative;
    z-index: 3;
}

.slide-category {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 18px;
    border-radius: 3px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-decoration: none;
    font-weight: bold;
}

.slide-title {
    font-size: 32px;
    margin: 10px 0;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.slide-title  a:visited {
    color: #fff !important;
}

.slide-title a {
    color: white;
    text-decoration: none;
}

.slide-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 15px;
    flex-wrap: wrap;
}

.slide-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    padding: 5px 12px;
    border-radius: 20px;
}

.slider-controls {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 10;
}

.slider-btn {
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.slide-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

/* Conteúdo da página */
.home-editorial-content {
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


@media (max-width: 992px) {
    .home-editorial-columns {
        flex-wrap: wrap;
    }
    
    .home-coluna-meio {
        order: 1;
        flex: 1 0 100%;
        margin-bottom: 30px;
    }
    
    .home-coluna-esquerda {
        order: 2;
        flex: 1;
        max-width: none;
        min-height: 200px;
    }
    
    .home-coluna-direita {
        order: 3;
        flex: 1;
        max-width: none;
        min-height: 200px;
    }
    
    .custom-slider-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .home-editorial-columns {
        display: block;
    }
    
    .home-coluna-esquerda,
    .home-coluna-direita {
        min-height: 150px;
        max-width: none;
        width: 100%;
    }
    
    .custom-slider-container {
        height: 400px;
    }
    
    .slide-overlay {
        padding: 25px;
        height: 65%;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .slider-controls {
        top: 40%;
        padding: 0 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slide-counter {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .custom-slider-container {
        height: 350px;
    }
    
    .slide-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .slide-meta {
       display: none;
    }
}
