#section-card-shoe-v1 {
    padding: 60px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#section-card-shoe-v1 .container-cards {
    height: max-content;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.principal-card-shoe h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.principal-card-shoe p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 1.5;
}

.content-card-shoe {
    padding: 5px; 
}

/* Contenedor del enlace para posicionar el texto */
.content-card-shoe a {
    height: 280px; /* Altura reducida */
    display: block;
    position: relative; /* Importante para que el texto se alinee aquí */
    overflow: hidden;
    border-radius: 20px;
}

.content-card-shoe img {
    width: 100%;
    height: 100% !important; 
    object-fit: cover; 
    transition: transform 0.5s ease, filter 0.5s ease; /* Suaviza el blur y el zoom */
    display: block;
}

/* El rectángulo blanco (Overlay) */
.info-overlay {
    position: absolute;
    bottom: -60px; 
    left: 10%;
    right: 10%;
    background: rgba(255, 255, 255, 0); /* Rectángulo blanco semi-transparente */
    padding: 12px;
    border-radius: 12px;
    border: #ffffff 1px solid;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efecto rebote suave */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.destination-name {
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.content-card-shoe a:hover img {
    filter: blur(3px) brightness(0.8);
    transform: scale(1.1);
}

.content-card-shoe a:hover .info-overlay {
    bottom:40%; 
}

#section-card-shoe-v1 .carousell-cards-shoe.owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #d6d6d6 !important;
    display: inline-block;
}

#section-card-shoe-v1 .carousell-cards-shoe.owl-theme .owl-dots .owl-dot.active span {
    background: #007bff !important;
    width: 25px !important;
    border-radius: 10px !important;
}