/* Definir a imagem de fundo para o corpo da página */
body {
  margin: 0; /* Remove margens padrão */
  padding: 0; /* Remove padding padrão */
  position: relative; /* Necessário para o pseudo-elemento */
  z-index: 0; /* Garante que o conteúdo fique acima do fundo */
  font-family: 'Arial', sans-serif; /* Fonte padrão para o corpo */
  color: #D8C7AA; /* Cor padrão do texto */
  letter-spacing: 1px;
  text-align: center; /* Centraliza o texto */
}

body::before {
  content: ""; /* Necessário para exibir o pseudo-elemento */
  position: fixed; /* Fixa a imagem de fundo na tela */
  top: 0; /* Corrigido o erro de digitação */
  left: 0; /* Corrigido o erro de digitação */
  width: 100%; /* Corrigido o erro de digitação */
  height: 100%; /* Corrigido o erro de digitação */
  background: url('images/background.jpg') no-repeat center center; 
  background-size: cover; /* Ajusta a imagem para cobrir toda a área */
  z-index: -1; /* Garante que o fundo fique atrás do conteúdo */
  transition: background-image 0.5s ease-in-out;/* Transição suave ao mudar a imagem de fundo */
  background-color: #f5f5f5; /* Cor neutra de fundo enquanto a imagem carrega */
}

/* Ajuste para iPhones e telas menores */
@media screen and (max-width: 480px) {
  body::before {
    
    background: url(images/background.jpg) no-repeat center center;
    background-size: cover;
    transition: background-image 0.5s ease-in-out; /* Transição suave ao mudar a imagem de fundo */
  }
}

/* Centralizar o logo*/
.logo-container {
  display: flex; /* Usando Flexbox para centralizar */
  flex-direction: column; /* coloca o texto abaixo da imagem do logo */
  justify-content: center; /* Centraliza horizontalmente / verticalmente quando necessário */
  align-items: center; /* Centraliza verticalmente */
  width: 100%; /* Ocupa toda a largura disponível */
  margin: 20px 0; /* Espaçamento superior e inferior */
  gap: 8px; /* pequeno espaço entre imagem e texto */
}

.logo-image {
    max-width: 300px; /* Ajuste conforme necessário */
    width: 100%; /* Garante que a imagem seja responsiva */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove espaço em branco abaixo da imagem */
    height: auto; /* Ajuste automático da altura */
    object-fit: cover;
    transition: transform 0.3s ease;
    background: blur(5px);   /* Adiciona um fundo desfocado */
    border-radius: 10px; /* Adiciona bordas arredondadas */
    padding: 5px; /* Adiciona um padding interno */
    backdrop-filter: blur(2px); /* Adiciona um efeito de desfoque ao fundo */
}

.logo-text {
  font-size: 1.2rem;
  color: #D8C7AA;
  margin-top: -10px; /* espaço abaixo do logo */
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra para melhorar a legibilidade */
  text-align: center; /* garante que o texto fique centralizado abaixo da imagem */
  font-size: x-small;
  font-style: italic;
}


@media (max-width: 600px) {
    .logo-image {
        max-width: 180px; /* Ajuste para telas menores */
    }
}

/* ESTILOS PARA O HEADER */
header {
  background: transparent; /* Fundo transparente para o header para que ele use o mesmo fundo da página:*/
  padding: 8px 0; /* Espaçamento superior e inferior */
  text-align: center; /* Centraliza o conteúdo do header */
  width: 100%; /* Garante que o header ocupe toda a largura da tela */
  max-width: 100%; /* Limita a largura máxima do header */
  margin: 0 auto; /* Centraliza o header na tela */
  position: relative; /* Corrigido o erro de digitação */
  box-sizing: border-box; /* Inclui padding e border na largura total */
  font-family: 'Arial', sans-serif; /* Fonte padrão para o corpo */
  color: #D8C7AA; /* Cor padrão do texto */
  letter-spacing: 1px; /* Espaçamento entre letras */
}

@media (min-width: 600px) {
    header {
      padding: 10px 0;
      max-width: 1200px;
      width: fit-content; /* Garante que o header ocupe toda a largura da tela */
      margin: 0 auto; /* Centraliza o header na tela */
    }
}

