/* Reset e estilo base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background-color: #1d3557;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header {
  background-color: #1d3557;
  color: #fff;
  padding: 20px 0;
  text-align: center;
} <-- aqui termina o estilo do header (linha 21)

header .logo {
  font-size: 2em;
  font-weight: bold;
}
 .logo {
  font-size: 2em;
  font-weight: bold;
}

nav ul {
  list-style: none;
  margin-top: 10px;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #f1faee;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #a8dadc;
}

/* Hero */
.hero {
    background-image: url('img/escritorio.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* ou ajuste conforme sua preferência */
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
{
  background-color: #457b9d;
  color: white;
  padding: 60px 20px;
}
.logo {
  max-height: 100px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero .botao {
  background-color: #f1faee;
  color: #1d3557;
  padding: 12px 24px;
  margin-top: 20px;
  display: inline-block;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero .botao:hover {
  background-color: #a8dadc;
}

/* Seções */
section {
  padding: 40px 20px;
  text-align: center;
}

section#servicos ul {
  padding: 0;
  list-style: none;
}

section#servicos li {
  padding: 8px 0;
}

/* Rodapé */
footer {
  background-color: #1d3557;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}
/* Portfolio */
section#portfolio {
  padding: 40px 20px;
  background-color: #e9f5ff;
  text-align: center;
}

section#portfolio h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #1d3557;
}

section#portfolio p {
  font-size: 1em;
  color: #333;
}
/* Estilo da seção hero que ocupa toda a altura da tela */
.hero {
  background-color: #457b9d;  /* azul do meio */
  color: white;
  padding: 60px 20px;
  min-height: 100vh;  /* ocupa 100% da altura da janela */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e3359;
    padding: 20px 0;
}

.logo-container img {
    width: 300px;  /* você pode ajustar entre 350px–500px conforme achar melhor */
    height: auto;
}
.form-section {
  padding: 40px;
  background-color: #f4f4f4;
  text-align: center;
}

.form-section h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #1e3359;
}

.form-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-section button {
  background-color: #1e3359;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#formulario {
  margin: 0;
  padding: 0;
}

body, header, section {
  margin: 0;
  padding: 0;
}

nav ul {
  margin: 0;
  padding: 0;
}
