
body {
    font-family: 'Playfair Display', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff;
}

.slider-container {
    position: relative;
    width: 90%; /* Aumentado para aprovechar más espacio en pantalla */
    max-width: 900px; /* Aumentado para más flexibilidad */
}

.slider {
    overflow: hidden;
    background-color: #ffffff;
}

.slide {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: auto;
}

.slide.active {
    display: flex;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info h2 {
    color: #6B402D;
    font-family: 'Playfair Display', serif;
}

.info p {
    color: #000000;
    font-family: 'Playfair Display', serif;
    text-align: justify;
}

.location-button {
    margin-top: 205px;
    background-color: #6B402D;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    width: auto;
    align-self: flex-end; /* Alinea el botón a la derecha */
}

.location-button .icon {
    margin-right: 5px;
}

.thumbnails {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Permite que los thumbnails se envuelvan si es necesario */
    margin-top: 10px;
    width: 100%;
}

.thumbnail {
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.6;
    max-width: 30%; /* Ajustado para mejor adaptación */
    flex: 1 1 auto; /* Permite que los thumbnails crezcan o se reduzcan según sea necesario */
}

.thumbnail:hover {
    opacity: 1;
}
.thumbnail.active {
    opacity: 1 !important;
}

.thumbnail.hidden {
    display: none;
}

.thumbnail:hover {
    opacity: 1;
}


button {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background-color: #ffffff;
    color: #FFB531;
    border: 2px solid #FFB531;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

button.prev {
    left: -50px;
}

button.next {
    right: -50px;
}

button:hover {
    background-color: #FFB531;
    color: #ffffff;
}