/* Corpo da página */
body {
    background-color: black;
    font-family: Arial, sans-serif;
    color: antiquewhite;
    margin: 0;
    padding: 0;
}

section {
    padding: 50px;
}
/* Estilo do header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Centraliza os itens no eixo horizontal */
    align-items: center;
    background: rgba(0, 0, 0, 0.7); /* Fundo semi-transparente */
    color: white;
    padding: 10px 20px;
    z-index: 10; /* Garantir que o header fique acima da imagem */
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    position: absolute;
    left: 20px; /* Fixa o título no lado esquerdo */
}

#burguer {
    display: none; /* Escondido em telas grandes */
    font-size: 2rem;
    background: none;
    border: none;
    color: #f3e6e7;
    cursor: pointer;
}

/* Estilo do menu */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Centraliza os itens no menu */
}

nav ul li {
    margin: 0 15px; /* Espaçamento entre os itens */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero: Seção com imagem de fundo */
.hero {
    background-image: url('imagem-da-cidade.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero button {
    background-color: #e7e7e7;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
}

.hero button:hover {
    background-color: #ccc;
}

/* Footer */
footer {
    text-decoration: double;
    color: antiquewhite;
    text-align: center;
    padding: 20px;
    background-color: black;
}

span {
    margin: auto;
    display: flex;
    justify-content: center;
  }

  div#cinquenta {
    width: 50%;
    float: left;
}
div#cinquentaright {
    width: 50%;
    float: right;
}
div#setentaleft {
    width: 64%;
    float: left;
}
div#trintaright {
    width: 32%;
    float: right;
}
div#setentaright {
    width: 64%;
    float: right;
}
div#trintaleft {
    width: 32%;
    float: left;
}
h1, h2, h3, p {
    text-align: center;
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
}