
body{
    margin:0;
    font-family:Arial,sans-serif;
    background:linear-gradient(to bottom,#0b4ea2,#6ec1ff);
    color:white;
}

header{
    background:rgba(0,0,0,0.4);
    text-align:center;
    padding:20px;
}

header img{
    width:180px;
}

.logo-text{
    font-size:38px;
    font-weight:bold;
}

.slogan{
    font-size:18px;
}

nav{
    display:flex;
    justify-content:center;
    gap:30px;
    background:#083b7a;
    padding:15px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.hero{
    background-image:url('../imagens/backgrounds/banner_home.png');
    background-size:cover;
    background-position:center;
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero h1{
    background:rgba(0,0,0,0.5);
    padding:20px;
    border-radius:15px;
}

.container{
    padding:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,0.15);
    border-radius:15px;
    padding:20px;
    text-align:center;
}

.card img{
    width:100%;
    border-radius:10px;
}

.historia-img{
    width:100%;
    border-radius:15px;
}

form{
    display:flex;
    flex-direction:column;
    max-width:450px;
    gap:15px;
}

input, textarea{
    padding:12px;
    border:none;
    border-radius:8px;
}

button{
    padding:12px;
    border:none;
    border-radius:8px;
    background:#083b7a;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

footer{
    text-align:center;
    padding:20px;
    background:rgba(0,0,0,0.3);
    margin-top:40px;
}