/* ESTILOS PARA O MENU DE NAVEGAÇÃO */
.nav-container {
  padding: 10px 0; /* Espaçamento superior e inferior */
  display: flex; /* Usando Flexbox para centralizar */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  gap: 20px; /* Espaçamento entre os itens do menu */
  flex-direction: row; 
  flex-wrap: wrap; /* Permite que os itens do menu quebrem linha se necessário */
  width: 100%; /* Ocupa toda a largura disponível */
  position: relative; /* Necessário para o pseudo-elemento */
  color: #D8C7AA; /* Cor padrão do texto */
  text-align: center; /* Centraliza o texto */
  font-family: 'Arial', sans-serif; /* Fonte padrão para o corpo */
  font-size: 18px; /* Tamanho da fonte */
  letter-spacing: 1px; /* Espaçamento entre letras */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra para melhorar a legibilidade */
}

.nav-container ul {
  list-style: none; /* Remove os marcadores da lista */
  display: flex; /* Usando Flexbox para o layout do menu */
  align-items: center; /* Alinha os itens ao centro verticalmente */
  width: 100%; /* Ocupa toda a largura disponível */
  justify-content: center; /* Centraliza os itens horizontalmente */
  gap: 20px; /* Espaçamento entre os itens do menu */
  letter-spacing: 1px; /* Espaçamento entre letras */
}

.nav-container ul li {
  margin: 0 10px; /* Espaçamento entre os itens do menu */
  align-items: center;
  width: auto;
  flex: 0 1 auto;
  min-width: 60px; /* Largura mínima para cada item do menu */
  box-sizing: border-box; /* Inclui padding e border na largura total */
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
}

.nav-container ul li:hover {
  color: #2d3629; /* Cor ao passar o mouse */
  cursor: pointer; /* Muda o cursor para indicar que é clicável */
  transition: color 0.3s ease; /* Transição suave para a mudança de cor */
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
}

.nav-menu li {
  flex: 0 1 auto;
  min-width: 80px;
  max-width: 45%;
  text-align: center;
  font-size: 16px;
  padding: 6px 8px;
  word-break: break-word;
}

.nav-item {
  color: #D8C7AA; /* Cor padrão do texto */
  text-align: center; /* Centraliza o texto */
  font-family: 'Arial', sans-serif; /* Fonte padrão para o corpo */
  font-size: 18px;
  letter-spacing: 1px; /* Espaçamento entre letras */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra para melhorar a legibilidade */
  white-space: nowrap; /* Impede quebra de texto */
}

.nav-item:hover {
  color: #2d3629; /* Cor ao passar o mouse */
  cursor: pointer; /* Muda o cursor para indicar que é clicável */
  transition: color 0.3s ease; /* Transição suave para a mudança de cor */
  letter-spacing: 1px;
}

.nav-link {
    color: #D8C7AA; /* Cor do texto do link */
    padding: 10px 22px;
    font-size: 1.1rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.61);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Sombra sutil */
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3); /* Borda semi-transparente */
    color: #D8C7AA;
    background: transparent;
    cursor: pointer;
    letter-spacing: 1px;
}

.nav-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #2d3629; /* Cor ao passar o mouse */
    text-align: center;
    align-items: center;
    font-size: 1.1rem;
    letter-spacing: 1px;

}  

.social-media {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 0;
    padding-right: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    letter-spacing: 1px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Sombra sutil */
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #D8C7AA;
    font-size: 1.2rem;
    font-weight: 600; /* Negrito para destacar o texto */
    font-family: 'Segoe UI', Arial, sans-serif;
}

.social-link:hover {
    background: transparent;
    color: #2d3629; /* Cor ao passar o mouse */
    border-bottom-color: #D8C7AA;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transform: scale(1.1);
}

/* Envelope verde ao passar o mouse */
.social-link:hover .fa-envelope {
    color: #2d3629;
    transition: color 0.3s;
    transform: scale(1.1);
}

/* 📱 Responsivo para iPhone */
@media (max-width: 480px) {
  .nav-container {
    gap: 12px;
  }

  .nav-container ul {
    gap: 12px;
  }

  .nav-container ul li {
    font-size: 16px;
    padding: 6px 8px;
  }

    .nav-menu li {
    max-width: 48%;
    font-size: 14px;
    padding: 6px 4px;
  }

  .nav-link {
    font-size: 1rem;
    padding: 8px 16px;
}

  .nav-link:active,
.nav-link:focus {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #2d3629;
  background: rgba(255, 255, 255, 0.1);
  border-color: #2d3629;
}

@media (hover: none) and (pointer: coarse) {
  .nav-link:active {
    transform: scale(1.08);
    transition: transform 0.2s ease, background 0.3s ease;
  }
}
}

