/* style.css */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
}

header {
  background-color: #ffffff;
  color: #000000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 5px solid #000000;
}

.logo img {
  max-height: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#logoTexto {
  font-family: codec pro;
  font-size: 50px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 5px solid #000000;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #e6b800;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/src/imagens/Logo\ GamaNeves.jpg") center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: start;
  justify-content: right;
  text-align: center;
  color: #ffffff;
  background-color: #e6b800;
}

.hero-texto p {
  font-family: Libre Baskerville;
  padding: 20px 40px;
  font-size: 1.5rem;
  margin-bottom: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.hero-image {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.hero-image img {
  width: 70px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 30%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-image img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 184, 0, 0.7);
}

#hero-image a {
  justify-content: center;
  align-items: center;
}

.atuacao,
.sobre,
.contato {
  padding: 60px 20px;
  text-align: center;
}

.atuacao h2,
.sobre h2,
.contato h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: left;
}

.card h3 {
  margin-bottom: 15px;
  color: #e6b800;
}

.contato form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button[type="submit"] {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

button[type="submit"]:hover {
  background-color: #333;
}

footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
