/* Estilos gerais */
body {
    display: block;
    width: 100vw;
    height: 100vh;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: rgb(4,0,65);
    background: linear-gradient(180deg, rgba(4,0,65,1) 0%, rgba(249,249,249,1) 100%, rgba(0,212,255,1) 100%);
}

/* Cabeçalho */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline;
    margin: 0 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

/* Seção Hero */
.hero {
    background-image: url('imagem-de-fundo.jpg'); /* Substitua pelo URL da sua imagem */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 50px;
}

/* Outras seções */
section {
    padding: 50px;
    text-align: center;
}