/* 📣 Redes sociais */
.social-media {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  margin-top: 24px;
  letter-spacing: 1px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #D8C7AA;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.social-link:hover {
  background: transparent;
  color: #2d3629;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  transform: scale(1.1);
}

.social-link:hover .fa-envelope {
  color: #2d3629;
  transition: color 0.3s;
  transform: scale(1.1);
}

@media (max-width: 360px) {
  .nav-container ul li {
    font-size: 14px;
    padding: 4px 6px;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 6px 12px;
  }
}

/* Estilos para o conteúdo principal */
.home-description {
  margin-bottom: 15px; /* Espaçamento abaixo dos parágrafos */
  max-width: 1200px; /* Largura máxima para o conteúdo principal */
  margin: 20px auto; /* Centraliza o conteúdo e adiciona margem superior e inferior */
  padding: 20px; /* Espaçamento interno */
  background: rgba(15, 14, 14, 0); /* Fundo semi-transparente para destacar o conteúdo */
  border-radius: 20px; /* Bordas arredondadas */
  letter-spacing: 0.5px;
  text-align: center; /* Centraliza o texto */
  backdrop-filter: blur(7px) brightness(0.85); /* Efeito de desfoque no fundo */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidade */
  text-align: center; /* Centraliza o texto */
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.8;
  font-size: 17px;
  color: #e0cfb1; /* Cor do texto */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  font-weight: 600 /* Negrito para destacar o texto */;
}

.assinatura {
  margin-top: 50px;
  font-size: 16px;
  color: #e0cfb1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  font-size: smaller;
  font-style: italic;


}

.home-description-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  max-width: 1200px;
  margin: auto;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-align: center;
}

.home-description-buttons a {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(15, 14, 14, 0.7);
  border-radius: 20px;
  border: 2px solid #e0cfb1;
  color: #e0cfb1;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.home-description-buttons a:hover {
  background: #e0cfb1;
  color: #2d3629;
  border-color: #2d3629;
  text-shadow: none;
}

@media (max-width: 480px) {
  .home-description {
    padding: 10px;
    font-size: 15px;
    border-radius: 12px;
    max-width: 95%;
    word-break: break-word;
  }

  .home-description-buttons {
    gap: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }

  .home-description-buttons a {
    padding: 6px 10px;
    font-size: 15px;
    border-radius: 14px;
    word-break: break-word;
  }
}

@media (hover: none) and (pointer: coarse), (max-width: 480px) {
  .home-description-buttons a:active,
  .home-description-buttons a:focus {
    background: #e0cfb1;
    color: #2d3629;
    border-color: #2d3629;
    text-shadow: none;
    transform: scale(1.05);
    transition: background 0.3s, color 0.3s, transform 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }

  .nav-link:active,
  .nav-link:focus {
    color: #2d3629;
    background: #e0cfb1;
    border-color: #2d3629;
    transform: scale(1.08);
    transition: background 0.3s, color 0.3s, transform 0.3s;
  }
}
/* ======= SERVIÇOS ======= */
.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 32px 16px;
  background: rgba(120, 100, 80, 0.38);
  border-radius: 24px;
  box-sizing: border-box;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
}

.services-title {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.18);
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #D8C7AA;
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.services-subtitle {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.12);
  font-size: 1.1rem;
  color: #d8c7aa;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.servico-card {
  max-width: 300px;
  padding: 20px 16px;
  background: rgba(255, 245, 225, 0.7);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.servico-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.servico-icon {
  font-size: 2.2rem;
  color: #2d1c0f;
  margin-bottom: 10px;
}

.servico-title {
  text-shadow: 1px 1px 4px rgba(60, 40, 20, 0.28);
  text-shadow: 1px 1px 4px rgba(216,199,170,0.18);
  font-size: 1.15rem;
  color: #2d1c0f;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.servico-descricao {
  text-shadow: 1px 1px 4px rgba(60, 40, 20, 0.22);
  text-shadow: 1px 1px 4px rgba(216,199,170,0.12);
  font-size: 1rem;
  color: #2d1c0f;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 0;
  word-break: break-word;
}

