/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f9;
    text-align: center;
}

.carousel-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

p {
    color: #666;
    margin-bottom: 20px;
}

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
}

button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-dots {
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    display: inline-block;
    background: gray;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: black;
} */

.img-exito {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.3s ease;
  }

  .img-exito:hover {
    opacity: 1;
  }

  

.btn-gallery{
    margin-top: 15px;
    margin-bottom: 0px;
    z-index: 99999;
}