﻿.main-pop-up {
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    top: 0;
    position: fixed;
    background-color: rgb(0,0,0);
    background-color: rgb(0 0 0 / 61%);
    z-index:99999;
}

.container-pop-up {
    width: 840px;
    height: 655px;
    background: #FFF;
    border-radius: 16px;
    padding:40px 50px;
    position:relative;
}

.phone-img{
    position: absolute;
    right: -70px;
    bottom: 0;
    border-radius:16px;
}

    .container-pop-up .pop-up-header {
        display:flex;
        justify-content:space-between;

    }

.left-side-header {
    display:flex;
    gap:10px;
}

.text-header h2 {
    color: #212529;
    font-family: Poppins;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.text-header h4 {
    color: #212529;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height:1;
}

.close-btn-popup {
    display: flex;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
    gap: 5px;
    color: #9B9B9B;
    font-family: "Poppins";
    cursor:pointer;
}

.pop-up-content {
    width: 400px;
}

.pop-up-content p {
    font-size:24px;
    font-family:"Poppins";
    font-weight:500;
    margin:40px 0;
}

    .pop-up-content p mark {
        background-color: transparent;
        font-weight: 600;
        color: #1F3156;
        padding:0;
    }

    .pop-up-content span {
        background-color: #1F3156;
        padding: 10px 45px;
        text-align: center;
        gap: 10px;
        font-size: 30px;
        border-radius: 80px;
        font-weight: 500;
        color: #FFF;
        font-family: "Poppins";
    }

    .pop-up-content span small {
        font-family: "Poppins";
        font-size:24px;
    }

.aviso-text-popup {
    font-style: italic;
    color: #212529;
    font-family: Poppins;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4rem;
    position: relative;
    z-index: 2;
    background: #FFF;
    top: 60px;
}



@media screen and (max-device-width: 480px) and (orientation:portrait) {
    .container-pop-up{
        width:420px;
        height:512px;
        padding:40px;
    }

    .container-pop-up .pop-up-header {
        justify-content: center;
    }

    .left-side-header{
        align-items:center;
    }

    .text-header h2 {
        font-size: 24px;
    }

    .text-header h4 {
        font-size: 18px;
    }

    .pop-up-content {
        width: 100%;
        text-align: center;
    }

    .phone-img {
        display: none;
    }


    .pop-up-content p {
        font-size: 18px;
    }

    .aviso-text-popup {
        top:0;
        display:inline-block;
        width:100%;
        text-align:center;
    }

}

@media screen and (min-width: 481px) and (max-width: 780px) {
    .container-pop-up {
        width: 420px;
        height: 512px;
        padding: 40px;
    }

        .container-pop-up .pop-up-header {
            justify-content: center;
        }

    .left-side-header {
        align-items: center;
    }

    .text-header h2 {
        font-size: 24px;
    }

    .text-header h4 {
        font-size: 18px;
    }

    .pop-up-content {
        width: 100%;
        text-align: center;
    }

    .phone-img {
        display: none;
    }


    .pop-up-content p {
        font-size: 18px;
    }

    .aviso-text-popup {
        top: 0;
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}

@media screen and (min-width: 781px) and (max-width: 980px){
    .container-pop-up {
        width: 700px;
        padding: 40px;
    }

    .aviso-text-popup {
        top: 40px;
        display: inline-block;
        width: 60%;
        text-align: center;
    }
}