* { box-sizing: border-box; margin: 0; padding: 0; }
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-magazine {
    display: flex;
    transition: transform 0.8s ease;
}

.slider-magazine a {
flex: 0 0 auto;
width: 100%;
}



.slider-magazine img {
    width: 100%;
    height: auto;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.slider-nav button {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
}

.slider-dots button.active {
    background-color: #333;
}

.slider-dots button:hover {
    background-color: #666;
}


.slider-marcas{
    display: block;
    position: relative;
    margin-top: 20px;
}
.slider-marcas .slider-nav{
    top:40%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.slider-marcas .slider-nav button {
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}
.slider-marcas .slider-nav button#prev {
    left: -50px;
}
.slider-marcas .slider-nav button#next {
    right: -50px;
}
.slider-marcas a{
   padding: 5px;
}
.slider-marcas .slider-magazine a {
    margin: 0 10px;
    display: inline-block;
}
.slider-nav{
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
display: flex;
justify-content: space-between;
pointer-events: none;
}
.slider-nav button {
pointer-events: all;
cursor: pointer;
z-index: 10;
}
