*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    min-height:100vh;
    color:#333;

    background:
        linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.45)),
        url("img/background-senha4.webp");

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.topbar{
    width:100%;
    padding:24px 48px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-link{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo{
    display:block;
    width:190px;
    height:auto;
    max-width:100%;
}

.login-btn{
    background:#E50914;
    color:#FFF;
    padding:8px 18px;
    border-radius:4px;
    text-decoration:none;
    font-size:15px;
    font-weight:bold;
}

.login-btn:hover{
    background:#c40710;
}

.main{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:30px 20px;
}

.card{
    width:100%;
    max-width:500px;
    background:#FFF;
    padding:42px 46px;
    border-radius:2px;
    box-shadow:0 2px 18px rgba(0,0,0,.35);
}

.card h1{
    color:#111;
    font-size:32px;
    margin-bottom:22px;
    font-weight:700;
}

.card h2{
    color:#111;
    font-size:24px;
    margin-bottom:18px;
}

.question{
    color:#333;
    font-size:17px;
    margin-bottom:18px;
    text-align:left;
}

.option{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:#111;
    font-size:16px;
}

.radio{
    width:18px;
    height:18px;
    border:2px solid #111;
    border-radius:50%;
    display:inline-block;
    position:relative;
}

.radio::after{
    content:'';
    width:8px;
    height:8px;
    background:#111;
    border-radius:50%;
    position:absolute;
    top:3px;
    left:3px;
}

.info{
    color:#333;
    font-size:16px;
    line-height:1.4;
    margin-bottom:18px;
    text-align:left;
}

label{
    display:block;
    color:#333;
    font-size:15px;
    margin-bottom:6px;
}

input{
    width:100%;
    padding:14px;
    border:1px solid #8c8c8c;
    border-radius:2px;
    background:#FFF;
    color:#111;
    font-size:16px;
    margin-bottom:18px;
}

input:focus{
    outline:none;
    border-color:#0071eb;
}

.turnstile-box{
    margin-bottom:18px;
}

button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:2px;
    background:#0071eb;
    color:#FFF;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

button:hover{
    background:#0065d0;
}

.error-box{
    background:#ffa00a;
    color:#111;
    padding:14px;
    border-radius:2px;
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin-bottom:20px;
    font-size:15px;
    line-height:1.4;
}

.error-box p{
    margin:0;
}

.success,
.success-page{
    color:#111;
    font-size:16px;
    line-height:1.5;
}

.success strong,
.success-page strong{
    display:inline;
    color:#111;
    font-weight:bold;
}

.success-page h1{
    color:#111;
    font-size:32px;
    margin-bottom:18px;
}

.success-page p{
    color:#333;
    font-size:16px;
    line-height:1.55;
    text-align:left;
}

.recaptcha-text{
    width:100%;
    max-width:500px;
    color:#8c8c8c;
    font-size:13px;
    line-height:1.4;
    margin-top:18px;
}

.success-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.success-animation{
    width:260px;
    background:#FFF;
    padding:34px 24px;
    border-radius:6px;
    text-align:center;
    box-shadow:0 0 35px rgba(0,0,0,.8);
    animation:pop .35s ease;
}

.check-circle{
    width:92px;
    height:92px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#E50914;
    color:#FFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:58px;
    font-weight:bold;
    box-shadow:0 0 25px rgba(229,9,20,.45);
    animation:pulse .7s ease;
}

.success-title{
    color:#111;
    font-size:20px;
    font-weight:bold;
    margin-bottom:6px;
}

.success-subtitle{
    color:#555;
    font-size:15px;
}

.site-footer{
    margin-top:70px;
    background:rgba(0,0,0,.72);
    color:#737373;
    padding:44px 0;
    width:100%;
}

.footer-content{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    padding:0 48px;
}

.support{
    color:#b3b3b3;
    font-size:16px;
    margin-bottom:30px;
}

.support a{
    color:#b3b3b3;
    text-decoration:none;
}

.support a:hover{
    text-decoration:underline;
}

.footer-links{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px 32px;
}

.footer-links a{
    color:#737373;
    text-decoration:none;
    font-size:13px;
}

.footer-links a:hover{
    text-decoration:underline;
}

.cookie-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.78);
    display:none;
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:999999;
}

.cookie-card{
    width:100%;
    max-width:980px;
    max-height:92vh;
    background:#FFF;
    border-radius:4px;
    overflow:hidden;
    box-shadow:0 15px 60px rgba(0,0,0,.5);
    display:flex;
    flex-direction:column;
}

.cookie-header{
    display:flex;
    align-items:center;
    gap:22px;
    padding:22px 28px;
    border-bottom:1px solid #e5e5e5;
}

