*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

#google_translate_element{
    display: flex;
    justify-content: center;
}

.galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px;
}

.card{
    width: 80%;
    margin: 20px auto;
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
    
}

.card img{
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

/* CONTENEDOR GENERAL (equivale a .galeria) */
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

/* MARCO DE LA IMAGEN (equivale a .img-container) */
.carousel-track {
    width: 450px;              /* mismo tamaño */
    aspect-ratio: 4 / 3;       /* misma proporción */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* IMÁGENES (equivale a .img-obra) */
.slide {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
}

/* Imagen activa */
.slide.active {
    display: block;
}

/* BOTONES */
.prev, .next {
    background-color: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0,0,0,0.8);
}



.buttons{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons img{
    width: 50px;
    height: 50px;
}