.btn-border{
    padding: 10px 30px;
    border: 1px solid #000;
    font-weight: bold;
}

.marquee{
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.marca-coleccion{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.marca-box{
    border-bottom: 3px solid #2d2d2d;
    padding-bottom: 50px;
    position: relative;
    scroll-margin-top: 110px;
}
.marca-box:last-child{
    border-bottom: none;
}
.btn-ver-mas{
    font-family: 'poppins';
    font-weight: bolder;
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 120px;
}
.box-clocks{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
}
.box-clocks article{
    transform: translateY(-0%);
    transition:
        transform 0.2s, 
        opacity 0.3s, 
        display 0.3s ease-out allow-discrete;
}
.box-clocks article:nth-child(n+5){
    display: none;
    opacity: 0;
}
.active .box-clocks article{
    display: block !important;
    opacity: 1;
    transform: translateY(0%);
    @starting-style{
        opacity: 0;
        transform: translateY(-10%);
    }
}
.box-clocks img{
    width: 200px;
}
.box-reloj-hierro{
    width: 200px;
    height: 300px;
    overflow: hidden;
}
.box-reloj-hierro img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}
.box-reloj-hierro:hover img{
    transform: scale(1.2);
}

.marca-section {
    margin: 20px 0;
    padding: 10px;
    border-bottom: 2px solid #ccc;
}

.marca-section h2 {
    text-align: left;
    color: #333;
}

.relojes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reloj-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    width: 200px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.reloj-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.logo-marca-title{
    text-align: center;
    padding-top: 50px;
}
.logo-marca-title img{
    height: 70px;
    filter: grayscale(50%) brightness(1000) invert(100%);
}

/* responsive ------------------- */
@media(width < 1000px){
    .box-clocks{
        max-width: 700px;
        margin: auto;
        grid-template-columns: repeat(3, 1fr);
    }
    .box-clocks article:nth-child(n+4){
        display: none;
    }
    .btn-ver-mas{
        top: 90px;
    }
}
@media(width < 700px){
    .box-clocks{
        grid-template-columns: repeat(2, 1fr);
    }
    .box-clocks article:nth-child(n+3){
        display: none;
    }
}
@media(width < 300px){
    .box-clocks{
        max-width: 420px;
        grid-template-columns: repeat(1, 1fr);
    }
}