.cookie-header img{
    width:130px;
    height:auto;
}

.cookie-header h2{
    flex:1;
    color:#222;
    font-size:20px;
    line-height:1.25;
    text-align:center;
}

.cookie-header button{
    width:42px;
    height:42px;
    padding:0;
    background:transparent;
    color:#333;
    font-size:34px;
    font-weight:400;
    line-height:1;
    border:none;
}

.cookie-header button:hover{
    background:#f2f2f2;
}

.cookie-body{
    display:flex;
    min-height:430px;
    overflow:auto;
}

.cookie-menu{
    width:300px;
    flex:none;
    background:#f7f7f7;
    border-right:1px solid #ddd;
}

.cookie-tab{
    width:100%;
    border:none;
    border-bottom:1px solid #ddd;
    border-radius:0;
    background:#f7f7f7;
    text-align:left;
    padding:20px;
    color:#333;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

.cookie-tab:hover{
    background:#eee;
}

.cookie-tab.active{
    background:#FFF;
    border-left:5px solid #E50914;
    color:#111;
}

.cookie-content{
    flex:1;
    padding:34px 38px;
    color:#333;
}

.cookie-panel{
    display:none;
}

.cookie-panel.active{
    display:block;
}

.cookie-panel h3{
    color:#222;
    font-size:22px;
    margin-bottom:18px;
}

.cookie-panel p{
    color:#555;
    font-size:15px;
    line-height:1.75;
    text-align:left;
    margin-bottom:24px;
}

.switch-row{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 14px;
    background:#f2f2f2;
    color:#555;
    border-radius:999px;
    font-size:13px;
    font-weight:bold;
}

.switch{
    position:relative;
    display:inline-block;
    width:58px;
    height:32px;
    margin-top:8px;
}

.switch input{
    opacity:0;
    width:0;
    height:0;
    margin:0;
}

.slider{
    position:absolute;
    cursor:pointer;
    inset:0;
    background:#b5b5b5;
    transition:.25s;
    border-radius:999px;
}

.slider:before{
    position:absolute;
    content:'';
    height:24px;
    width:24px;
    left:4px;
    bottom:4px;
    background:#FFF;
    transition:.25s;
    border-radius:50%;
    box-shadow:0 1px 4px rgba(0,0,0,.35);
}

.switch input:checked + .slider{
    background:#E50914;
}

.switch input:checked + .slider:before{
    transform:translateX(26px);
}

.cookie-footer{
    padding:20px 28px;
    border-top:1px solid #ddd;
    display:flex;
    justify-content:flex-end;
    background:#FFF;
}

.cookie-footer button{
    width:auto;
    min-width:220px;
    background:#E50914;
    border-radius:3px;
    font-size:15px;
    padding:13px 22px;
}

.cookie-footer button:hover{
    background:#c40710;
}

@keyframes pop{
    from{
        transform:scale(.75);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes pulse{
    0%{
        transform:scale(.4);
        opacity:0;
    }
    70%{
        transform:scale(1.12);
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}

@media(max-width:900px){
    .footer-links{
        grid-template-columns:repeat(2,1fr);
    }

    .cookie-body{
        flex-direction:column;
        min-height:auto;
    }

    .cookie-menu{
        width:100%;
        border-right:none;
        border-bottom:1px solid #ddd;
    }
}

@media(max-width:600px){
    .topbar{
        padding:18px 20px;
    }

    .logo{
        width:135px;
    }

    .login-btn{
        padding:7px 14px;
        font-size:14px;
    }

    .main{
        padding:20px;
    }

    .card{
        padding:32px 24px;
    }

    .card h1{
        font-size:28px;
    }

    .success-page h1{
        font-size:28px;
    }

    .success-animation{
        width:240px;
    }

    .site-footer{
        margin-top:45px;
        padding:34px 0;
    }

    .footer-content{
        padding:0 24px;
    }

    .footer-links{
        grid-template-columns:1fr;
        gap:14px;
    }

    .support{
        font-size:15px;
    }

    .cookie-modal{
        padding:10px;
        align-items:flex-start;
        overflow:auto;
    }

    .cookie-card{
        max-height:none;
        margin:20px 0;
    }

    .cookie-header{
        padding:18px;
        flex-wrap:wrap;
        gap:12px;
    }

    .cookie-header img{
        width:120px;
    }

    .cookie-header h2{
        order:3;
        width:100%;
        text-align:left;
        font-size:21px;
    }

    .cookie-content{
        padding:24px;
    }

    .cookie-footer{
        padding:18px;
    }

    .cookie-footer button{
        width:100%;
    }
}
