/* RESET BÁSICO */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* HEADER / NAV */
header {
  background: #0b3c5d;
  padding: 20px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
}

/* SEÇÕES */
.section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  color: #0b3c5d;
}

/* SERVIÇOS */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-box,
.service {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  background: #fff;
}

.service {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.service img,
.contact-box img {
  max-width: 320px;
  width: 100%;
  border-radius: 6px;
}

/* CONTATO */
.contact-box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

/* FOOTER */
footer {
  background: #f4f4f4;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}

/* RESPONSIVO */
@media (max-width: 700px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* PADRONIZAÇÃO DE TIPOGRAFIA */
h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

p,
li {
  font-size: 18px;
}

@media (max-width: 700px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p,
  li {
    font-size: 16px;
  }
}

/* FORMULÁRIO DE CONTATO */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

form button {
  background: #0b3c5d;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

form button:hover {
  background: #094060;
}
