* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #f2eed8;
}

.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: #7e6b47;
  padding: 1.5rem;
  z-index: 100;
}

.menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1rem;
}

.menu-link {
  font: 500 18px sans-serif;
  text-decoration: none;
  color: #e9e5cc;
  position: relative;
  padding-bottom: 2px;
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #e9e5cc;
  transition: width 0.3s ease;
}

.menu-link:hover::after {
  width: 100%;
}

.header {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-photo {
  width: 280px;
  margin-top: 67px;
  border: 2px solid #7e6b47;
  border-radius: 50%;
  box-shadow: 0 0 20px #7e6b47;
  animation: flutuar 6s ease-in-out infinite;
}

h1 {
  margin: 40px 0 20px;
  color: #7e6b47;
  font-weight: 900;
}

p {
  margin-bottom: 20px;
  font-weight: 600;
}

.salon-photos {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.salon-photos img {
  width: 230px;
  border-radius: 8px;
  object-fit: cover;
}

h2 {
  font-size: 35px;
  margin: 180px 0 50px;
  text-align: center;
  color: #7e6b47;
  font-weight: 900;
}

.equipe,
.listas-servicos {
  display: flex;
  justify-content: center;
  gap: 10%;
  flex-wrap: wrap;
  margin-top: 40px;
  text-align: center;
}

.equipe div {
  max-width: 500px;
}

.equipe img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin: 0 auto 4px;
  display: block;
}

.equipe h2,
.equipe h3 {
  margin: 8px 0 5px;
}

.listas-servicos ul {
  padding: 0;
  list-style: none;
  text-align: left;  
}

.listas-servicos li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font: 600 23px sans-serif;
}

.listas-servicos li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #7e6b47;
  border-radius: 50%;
}

.location {
  text-align: center;
  padding: 40px 20px;
}

.location iframe {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: 2px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

h3 {
  font-size: 28px;
  margin-top: 50px;
  color: #7e6b47;
}

.transport-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.transport-button {
  text-align: center;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.transport-button img {
  width: 160px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.transport-button:hover {
  transform: translateY(-10px) scale(1.03);
}

.contact {
  padding: 40px 20px;
  text-align: center;
}

.contatos-titulo {
  font-size: 32px;
  margin-bottom: 30px;
}

.container-formularios {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.formulario-contato {
  width: 100%;
  max-width: 400px;
}

.formulario-contato h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 800;
  color: #000;
}

.campo-form {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #7e6b47;
  border-radius: 6px;
  background: rgba(126, 107, 71, 0.05);
}

.grupo-form {
  margin-bottom: 15px;
}

.form-button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: #7e6b47;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 150px;
}

.form-button:hover {
  box-shadow: 0 10px 20px #7e6b47;
  transform: translateY(-10px) scale(1.03);
}

footer {
  text-align: center;
  padding: 10px;
  background: #7e6b47;
  border-top: 1px solid #ccc;
}

footer h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #e9e5cc;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-icons a img {
  width: 36px;
  transition: transform 0.2s ease;
}

.footer-icons a:hover img {
  transform: scale(1.1);
}

@keyframes flutuar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .cabecalho-sub-titulo {
    padding: 0 20px;
  }

  .container-formularios {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  .menu {
    flex-wrap: nowrap;
  }

  .menu-link {
    font-size: 15px;
    white-space: nowrap;
  }

  .botao-form {
    margin-bottom: 70px;
  }

  .salon-photos img {
    width: calc(50% - 20px);
  }

  .listas-servicos {
    justify-content: flex-start;
    padding-left: 60px;
  }

  .listas-servicos ul {
    text-align: left;
  }

  .lista2 {
    margin-top: 30px;
  }
}