*{
    box-sizing:border-box;
}

/* BODY SIMPLES — SEM BACKGROUND */

body{
    margin:0;
    font-family:'Poppins', sans-serif;
    background:#f5f7fa;
    font-size:18px;
    line-height:1.7;
    color:#2c3e50;
}

/* BACKGROUND + PARALLAX */

.bg-parallax{
    min-height:100vh;
    background:
        linear-gradient(rgba(245,247,250,.92), rgba(245,247,250,.92)),
        url('../img/background.jpg') center center no-repeat;
    background-size:cover;
    background-attachment:fixed;
}

/* HEADER */

header{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:22px 15px 15px;
    background:#ffffff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.logo{
    max-height:140px;
}

/* BANNERS */

.banner-container{
    display:flex;
    justify-content:center;
    margin:30px 0;
    padding:0 12px;
}

.slider{
    width:100%;
    max-width:1100px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.slide{
    width:100%;
    display:none;
}

.slide.active{
    display:block;
}

/* CONTEÚDO */

.conteudo{
    max-width:960px;
    margin:45px auto;
    background:#ffffff;
    padding:45px 40px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.conteudo h2{
    margin:0 0 18px;
    font-size:30px;
    font-weight:600;
    color:#0a3d62;
}

.conteudo p{
    font-size:18px;
    margin-bottom:25px;
}

.conteudo ul{
    padding-left:20px;
    margin-top:10px;
}

.conteudo ul li{
    font-size:18px;
    line-height:2;
}

/* FAIXA */

.faixa{
    background:linear-gradient(135deg,#0a3d62,#1e6091);
    color:white;
    text-align:center;
    padding:55px 20px;
}

.faixa h2{
    font-size:34px;
    font-weight:600;
    margin:0 0 22px;
}

.faixa button{
    padding:14px 38px;
    font-size:18px;
    border:none;
    border-radius:35px;
    background:#feca57;
    color:#2c2c2c;
    cursor:pointer;
    font-weight:500;
    transition:.3s;
}

.faixa button:hover{
    transform:scale(1.05);
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

/* FOOTER */

footer{
    text-align:center;
    padding:35px 15px 40px;
    background:#ffffff;
}

footer img{
    max-height:85px;
}

footer .slogan{
    margin-top:15px;
    font-size:20px;
    font-weight:500;
    color:#0a3d62;
}

footer .direitos{
    margin-top:6px;
    font-size:14px;
    color:#777;
}

/* MODAL */

.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:15px;
}

.modal-content{
    background:#ffffff;
    padding:32px 28px;
    width:100%;
    max-width:420px;
    border-radius:20px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.3);
    animation:modalFade .35s ease;
}

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

.modal-content h2{
    margin:0 0 20px;
    font-size:26px;
    text-align:center;
    color:#0a3d62;
}

.modal-content input{
    width:100%;
    padding:13px 14px;
    margin-bottom:12px;
    border-radius:10px;
    border:1px solid #ccc;
    font-size:16px;
}

.modal-content input:focus{
    outline:none;
    border-color:#0a3d62;
    box-shadow:0 0 0 2px rgba(10,61,98,.15);
}

.modal-content button{
    width:100%;
    padding:14px;
    background:#0a3d62;
    color:white;
    border:none;
    border-radius:10px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.modal-content button:hover{
    background:#07416b;
    transform:translateY(-1px);
}

.close{
    position:absolute;
    right:18px;
    top:12px;
    font-size:28px;
    cursor:pointer;
    color:#666;
    transition:.3s;
}

.close:hover{
    color:#0a3d62;
}

/* RESPONSIVO */

@media (max-width:768px){

    body{
        font-size:16px;
    }

    .logo{
        max-height:105px;
    }

    .conteudo{
        margin:30px 12px;
        padding:30px 22px;
    }

    .conteudo h2{
        font-size:24px;
    }

    .faixa h2{
        font-size:26px;
    }

    footer img{
        max-height:70px;
    }

}

@media (max-width:480px){

    .logo{
        max-height:90px;
    }

    .faixa button{
        width:100%;
        max-width:280px;
    }

}