/* 📱 Responsivo para iPhone e telas menores */
@media (max-width: 600px) {
  .services-section {
    flex-direction: column;
    padding: 20px 12px;
    border-radius: 16px;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .servico-card {
    width: 100%;
    max-width: 100%;
    margin: 12px 0;
    padding: 16px 12px;
    text-align: left;
  }

  .servico-title {
    font-size: 1rem;
  }

  .servico-icon {
    font-size: 1.6rem;
  }

  .servico-descricao {
    font-size: 0.95rem;
  }
}

/* ======= PORTFÓLIO ======= */
.portfolio-section {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 32px 16px;
  background: rgba(120, 100, 80, 0.38);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.portfolio-title,
.portfolio-subtitle {
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  width: 100%;
}

.portfolio-title {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.18);
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.12);
  font-size: 2rem;
  color: #D8C7AA;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.portfolio-subtitle {
    font-size: 1.1rem;
  color: #d8c7aa;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.portfolio-title2 {
  text-shadow: 2px 2px 6px rgba(60, 40, 20, 0.35);
  text-shadow: 1px 1px 4px rgba(216,199,170,0.18);
  font-size: 1.5rem;
  color: #2d1c0f;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}


.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.portfolio-card {
  background: rgba(255, 245, 225, 0.7);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.portfolio-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.07);
}

.portfolio-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 14, 14, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  text-shadow: 1px 1px 4px rgba(60, 40, 20, 0.22);
  text-shadow: 1px 1px 4px rgba(216,199,170,0.12);
  color: #2d1c0f;
  text-align: center;
  padding: 16px;
}

.portfolio-content h3 {
  text-shadow: 1px 1px 4px rgba(60, 40, 20, 0.28);
  text-shadow: 1px 1px 4px rgba(216,199,170,0.18);
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #2d1c0f;
}

.portfolio-content h4 {
  text-shadow: 1px 1px 4px rgba(60, 40, 20, 0.28);
  text-shadow: 1px 1px 4px rgba(216,199,170,0.18);
  font-size: 1rem;
  margin-bottom: 6px;
  color: #2d1c0f;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.portfolio-content p {
  text-shadow: 1px 1px 4px rgba(60, 40, 20, 0.22);
  text-shadow: 1px 1px 4px rgba(216,199,170,0.12);
  font-size: 1rem;
  margin-bottom: 10px;
  color: #2d1c0f;
  font-family: 'Segoe UI', Arial, sans-serif;
  word-break: break-word;

}

.portfolio-button {
  display: inline-block;
  padding: 8px 18px;
  background: #e0cfb1;
  color: #2d3629;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.portfolio-button:hover {
  background: #2d3629;
  color: #e0cfb1;
  transform: scale(1.07);
}

.portfolio-info {
  padding: 16px 10px;
  text-align: center;
}

.portfolio-icon {
  font-size: 1.5rem;
  color: #2d1c0f;
  margin-bottom: 6px;
}

.portfolio-description {
  text-shadow: 1px 1px 4px rgba(60, 40, 20, 0.22);
  text-shadow: 1px 1px 4px rgba(216,199,170,0.12);
  font-size: 1rem;
  color: #2d1c0f;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 0;
  word-break: break-word;
}

/* 📱 Responsivo para iPhone e telas menores */
@media (max-width: 600px) {
  .portfolio-section {
    padding: 20px 12px;
    border-radius: 16px;
  }

  .portfolio-grid {
    gap: 16px;
  }

  .portfolio-card {
    width: 100%;
    max-width: 100%;
    margin: 12px 0;
    border-radius: 16px;
  }

  .portfolio-image {
    height: 140px;
    border-radius: 16px 16px 0 0;
  }

  .portfolio-content h3 {
    font-size: 1rem;
  }

  .portfolio-content p,
  .portfolio-description {
    font-size: 0.95rem;
  }

  .portfolio-button {
    font-size: 0.95rem;
    padding: 7px 12px;
    border-radius: 12px;
  }
}

/* ======= DEPOIMENTOS ======= */
.depoimentos-section {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0 auto;
    padding: 24px 12px;
    background: rgba(120, 100, 80, 0.38);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.depoimentos-title {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.18);
  font-size: 2rem;
  color: #D8C7AA;
  margin-bottom: 8px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.depoimentos-subtitle {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.12);
   font-size: 1.1rem;
  color: #d8c7aa;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.depoimento-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.depoimento-card {
  background: rgba(216, 199, 170, 0.18);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  width: 270px;
    margin: 0;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* transição suavizada */
  box-sizing: border-box;
}

.depoimento-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.depoimento-texto {
  color: #2d1c0f;
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.18);
  font-size: 1.08rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 12px;
  font-style: italic;
  word-break: break-word;
}


