:root {
  --marrom: #6e3a27;
  --laranja: #d88f4d;
  --caramelo: #f5e4d0;  
  --amarelo: #ffe08a;
  --cinza-claro: #f8f5f3;
  
  --fonte-titulo: 'Lora', serif;
  --fonte-texto: 'Nunito', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-texto);
  background-color: var(--cinza-claro);
  color: #3c3c3c;
  line-height: 1.8;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded {
  opacity: 1;
}

header {
  background-color: var(--caramelo);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.logo {
  font-family: var(--fonte-titulo);
  font-size: 2.2rem;
  color: var(--marrom);
  letter-spacing: 1px;
}

.logo-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--marrom);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s, transform 0.2s;
  outline: none;
}

nav a:hover {
  color: var(--laranja);
  transform: scale(1.05);
}

nav a:focus {
  outline: none;
}

main {
  padding: 40px 20px;
}

section {
  margin-bottom: 64px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background-color: var(--caramelo);
  padding: 48px 32px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
}

.foto-ana {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.apresentacao-texto {
  max-width: 600px;
}

.apresentacao-texto h1 {
  font-size: 2.4rem;
  color: var(--marrom);
  font-family: var(--fonte-titulo);
  margin-bottom: 12px;
}

.apresentacao-texto .crp {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.apresentacao-texto .frase {
  font-style: italic;
  margin: 16px 0;
  font-size: 1.1rem;
}

.btn-agendar {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 12px;
}

.btn-agendar:hover {
  background-color: #1eb75b;
}

section h2 {
  color: var(--marrom);
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  margin-bottom: 20px;
}

.sobre,
.abordagem,
.servicos {
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.02);
}

.sobre img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  float: right;
  margin-left: 24px;
  margin-bottom: 20px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.sobre p {
  margin-bottom: 16px;
  text-align: justify;
}

.sobre .valores {
  font-weight: bold;
  color: #5a5a5a;
}

.abordagem h2,
.abordagem h3 {
  margin-bottom: 20px;
}

.abordagem p {
  margin-top: 12px;
  margin-bottom: 16px;
}

.abordagem ul,
.servicos ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: disc;
  padding-left: 24px;
}

.abordagem li,
.servicos li {
  background-color: var(--cinza-claro);
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
}

/* ========== Galeria Espaço ========== */
#conheca-espaco {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#conheca-espaco h2 {
  font-size: 2rem;
  color: var(--marrom);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: var(--fonte-titulo);
}

#conheca-espaco h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--marrom);
  margin: 8px auto 0;
  border-radius: 4px;
}

.galeria-espaco {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.imagem-espaco {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.imagem-espaco:hover {
  transform: scale(1.05);
}

.modal {
  display: none; /* escondido inicialmente */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  padding-top: 60px;
}

.modal-conteudo {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.fechar {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.fechar:hover {
  color: #ccc;
}

/* ========== Contato ========== */
.contato form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  margin-top: 24px;
}

.contato label {
  font-weight: 600;
}

.contato input,
.contato textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: var(--fonte-texto);
  background-color: #fff;
}

.contato button {
  padding: 14px;
  background-color: var(--laranja);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 12px;
}

.contato button:hover {
  background-color: var(--marrom);
}

.endereco {
  margin-top: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--marrom);
}

.endereco::before {
  content: "📍";
  font-size: 1.1rem;
}

.wpp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: #25d366;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  user-select: none;
  margin-bottom: 24px;
}

.wpp-link img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: white;
  padding: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wpp-link:hover {
  background-color: #128c4a;
  transform: scale(1.05);
}

.redes-sociais {
  margin-top: 36px;
  font-weight: 600;
  color: var(--marrom);
  display: flex;
  align-items: center;
  gap: 10px;
}

.redes-sociais span {
  font-weight: bold;
  color: var(--laranja);
}

.redes-sociais a {
  color: var(--marrom);
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.redes-sociais a:hover {
  color: var(--laranja);
}

/* ========== Footer ========== */
footer {
  text-align: center;
  padding: 24px;
  background-color: var(--caramelo);
  color: #6b4b3a;
  font-size: 0.95rem;
  margin-top: 48px;
  border-top: 4px solid var(--amarelo);
}

/* ========== Responsividade ========== */
@media (max-width: 768px) {
  header {
    justify-content: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  header > div {
    margin-bottom: 8px;
  }
}

@media (max-width: 600px) {
  .logo {
    white-space: nowrap;
    font-size: 1.6rem;
    text-align: center;
  }
}
  .hero {
    flex-direction: column;
  }
  .apresentacao-texto {
    max-width: 100%;
  }
  .foto-ana {
    margin-bottom: 24px;
  }
  .sobre img {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
  }
  .galeria-espaco {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* Melhor contraste para acessibilidade */
a:focus, button:focus {
  outline: 2px solid var(--laranja);
  outline-offset: 3px;
}
