/* === RESET BÁSICO E ESTILO GERAL === */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #d9b8a6;
  color: #4d3f36;
  overflow-x: hidden;
  padding-top: 80px; /* ajuste conforme a altura do seu header */
}

/* === CABEÇALHO === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.85); /* ou branco com opacidade, como preferir */
  backdrop-filter: blur(8px); /* opcional: para suavizar o fundo se for transparente */
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.cabecalho {
  display: flex;
  align-items: center;
  padding: 16px 32px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  object-fit: contain;
}

.cabecalho h1 {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

/* === BOTÕES TOPO === */
.botoes-topo {
  display: flex;
  gap: 16px;
  margin-left: auto;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .botoes-topo {
    justify-content: center;
  }
}

.btn-topo {
  background-color: #a1745c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-topo:hover {
  background-color: #8c5e4b;
}

.btn-topo.whatsapp {
  background-color: #25D366;
}

.btn-topo.whatsapp:hover {
  background-color: #1ebe5b;
}

.btn-topo.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.btn-topo.localizacao {
  background-color: #4285F4;
}

.btn-topo.localizacao:hover {
  background-color: #3367D6;
}

/* === APRESENTAÇÃO === */
.apresentacao {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: url('fundodecima.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}


.apresentacao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.card-apresentacao {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;     /* Centraliza horizontalmente */
  align-items: center;         /* Centraliza verticalmente */
  margin: 0 auto;              /* Centraliza o contêiner no pai */
  max-width: 1200px;
  width: 100%;
  padding: 30px;
  background: rgba(217, 184, 166, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}


.texto-apresentacao {
  flex: 1 1 300px;
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
}

.texto-apresentacao h2 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #2c2c2c;
}

.texto-apresentacao p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a2d26;
}

.fotos-apresentacao {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  flex: 1 1 300px;
}

.fotos-apresentacao img {
  width: 140px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* === SERVIÇOS === */
.pagina-servicos {
  background: url('fundo.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.pagina-servicos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.titulo-servicos {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow:
    0 0 5px #f5e7d0,
    0 0 10px #f5e7d0,
    0 0 20px #f5e7d0,
    0 0 40px #f5e7d0,
    0 0 60px #f5e7d0;
  animation: brilhoIntenso 1s ease-in-out infinite alternate;
}

@keyframes brilhoIntenso {
  0% {
    text-shadow: 0 0 10px #f5e7d0, 0 0 20px #f5e7d0;
  }
  100% {
    text-shadow: 0 0 5px #f5e7d0, 0 0 15px #f5e7d0;
  }
}

.titulo-servicos {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.5); /* fundo translúcido mantido */
  color: #fff; /* branco puro */
  font-weight: 700;
  font-size: 2em;
  border-radius: 10px;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 40px #fff;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}

.servico {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 0;
}

.servico:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.servico img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.servico-content {
  padding: 20px;
  background-color: #d9b8a6;
  height: 100%;
}

.servico h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  margin: 0 0 12px;
}

.servico p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  color: #3a2d26;
}

/* === SEÇÃO "CONHEÇA O ESPAÇO" === */
.espaco {
  background-image: url('fundo-conheca-espaço.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 20px;
  color: white;
  z-index: 1;
}

.espaco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  z-index: 0;
}

.espaco > * {
  position: relative;
  z-index: 1;
}

.titulo-sessao {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-shadow: 0 0 5px #fff;
}

.espaco-conteudo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.bloco {
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.bloco iframe,
.bloco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* Hover nas fotos */
.foto img {
  transition: transform 0.4s ease;
  will-change: transform;
}

.foto:hover img {
  transform: scale(1.08);
}

/* === MAPA === */
.mapa {
  text-align: center;
  max-width: 100%;
  padding: 10px 0;
}

.mapa img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.mapa:hover img {
  transform: scale(1.05);
}

.mapa .endereco {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .mapa .endereco {
    font-size: 14px;
    padding: 8px 16px;
    line-height: 1.6;
  }
}

/* === AVALIAÇÕES === */

.avaliacoes {
  padding: 60px 20px;
  background-color: #a1745c;
  text-align: center;
}

.avaliacoes h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.avaliacoes {
  padding: 60px 20px;
  background: url('fundo-avaliacoes.jpg') no-repeat center center;
  background-size: cover;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
}

/* Sobreposição escura para melhorar a leitura */
.avaliacoes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* opacidade escura */
  z-index: 0;
  border-radius: 0;
}

.avaliacoes > * {
  position: relative;
  z-index: 1;
}
.avaliacao p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 10px;
  color: #4d3f36;
}

.avaliacao .nome {
  font-weight: bold;
  font-size: 14px;
  color: #a1745c;
}

.avaliacao {
  background-color: rgba(255, 255, 255, 0.842); /* branco suave com transparência */
  backdrop-filter: blur(4px);                 /* desfoque elegante no fundo */
  -webkit-backdrop-filter: blur(4px);         /* suporte para Safari */
  border-radius: 16px;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.estrelas {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* === RODAPÉ === */

.rodape {
  background-color: #a1745c;
  color: #3a2d26;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  margin-top: 60px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* === AJUSTES PARA SEÇÃO "CONHEÇA O ESPAÇO" === */

/* Centraliza o título em qualquer tela */
.titulo-sessao {
  text-align: center;
}

/* Alinha mapa e fotos com altura igual */
.espaco-conteudo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
  position: relative;
}
/* Ajustes específicos para o mapa */
.espaco-conteudo .mapa {
  flex: 1 1 300px;
  max-width: 450px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #111;
  position: relative;
}

.espaco-conteudo .mapa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Endereço sobreposto no mapa */
.espaco-conteudo .mapa .endereco {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 0.9rem;
  background-color: rgba(0,0,0,0.6);
  padding: 8px 12px;
  border-radius: 6px;
  max-width: 90%;
  text-align: left;
  line-height: 1.4;
}

/* Fotos com altura fixa e largura fluida */
.espaco-conteudo .bloco.foto {
  flex: 1 1 200px;
  max-width: 300px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.espaco-conteudo .bloco.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}


.cta-agendar {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

.cta-agendar a {
  display: inline-block;
  background-color: #ff1a1a;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 14px 35px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  animation: pulse 1.5s infinite;
  transition: transform 0.2s ease;
}

.cta-agendar a:hover {
  transform: scale(1.08);
  background-color: #e60000;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}