/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

h1,
h2,
h3 {
  margin-bottom: 1.25rem;
  font-family: "Dancing Script", cursive;
  color: #c47e9f;
 
}

/* === CABEÇALHO === */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
}

.menu {
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

.logo img {
  max-width: 150px;
  
}
/* === LINKS DO MENU === */
.menu-links {
  display: flex;
  gap: 2rem;
}

.menu-links a {
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #ff69b4;
}

/* === BOTÃO MENU MOBILE === */
.botao-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.barra {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}

/* === SEÇÃO DESTAQUE === */
.secao-destaque {
  background: url("https://via.placeholder.com/1500x700/ffccdd/fff?text=Aconchego+da+Mulher")
    no-repeat center center / cover;
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  font-size: 25px;
}

/* === BOTÕES === */
.botao {
  background-color: #c47e9f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  margin-top: 1.25rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.botao:hover {
  background-color: #aa6a87;
}

/* === SEÇÕES GERAIS === */
.secao {
  padding: 4rem 1.5rem;
  text-align: center;
  font-size: 20px;
}

.fundo-claro {
  background-color: rgb(247, 221, 242);
}

/* === GRIDS === */
.grade-servicos,
.grade-equipe,
.grade-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}
/* Garantir que todas as imagens da galeria tenham o mesmo tamanho e formato */
.grade-galeria img {
  width: 100%;
  height: 200px; /* altura fixa para padronizar */
  object-fit: cover; /* ajusta a imagem sem distorcer */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.servico,
.membro {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* === CONTATO === */
.formulario-contato {
  max-width: 350px;
  margin: 2rem auto;
  text-align: left;
}

.campo {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.info-contato {
  margin-top: 2rem;
  font-size: 1rem;
}

/* === RODAPÉ === */
footer {
  background-color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  border-top: 1px solid #eee;
}

/* === RESPONSIVO MOBILE === */
@media (max-width: 768px) {
  .menu-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    right: 1.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .menu-links.active {
    display: flex;
  }

  .botao-menu {
    display: flex;
  }
}
