/* CSS DEL POPUP */
#form-thanks-popup {
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999999 !important;
    justify-content: center; align-items: center;
}
.popup-box {
    background: linear-gradient(135deg, #7014cc 0%, #3558c4 40%, #00b4d8 100%);
    width: 750px;
    max-width: 95%;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
}
.close-btn {
    position: absolute;
    top: 15px; right: 25px;
    font-size: 32px;
    color: #002b44;
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}
.close-btn:hover { color: white; }
.popup-body {
    display: flex;
    align-items: stretch;
}
.popup-left {
    width: 45%;
    border-radius: 0 150px 80px 0; 
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 40px;
    z-index: 99999;
}
.popup-left img {
    width: 90%;
    display: block;
    border-bottom-left-radius: 30px;
}
.popup-right {
    padding: 45px 30px 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup-right h2 {
    color: #FFF;
    font-family: 'Ubuntu', sans-serif;
    font-size: 40px;
    font-style: normal;
    line-height: 53px;
    margin-bottom: 25px;
    margin-top: 0;
    margin-left: -60px;
    text-align: center;
}
.text-bold { font-weight: 700; }
.text-regular { font-weight: 400; }
.mensaje-pill {
    background: white;
    color: #0b3d60;
    padding: 15px 49px 15px 90px;
    border-radius: 0px 50px 50px 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    margin-left: -95px;
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.popup-footer {
    color: #FFF;
    padding: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.timer-text {
    color: #001f3f;
    font-weight: 700;
}
@media (max-width: 768px) {
    .popup-body { flex-direction: column; }
    .popup-left { width: 100%; border-radius: 0 0 60px 60px; padding-top: 20px; z-index: 1;}
    .popup-right { width: 100%; padding: 30px 20px; z-index: 2; }
    .popup-right h2 { font-size: 30px; line-height: 40px; margin-left: 0; }
    .mensaje-pill { width: 90%; margin-left: 0; font-size: 22px; border-radius: 50px; padding: 15px; }
    .popup-footer { font-size: 22px; }
}