body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
  
    margin: 0;
    padding: 0;
}
.lugares-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.lugares-container h2 {
    color: #B66532;
    letter-spacing: 2px;
}
.lugares-gallery {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}
.lugares-item {
    position: relative;
    width: 18%;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.lugares-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.lugares-item:hover img {
    transform: scale(1.1);
}
.lugares-item .lugares-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.lugares-item:hover .lugares-description {
    opacity: 1;
}