/* Estilos del pop-up */
.popup {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    transform: translate(auto%,-50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    overflow: auto;
}

.popup-content {
    background-color: #201E14;
    width: 30%;
    margin: 100px auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

#closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 20px; /* Aumenta el tamaño del botón de cerrar */
    font-size: 24px; /* Aumenta el tamaño del icono de cerrar */
}


#popupImage {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.img-2 {
    width: 100%;
    height: auto;
}

.popup-content img.img-2 {
    width: 100%;
    height: auto;
}

/* Reglas de medios para hacer los estilos responsivos */
@media screen and (max-width: 768px) {
    .popup-content {
        width: 70%;
    }

    #closePopup {
        padding: 30px;
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .popup-content {
        width: 90%;
    }

    #closePopup {
        padding: 40px;
        font-size: 32px;
    }
}


/*botones del pop*/

.button-container-2 {
    display: flex;
    gap: 10px;
}

.btn-2 {
    padding: 10px 20px;
    font-weight:900;

    font-size: 16px;
    color: white;
    background-color: #6dc234;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-3{
padding: 10px 20px;
font-weight:900;
font-size:16px;
  color: white;
background:#6dc234;
  border: none;
  border-radius:5px;
   cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-2:hover {
    background-color:#6dc234;
        color: black; 

}
.btn-3:hover {
    background-color: #6dc234;
    color: black; 

    
}