.depoimento-autor h4 {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.18);
  font-size: 1.05rem;
    color: #2d1c0f;
  margin-bottom: 2px;
  word-break: break-word;
}

.depoimento-autor span {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.12);
  font-size: 0.95rem;
    color: #2d1c0f;
}

.depoimento-rating {
  margin-top: 8px;
}

.depoimento-rating i {
  color: #b8a78a;
  font-size: 1.1rem;
  margin: 0 1px;
  text-shadow:
    0 0 2px #2d1c0f,
    0 0 4px #2d1c0f,
    0 0 6px #2d1c0f;
      
}

/* 📱 Responsivo para mobile */
@media (max-width: 600px) {
  .depoimentos-section {
    padding: 12px 2px;
    border-radius: 12px;
  }

  .depoimento-lista {
    gap: 12px;
  }

  .depoimento-card {
    width: 98%;
    margin: 10px 0;
    border-radius: 12px;
    padding: 14px 8px;
    align-items: flex-start; /* melhora leitura no mobile */
    text-align: left;
  }

  .depoimento-texto {
    font-size: 0.95rem;
  }
}

/* ======= CONTATO ======= */
.contato-section {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 24px 12px;
  background: rgba(216, 199, 170, 0.18);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.contato-title {
  text-shadow:
    2px 2px 6px rgba(60, 40, 20, 0.32),
    0 1px 0 rgba(216,199,170,0.18);
  font-size: 2rem;
  color: #D8C7AA;
  margin-bottom: 8px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.contato-subtitle {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.12);
  font-size: 1.1rem;
  color: #d8c7aa;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.contato-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.contato-icon {
  font-size: 1.5rem;
  color: #2d1c0f;
  margin-bottom: 6px;
  text-align: left;
  min-width: 30px;
  padding: 8px;
  border-radius: 8px;
}

.contato-details {
  text-align: left;
  color: #2d1c0f;
}
.contato-details p, .contato-details a {
  color: #2d1c0f;
  font-size: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.12);
  margin: 0;
  word-break: break-word;
  text-decoration: none;
}
.contato-details a:hover {
  color: #2d1c0f;
  text-decoration: underline;
}

.contato-item {
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  width: 100%;
  max-width: 400px;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px; /* Espaçamento entre ícone e detalhes */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;

}

@media (max-width: 600px) {
  .contato-section {
    padding: 12px 2px;
    border-radius: 12px;
  }
  .contato-title {
    font-size: 1.3rem;
  }
  .contato-info {
    max-width: 100%;
    gap: 12px;
  }
  .contato-item {
    padding: 10px 8px;
    border-radius: 8px;
  }
  .contato-icon {
    font-size: 1.2rem;
    padding: 6px;
  }
  .contato-details p, .contato-details a {
    font-size: 0.95rem;
  }
}

