*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    height: 100vh;
    width: 100%;
}
header{
    background-color: #1B2336;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img{
    height: 70px;
    width: auto;
}

li{
    display: inline-block;
}
li a{
    color: white;
    font-size: 18px;
    font-weight: 440;
    margin-right: 25px;
    text-decoration: none;
}
li a:hover{
    color: #0898f9;
}
button{
    width: auto;
    background-color: #0898f9;
    color: white;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;       
}
button:hover{
    background-color: #F2F2F2;
    color:#1B2336;
    transform: scale(1.05);
}

.banner {
    align-items: center;
    padding: 30px;
}
.banner img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.banner-texto h1 {
    font-size: 48px;
    color: white;
    text-align: center;
    text-shadow:  2px 2px 2px #1a1a1a;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 80%;
    margin: 0 auto;
}
.grid-item {
    height: 150px;
    position: relative;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    transition: all 0.3s ease;
    color: #1a1a1a;
    text-align: justify;
}
.grid-item h3 {
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    text-align: right;
    position: static;
    transform: none;
    color: #0D1C3F;
    margin-bottom: 10px;
}
.grid-item:hover {
    background-color: #1B2336;
    color: white;
    transform: scale(1.05);
}  
.grid-item:hover h3 {
    position: static;
    transform: none;
    color: white;
}
.grid-item:hover .icone {
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.icone {
    width: 52px;
    height: 52px;
    background-color: #1B2336;
    border-radius: 50%;
    position: absolute;
    top: -20px;   
    left: 14px; 
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.ver-mais {
    margin: 10px;
    text-align: right;
    position: static;
    color: #1B2336;
    cursor: pointer;   
}
.grid-item:hover .ver-mais {
    color: white;
    text-decoration: underline;
}

.footer{
    background-color:#1B2336;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}   