.popup-container{
    content: "";
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    top: -100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-container.active{
    top: 0;
}
.popup-container .popup-dark{
    background: #292929;
    opacity: .8;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.popup{
    width: 100%; /* ajusta el ancho según tus necesidades */
    max-width: 383px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 16px 24px 24px 24px;
    position: relative;
    z-index: 9999;
    border-radius: 10px;

}
@media (max-width: 500px){
     .popup{
        max-width: 254px;
    }

}
.popup .popup-content .popup-content-title{
    font-family: Tinos;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
    color: #36747E;
}
.popup .popup-content .popup-content-title p, .popup .popup-content .popup-content-title h2, .popup .popup-content .popup-content-title h3, .popup .popup-content .popup-content-title h4{
    margin: 0;
    margin-bottom: 12px;

}
.popup .popup-content .popup-content-title .line{
    width: 50px;
    height: 1px;
    background: #36747E;
}
.popup .popup-content .popup-content-description .text p{
    font-family: "The Sans Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    color: #6F7276;
}
.popup-close{
    position: relative;
    z-index: 99999;
    top: -192px;
    left: 12px;
    cursor: pointer;
}
@media (max-width: 500px){
    .popup-close{
        top: -271px;

    }
}
.popup .formulario input[type="email"]{
    width: 100%;
    padding: 8px;
    border-radius: 2px;
    border: 1px solid #B3B3B3;
    background: #FAFAFA;
    font-family: "The Sans Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; /* 150% */
    margin-bottom: 12px;
}
.popup .formulario input[type="email"]::placeholder{
    font-family: "The Sans Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; /* 150% */
}
.popup .formulario .check-box{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.popup .formulario .check-box label{
    font-family: "The Sans Light";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.popup .formulario .check-box label a{
    color: #6f7276;
}
.popup .formulario input[type="checkbox"]{
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 2px;
    border: 1px solid #D0D0D0;
    background: #FAFAFA;
    -webkit-appearance: auto;
}
.popup .formulario input[type="submit"]{
    border-radius: 2px;
    background: #36747E;
    padding: 12px 24px;
    text-align: center;
    color: #FFF;
    font-family: Tahoma;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 13.2px */
    letter-spacing: 0.48px;
    text-transform: uppercase;
    border: none;
    margin-top: 5px;
    cursor: pointer;
    -webkit-appearance: auto;
    
}