.contato-form {
  width: 100%;
  max-width: 900px;
  margin: 32px auto 0 auto;
  padding: 50px 240px;
  background: rgba(216, 199, 170, 0.18);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.contato-form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.contato-form input,
.contato-form textarea {
  padding: 10px 12px;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  background: rgba(255,245,225,0.7);
  color: #2d1c0f;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contato-form input {
  width: 100%;
  min-width: 120px;
  display: block;
}

.contato-form textarea {
  width: 100%;
  min-height: 80px;
  max-height: 200px;
  resize: vertical;
}

.contato-form label {
  font-size: 1rem;
  color: #2d1c0f;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 4px;
  border-radius: 8px;
  padding: 2px 6px;
  background: rgba(255,245,225,0.3);
}

.contato-form h3 {
  text-shadow: 2px 2px 6px rgba(60, 40, 20, 0.32), 0 1px 0 rgba(216,199,170,0.18);
  font-size: 1.5rem;
  color: #2d1c0f;
  margin-bottom: 16px;
  font-family: 'Segoe UI', Arial, sans-serif;
  border-radius: 12px;
  background: rgba(255,245,225,0.5);
  padding: 8px 16px;
}

.contato-form button {
  padding: 10px 24px;
  background: #e0cfb1;
  color: #2d3629;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.contato-form button:hover {
  background: #2d3629;
  color: #e0cfb1;
  transform: scale(1.07);
}

.contato-subtitle {
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.12);
  font-size: 1.1rem;
  color: #d8c7aa;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.contato-form button:active,
.contato-form button:focus {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #2d3629;
  background: rgba(255, 255, 255, 0.1);
  border-color: #2d3629;
}

/* Botão do tipo de serviço harmonizado */
.contato-form select,
.contato-form option {
  padding: 10px 12px;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  box-sizing: border-box;
  background: rgba(255,245,225,0.7);
  color: #2d1c0f;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contato-form select:focus {
  border-color: #2d3629;
  outline: none;
}

.contato-form option {
  background: #e0cfb1;
  color: #2d1c0f;
}

/* 📱 Responsividade */
@media (max-width: 900px) {
  .contato-form {
    padding: 32px 16px; /* reduzido para não apertar conteúdo */
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .contato-form {
    flex-direction: column;
    padding: 16px 8px;
    border-radius: 16px;
    gap: 16px;
    align-items: stretch;
    max-width: 100vw;
  }

  .contato-form-fields {
    gap: 12px;
  }

  .contato-form h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 6px 8px;
  }

  .contato-form label {
    font-size: 0.95rem;
    margin-bottom: 4px;
    border-radius: 6px;
    padding: 2px 4px;
  }

  .contato-form input,
  .contato-form textarea,
  .contato-form select {
    font-size: 0.95rem;
    padding: 8px 8px;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
    min-width: unset;
    display: block;
  }

  .contato-form button {
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 16px;
    margin-top: 10px;
    width: 100%;
  }
}

/* ======= SOBRE NÓS ======= */
.sobre-section {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 32px 16px;
  background: rgba(216, 199, 170, 0.18);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.sobre-foto {
  width: auto; /* usa largura natural até o limite de max-width */
  height: auto;
  display: block; /* garante comportamento de bloco para margin auto funcionar */
  margin: 0 auto 20px; /* centraliza horizontalmente qualquer que seja o container */
  align-self: center; /* para o caso de estar dentro de um flex container */
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 16px;
}

/* Se a imagem for colocada dentro de .sobre-text (que é text-align:left), garantir centralização */
.sobre-text .sobre-foto {
  display: block;
  margin: 0 auto 20px;
}

@media (max-width: 600px) {
  .sobre-foto {
    width: 100%;
    max-width: 280px; /* mantém a imagem proporcional em telas menores */
  }
}

/* Limitar o tamanho da imagem real dentro do container .sobre-foto */
.sobre-foto img {
  max-width: 300px; /* ajuste principal para desktop */
  width: 100%;
  height: auto;
  display: inline;
  border-radius: 12px; /* mantém cantos arredondados similares ao container */
}

@media (max-width: 600px) {
  .sobre-foto img {
    max-width: 240px; /* valor menor para telas pequenas */
  }
}

.sobre-title {
  font-size: 2rem;
  color: #2d1c0f;
  margin-bottom: 12px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(60, 40, 20, 0.32), 0 1px 0 #fff;
  padding: 10px 18px;
  border-radius: 16px;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sobre-text {
  background: rgba(255,245,225,0.7);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px 18px;
  color: #2d1c0f;
  font-size: 1.08rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-align: left;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  word-break: break-word;
}

.sobre-text p {
  margin-bottom: 16px;
  text-shadow: 1px 1px 2px rgba(60, 40, 20, 0.12);
}

.sobre-text p:last-child {
  margin-bottom: 0;
}




/* 📱 Ajustes para iPhone e telas pequenas */
@media (max-width: 600px) {
  .sobre-section {
    padding: 20px 10px;
    border-radius: 16px;
  }

  .sobre-title {
    font-size: 1.4rem;
    padding: 8px 12px;
  }

  .sobre-content {
    gap: 16px;
  }

  .sobre-text {
    padding: 16px 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-radius: 12px;
  }

  .sobre-text p {
    margin-bottom: 12px;
  }
}

/* ======= RODAPÉ ======= */
footer {
  width: 100%;
  background: rgba(120, 100, 80, 0.38);
  color: #D8C7AA;
  text-align: center;
  padding: 24px 0 12px 0;
  margin-top: 40px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}

footer p {
  margin: 0;
  color: #D8C7AA;
  text-shadow: 2px 2px 6px rgba(60, 40, 20, 0.18);
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  footer {
    padding: 14px 0 8px 0;
    border-radius: 0 0 12px 12px;
    font-size: 0.95rem;
  }
  .footer-bottom {
    padding: 0 4px;
  }
  footer p {
    font-size: 0.95rem;
    padding: 0 2px;
  }
}

.google-reviews-widget {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 24px 12px;
  background: rgba(216, 199, 170, 0.18);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-sizing: border-box;
}








