*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    color:#111;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/*==========================
        HEADER
==========================*/

.top{
    height:48px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 18px;
    border-bottom:1px solid #ececec;
}

.logo img{
    height:28px;
}

.secure{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
}

.secure img{
    width:18px;
}

/*==========================
        MAIN
==========================*/

main{
    width:100%;
}

/*==========================
        TITULO
==========================*/

.title{
    width:90%;
    max-width:1350px;
    margin:45px auto 0;
    font-size:30px;
    font-weight:400;
    line-height:1.2;
    text-align:center;
}

/*==========================
        BANNER
==========================*/

.banner{
    width:90%;
    max-width:1350px;
    margin:40px auto 0;
    background:#fff;
    border-radius:5px;
    overflow:hidden;
    box-shadow:0 1px 4px rgba(0,0,0,.12);
}

.banner img{
    width:100%;
    display:block;
}

/*==========================
        BARRA NEGRA
==========================*/

.bar{
    background:#111;
    color:#fff;
    display:flex;
    justify-content:center;      /* centra todo */
    align-items:center;
    gap:18px;
    padding:18px 20px;
}

.check{
    flex:0 0 auto;
}

.check img{
    width:38px;
    display:block;
}

.bar-text{
    text-align:center;
    font-size:18px;
    line-height:1.4;
}

.bar-text a{
    color:#00a8e8;
    font-weight:600;
    text-decoration:underline;
    margin-left:4px;
}

/*==========================
        CARD
==========================*/

.card{
    width:95%;
    max-width:1350px;
    margin:42px auto 30px;
    background:#fff;
    border-radius:6px;
    padding:50px 0 60px;
    box-shadow:0 1px 4px rgba(0,0,0,.08);
}

.form{
    width:85%;
    max-width:380px;
    margin:auto;
}

label{
    display:block;
    margin-bottom:10px;
    font-size:16px;
}

input{
    width:100%;
    height:44px;
    border:1px solid #c7c7c7;
    border-radius:5px;
    padding:0 14px;
    font-size:16px;
}

.form p{
    margin-top:12px;
    font-size:14px;
}

button{
    width:100%;
    height:46px;
    margin-top:20px;
    border:none;
    border-radius:5px;
    background:#b6bece;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:not-allowed;
}

button.active{
    background:#00144d;
    cursor:pointer;
}

/*==========================
        FAQ
==========================*/

.faq{
    width:95%;
    max-width:1450px;
    margin:20px auto 70px;
}

.faq h2{
    text-align:center;
    font-size:30px;
    font-weight:400;
    margin-bottom:30px;
}

.faq-item{
    background:#fff;
    border-radius:15px;
    box-shadow:0 1px 4px rgba(0,0,0,.12);
    margin-bottom:14px;
    padding:0 24px;
    cursor:pointer;
}

.faq-title{
    height:62px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:16px;
}

.arrow img{
    width:18px;
    transition:.3s;
}

.faq-item.active .arrow img{
    transform:rotate(180deg);
}

.faq-content{
    max-height:0;
    overflow:hidden;
    transition:.35s;
    font-size:15px;
    line-height:1.6;
}

.faq-item.active .faq-content{
    max-height:900px;
    padding:20px 0;
}

/*==========================
        FOOTER
==========================*/

footer{
    margin-top:auto;
    height:64px;
    background:#111;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
    font-size:14px;
}

.footer-copy{
    color:#ccc;
}

/*==========================
      RECAPTCHA
==========================*/

.captcha{
    position:fixed;
    right:18px;
    bottom:18px;
    width:70px;
    height:60px;
    display:flex;
    overflow:hidden;
    border-radius:4px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.25);
    transition:.25s;
}

.captcha-logo{
    width:70px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.captcha-logo img{
    width:34px;
}

.captcha-tooltip{
    width:0;
    overflow:hidden;
    white-space:nowrap;
    background:#1a73e8;
    color:#fff;
    display:flex;
    align-items:center;
    transition:.25s;
}

.captcha:hover{
    width:290px;
}

.captcha:hover .captcha-tooltip{
    width:220px;
    padding:0 18px;
}

/*==========================
        DESKTOP
==========================*/

@media (min-width:1000px){

.top{
    padding:0 380px;
}

footer{
    padding:0 380px;
}

.form{
    max-width:420px;
}

}

/*==========================
        MOVIL
==========================*/

@media (max-width:768px){

.title{
    font-size:26px;
    margin-top:28px;
    text-align:left;
}

.banner{
    width:92%;
}

.card{
    width:92%;
    padding:35px 0 45px;
}

.form{
    width:86%;
}

.bar{
    font-size:14px;
    padding:12px;
}

.faq{
    width:92%;
}

.faq h2{
    font-size:24px;
}

}