/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Cabeçalho */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  color: #c7929e;
  font-weight: bold;
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #c7929e;
}

/* Hero Section */
#hero {
  background: linear-gradient(to right, #ffffff, #fdfbfb);
  text-align: center;
  padding: 4rem 2rem;
}

#hero h1 {
  font-size: 2.5rem;
  color: #c7929e;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 2rem;
}

.botao-cta {
  background-color: #d9aab7;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.botao-cta:hover {
  background-color: #c7929e;
}

/* Seções Gerais */
section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  color: #c7929e;
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  color: #333;
  margin-top: 1.5rem;
}

ul li {
  margin-bottom: 1.5rem;
}

/* Galeria */
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.galeria img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Formulário */
form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: auto;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

button[type="submit"] {
  background-color: #d9aab7;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #c7929e;
}

/* Informações de contato */
.informacoes-contato p {
  margin: 0.5rem 0;
}

.informacoes-contato a {
  color: #c7929e;
  text-decoration: none;
}

.informacoes-contato a:hover {
  text-decoration: underline;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background-color: #ffffff;
  color: #777;
  border-top: 1px solid #eee;
}

footer nav a {
  color: #777;
  margin: 0 0.5rem;
  text-decoration: none;
}

footer nav a:hover {
  color: #c7929e;
}
