/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Página index */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Rolagem suave */
html { 
  scroll-behavior: smooth; 
}

/* Evita que o título fique escondido atrás do menu fixo*/
header, section { 
  scroll-margin-top: 20px; 
}

/* MENU */
.menu {
  background: #333;
  text-align: center;
  padding: 10px 0;
  position: sticky; 
  top: 0;
  z-index: 1000;
}
.menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}
.menu a:hover {
  color: #ff6600;
}
.menu a:first-child {
  color: #ff6600; 
}
.menu a:first-child:hover {
  text-decoration: underline;
}

/* DESTAQUE */
.capa {
  background-color: #d4c6b0; 
  text-align: center;
  padding: 60px 20px;
}

/*área principal*/
.foto-container {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
}
.foto-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*textos de apresentação*/
.intro {
  margin-top: 20px;
}
.intro h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.intro h1 span {
  letter-spacing: 2px;
}
.intro p {
  margin: 15px auto;
  max-width: 600px;
  font-size: 1rem;
  color: #555;
}

/*CONSULTE MAIS INFORMAÇÕES*/
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #333;
  color: #000;
}
.btn:hover {
  color: #ff6600;
  border-color: #ff6600;
}

/* SEÇÕES */
section {
  padding: 60px 20px;
  text-align: center;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
section p, section ul {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}
section ul {
  list-style: none;
}
section ul li {
  margin: 10px 0;
}

/* FORMULÁRIO */
form input, form textarea {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  padding: 10px;
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button[type="submit"] {
  background: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
form button[type="submit"]:hover {
  background: #ff6600;
}


/* RODAPÉ */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Página de obrigado */
body.obrigado {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #d4c6b0;
}
.box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;
}
.btn-voltar {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #333;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-voltar:hover {
  background: #ff6600;
  color: #fff;
  transform: scale(1.05);
}
