/* =========================================
   OVERLAY
========================================= */

#lep-overlay{
    position:fixed;
    inset:0;
    background:rgba(20,30,40,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
    padding:15px;
    box-sizing:border-box;
    backdrop-filter:blur(3px);
}

/* =========================================
   POPUP
========================================= */

#lep-popup{
    position:relative;
    width:92%;
    max-width:520px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.30);
    animation:lepShow .35s ease;
}

body,
#lep-popup,
#lep-popup *{
    font-family:'Inter',sans-serif;
}

/* =========================================
   CONTEÚDO
========================================= */

.lep-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:45px;

    background:url(background.png) center center no-repeat;
    background-size:cover;
}

/* =========================================
   SINO
========================================= */

.lep-bell{
    display:block;
    width:72px;
    height:auto;
    margin:0 auto 18px;
}

/* =========================================
   BOTÃO FECHAR
========================================= */

/* =========================================
   OVERLAY
========================================= */

#lep-overlay{
    position:fixed;
    inset:0;
    background:rgba(20,30,40,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
    padding:15px;
    box-sizing:border-box;
    backdrop-filter:blur(3px);
}

/* =========================================
   POPUP
========================================= */

#lep-popup{
    position:relative;
    width:92%;
    max-width:520px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.30);
    animation:lepShow .35s ease;
}

body,
#lep-popup,
#lep-popup *{
    font-family:'Inter',sans-serif;
}

/* =========================================
   CONTEÚDO
========================================= */

.lep-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:45px;

    background:url(background.png) center center no-repeat;
    background-size:cover;
}

/* =========================================
   SINO
========================================= */

.lep-bell{
    display:block;
    width:72px;
    height:auto;
    margin:0 auto 18px;
}

/* =========================================
   BOTÃO FECHAR
========================================= */

#lep-close{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid #bfc5cb;
    border-radius:50%;

    background:#ffffff;
    color:#4b5563;

    font-size:24px;
    font-weight:700;
    line-height:1;

    cursor:pointer;

    box-shadow:0 3px 10px rgba(0,0,0,.15);

    transition:.25s;
}

#lep-close:hover{
    background:#FD9400;
    border-color:#FD9400;
    color:#fff;
}

/* =========================================
   TÍTULO
========================================= */

#lep-popup h2{
    margin:0 0 15px;
    font-size:32px;
    line-height:1.2;
    color:#1A2534;
    font-weight:700;
    text-align:center;
}

/* =========================================
   TEXTO
========================================= */

#lep-popup p{
    width:100%;
    max-width:330px;
    margin:0 auto 28px;
    font-size:17px;
    line-height:1.65;
    color:#555;
    text-align:center;
}

/* =========================================
   FORMULÁRIO
========================================= */

#lep-form{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}

#lep-popup input[type=email]{
    width:100%;
    max-width:420px;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    box-sizing:border-box;
    margin-bottom:18px;
    transition:.2s;
}

#lep-popup input[type=email]:focus{
    outline:none;
    border-color:#FD9400;
    box-shadow:0 0 0 4px rgba(253,148,0,.15);
}

/* =========================================
   BOTÃO
========================================= */

#lep-popup button[type=submit]{
    width:100%;
    max-width:420px;
    padding:17px;
    border:0;
    border-radius:10px;
    background:#FD9400;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

#lep-popup button[type=submit]:hover{
    background:#e68400;
    transform:translateY(-1px);
}

/* =========================================
   MENSAGEM
========================================= */

#lep-msg{
    margin-top:18px;
    text-align:center;
    font-size:15px;
    font-weight:600;
    color:#1A2534;
}

/* =========================================
   ANIMAÇÃO
========================================= */

@keyframes lepShow{

    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width:768px){

    .lep-content{
        padding:34px 28px;
    }

    #lep-popup h2{
        font-size:28px;
    }

}

/* =========================================
   CELULAR
========================================= */

@media (max-width:480px){

    #lep-popup{
        width:95%;
        border-radius:16px;
    }

    .lep-content{
        padding:24px 18px;
    }

    .lep-bell{
        width:64px;
        margin-bottom:16px;
    }

    #lep-popup h2{
        font-size:24px;
        line-height:1.25;
        margin-bottom:12px;
    }

    #lep-popup p{
        max-width:260px;
        font-size:15px;
        line-height:1.55;
        margin-bottom:22px;
    }

    #lep-popup input[type=email]{
        padding:15px;
        font-size:15px;
    }

    #lep-popup button[type=submit]{
        padding:15px;
        font-size:15px;
    }

}
/* =========================================
   TÍTULO
========================================= */

#lep-popup h2{
    margin:0 0 15px;
    font-size:32px;
    line-height:1.2;
    color:#1A2534;
    font-weight:700;
    text-align:center;
}

/* =========================================
   TEXTO
========================================= */

#lep-popup p{
    width:100%;
    max-width:330px;
    margin:0 auto 28px;
    font-size:17px;
    line-height:1.65;
    color:#555;
    text-align:center;
}

/* =========================================
   FORMULÁRIO
========================================= */

#lep-form{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}

#lep-popup input[type=email]{
    width:100%;
    max-width:420px;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    box-sizing:border-box;
    margin-bottom:18px;
    transition:.2s;
}

#lep-popup input[type=email]:focus{
    outline:none;
    border-color:#FD9400;
    box-shadow:0 0 0 4px rgba(253,148,0,.15);
}

/* =========================================
   BOTÃO
========================================= */

#lep-popup button[type=submit]{
    width:100%;
    max-width:420px;
    padding:17px;
    border:0;
    border-radius:10px;
    background:#FD9400;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

#lep-popup button[type=submit]:hover{
    background:#e68400;
    transform:translateY(-1px);
}

/* =========================================
   MENSAGEM
========================================= */

#lep-msg{
    margin-top:18px;
    text-align:center;
    font-size:15px;
    font-weight:600;
    color:#1A2534;
}

/* =========================================
   ANIMAÇÃO
========================================= */

@keyframes lepShow{

    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width:768px){

    .lep-content{
        padding:34px 28px;
    }

    #lep-popup h2{
        font-size:28px;
    }

}

/* =========================================
   CELULAR
========================================= */

@media (max-width:480px){

    #lep-popup{
        width:95%;
        border-radius:16px;
    }

    .lep-content{
        padding:24px 18px;
    }

    .lep-bell{
        width:64px;
        margin-bottom:16px;
    }

    #lep-popup h2{
        font-size:24px;
        line-height:1.25;
        margin-bottom:12px;
    }

    #lep-popup p{
        max-width:260px;
        font-size:15px;
        line-height:1.55;
        margin-bottom:22px;
    }

    #lep-popup input[type=email]{
        padding:15px;
        font-size:15px;
    }

    #lep-popup button[type=submit]{
        padding:15px;
        font-size:15px;
    }

}