/* ===========================
   PÁGINA INICIAL
=========================== */

.container{

    width:1200px;
    max-width:95%;
    margin:40px auto;
    display:flex;
    gap:50px;
    align-items:center;

}

.lado-esquerdo{

    flex:1;

}

.lado-direito{

    flex:1;
    display:flex;
    flex-direction:column;
    gap:30px;

}

.lado-esquerdo h1{

    font-size:38px;
    color:#1E3A8A;
    margin-bottom:20px;

}

.descricao{

    font-size:18px;
    line-height:1.7;
    color:#555;
    margin-bottom:35px;

}

.lado-esquerdo h3{

    color:#1E3A8A;
    margin-bottom:20px;

}

.lista{

    list-style:none;
    padding:0;

}

.lista li{

    margin-bottom:15px;
    color:#444;
    font-size:17px;

}

.lista li::before{

    content:"✔";
    color:#4ADE80;
    font-weight:bold;
    margin-right:10px;

}

.versao{

    margin-top:40px;
    display:inline-block;
    background:#E8EEFF;
    color:#1E3A8A;
    padding:10px 20px;
    border-radius:30px;
    font-weight:bold;

}

.card-menu{

    background:white;
    border-radius:15px;
    padding:35px;
    text-decoration:none;
    color:#333;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.30s;

}

.card-menu:hover{

    transform:translateY(-5px);
    box-shadow:0 12px 35px rgba(0,0,0,.15);

}

.card-menu i{

    font-size:45px;
    color:#1E3A8A;
    margin-bottom:20px;

}

.card-menu h2{

    color:#1E3A8A;
    margin-bottom:15px;
    font-size:28px;

}

.card-menu p{

    color:#666;
    line-height:1.6;

}


/*

body{

    background:#eef2f7;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;

}

.container{

    width:1100px;
    max-width:95%;
    background:white;
    display:flex;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.esquerda{

    width:55%;
    background:#1E3A8A;
    color:white;
    padding:60px;

}

.esquerda h1{

    font-size:40px;
    margin-bottom:25px;

}

.esquerda h2{

    font-size:22px;
    margin-bottom:20px;

}

.esquerda p{

    line-height:28px;
    text-align:justify;

}

.lista{
    list-style:none;
    padding:0;
    margin-top:35px;
}

.lista li{
    margin-bottom:12px;
    font-size:16px;
}

.lista li::before{
    content:"✔";
    color:#4ADE80;
    font-weight:bold;
    margin-right:10px;
}

.direita{

    width:45%;
    padding:60px;

}

.direita h2{

    color:#1E3A8A;
    margin-bottom:25px;

}

input{

    width:100%;
    padding:14px;
    margin-bottom:20px;
    border:1px solid #CCC;
    border-radius:6px;
    font-size:16px;

}

button{

    width:100%;
    padding:15px;
    border:none;
    border-radius:6px;
    background:#1E3A8A;
    color:white;
    cursor:pointer;
    font-size:16px;

}

button:hover{

    background:#163172;

}

.cadastro{

    margin-top:25px;
    text-align:center;

}

.cadastro a{

    text-decoration:none;
    color:#1E3A8A;
    font-weight:bold;

}

footer{

    margin-top:40px;
    text-align:center;
    color:#777;
    font-size:14px;

}*/