/* ----------------------------------------- */
/* IMPORTAÇÃO DE FONTES                     */
/* ----------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@400;600&display=swap");

/* ----------------------------------------- */
/* RESET GERAL                              */
/* ----------------------------------------- */
/* Remove margens e paddings padrão dos navegadores, 
   define box-sizing e fonte padrão */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "roboto", sans-serif;
}

/* ----------------------------------------- */
/* AJUSTES GERAIS DO BODY E HTML            */
/* ----------------------------------------- */
html,
body {
  height: 1000px; /* Altura fixa (pode ser ajustada depois para 100%) */
  width: 100%;
}

/* Define fonte especial apenas para os títulos principais */
body h1 {
  font-family: "Playfair Display", serif;
}

/* ----------------------------------------- */
/* SEÇÃO: MENU DE NAVEGAÇÃO (DESKTOP)       */
/* ----------------------------------------- */
#menu_principal {
  display: flex;
  position: fixed; /* Mantém o menu fixo no topo durante o scroll */
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background-color: #5a3921;
  z-index: 100; /* Garante sobreposição sobre outros elementos */
}

/* Estilo da logo dentro do menu */
.logo img {
  width: auto;
  height: 45px;
}

/* Estilo dos itens da navegação */
.itens-menu {
  display: flex;
  gap: 2rem;
  list-style: none; /* Remove bolinhas da lista */
}

/* Links do menu */
.itens-menu a {
  display: inline-block;
  padding-inline: 12px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #edebe5;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.4s ease;
  transform-origin: center;
}

/* Efeito hover no menu */
.itens-menu a:hover {
  color: #d4a762;
  transform: scale(1.2);
}

/* ----------------------------------------- */
/* MENU MOBILE (HAMBURGUER)                 */
/* ----------------------------------------- */
.menu-mobile {
  display: none; /* Escondido no desktop */
  cursor: pointer;
}

.menu-mobile i {
  color: #edebe5;
  font-size: 30px;
}

/* ----------------------------------------- */
/* RESPONSIVO: MENU EM TELAS PEQUENAS       */
/* ----------------------------------------- */
@media (max-width: 768px) {
  #menu_principal {
    padding: 1rem 2rem; /* Reduz o padding no mobile */
  }

  /* Menu se transforma em um painel lateral */
  .itens-menu {
    position: fixed;
    top: 70px;
    left: -100%; /* Escondido fora da tela */
    width: 100%;
    height: calc(60vh - 70px); /* Altura ajustável */
    background-color: #5a3921;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 3rem;
    transition: 0.5s; /* Suaviza o slide do menu */
  }

  .itens-menu a {
    font-size: 22px; /* Aumenta tamanho dos links no mobile */
  }

  /* Quando o menu está ativo (visível) */
  .itens-menu.active {
    left: 0;
  }

  /* Exibe o ícone de menu no mobile */
  .menu-mobile {
    display: block;
  }

  /* Efeito hover adaptado para o mobile */
  .itens-menu a:hover {
    transform: scale(1.1);
  }
}

/* ----------------------------------------- */
/* SEÇÃO: HOME - Container principal         */
/* ----------------------------------------- */
#home {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Evita scroll indesejado se houver conteúdo além do espaço visível */
  align-content: center;
  justify-content: center;
}

/* Container central com alinhamento e responsividade */
.container-home {
  display: flex;
  position: relative;
  padding: 0 2rem;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Garante altura mínima da tela inteira */
  min-width: 100vw;
  box-sizing: border-box;
  will-change: transform; /* Otimização para possíveis animações */
}

/* ----------------------------------------- */
/* TÍTULOS E TEXTO PRINCIPAL                 */
/* ----------------------------------------- */
.title-home {
  position: relative;
  color: #edebe5;
  z-index: 2; /* Garante que fique acima da imagem de fundo */
  text-align: center;
  max-width: 1200px;
  padding: 0 1rem;
}

/* Título principal */
.title-home h2 {
  font-size: 1.5rem; /* Corrigido para "rem" */
  font-family: roboto;
  margin: 15px 0;
  line-height: 1.3;
}

/* Ícone ou logo no título */
.logo-xicara {
  width: 60px;
  height: auto;
}

/* Parágrafo abaixo do título */
.title-home p {
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1.5;
}

/* ----------------------------------------- */
/* FUNDO DA HOME - IMAGEM DE BACKGROUND     */
/* ----------------------------------------- */
.fundo-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Fica por trás de todos os elementos */
}

/* Estilo da imagem de fundo */
.fundo-home img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém proporção cobrindo toda a área */
  filter: brightness(0.6); /* Escurece a imagem para contraste com texto */
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ----------------------------------------- */
/* BOTÕES - CTA (Call To Action)            */
/* ----------------------------------------- */
.btn-container {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* Estilo base do botão */
.btn {
  display: inline-block;
  background-color: #5a3921;
  color: #edebe5;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.5s ease;
}

/* Efeito hover no botão */
.btn:hover {
  background-color: #edebe5;
  color: #5a3921;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Efeito ao clicar no botão */
.btn:active {
  transform: translateY(0);
}

/* ----------------------------------------- */
/* RESPONSIVIDADE - TABLETS (768px +)       */
/* ----------------------------------------- */
@media (min-width: 768px) {
  .container-home {
    padding: 0 3rem;
  }

  .title-home h2 {
    font-size: 2rem;
  }

  .logo-xicara {
    width: 70px;
  }

  .title-home p {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.8rem;
    min-width: 150px;
    font-size: 1rem;
  }
}

/* ----------------------------------------- */
/* RESPONSIVIDADE - DESKTOPS (992px +)      */
/* ----------------------------------------- */
@media (min-width: 992px) {
  .container-home {
    padding: 0 4rem;
  }
}

/* --------------------------------------------- */
/* SEÇÃO: Cards de Destaque - Estilo Geral       */
/* --------------------------------------------- */
#cardapio_destaque {
  padding: 3rem 1rem;
  background-color: #edebe5; /* Cor de fundo clara para destacar os cards */
}

/* --------------------------------------------- */
/* TÍTULOS DA SEÇÃO                              */
/* --------------------------------------------- */
.titulo-topo,
.descricao-topo {
  text-align: center;
  margin: 0 auto 1.5rem;
  line-height: 1.3;
}

/* Título principal */
.titulo-topo {
  font-size: clamp(1.75rem, 5vw, 2.375rem); /* Responsivo com clamp */
  color: #5c3a21;
  text-transform: uppercase;
}

/* Subtítulo ou descrição da seção */
.descricao-topo {
  font-size: clamp(
    1.25rem,
    4vw,
    1.75rem
  ); /* Ajuste automático entre tamanhos */
  font-weight: 600;
}

/* --------------------------------------------- */
/* CONTAINER DOS CARDS                           */
/* --------------------------------------------- */
.container-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem; /* Espaço entre os cards */
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --------------------------------------------- */
/* CARD INDIVIDUAL                               */
/* --------------------------------------------- */
.card {
  background: #fff;
  border-radius: 0.9375rem;
  overflow: hidden;
  box-shadow: 0 0.1875rem 0.9375rem rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  will-change: transform; /* Otimiza animações */
}

/* Efeito hover - levanta o card levemente */
.card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.12);
}

/* --------------------------------------------- */
/* CONTEÚDO DO CARD                              */
/* --------------------------------------------- */

/* Imagem do topo do card */
.card-imagem {
  width: 100%;
  height: 12.5rem;
  object-fit: cover; /* Preenche a área mantendo proporção */
}

/* Bloco de texto do card */
.card-conteudo {
  padding: 1.25rem;
}

/* Título do card */
.card-titulo {
  color: #5c3a21;
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Descrição do card */
.card-descricao {
  color: #666;
  margin-bottom: 0.9375rem;
  line-height: 1.5;
  font-size: 0.9375rem;
}

/* Destaque em negrito ou valor do card */
.card-descricao span,
.card-preco {
  color: #5a3921;
  font-weight: 600;
  font-size: 1rem;
}

/* --------------------------------------------- */
/* RESPONSIVIDADE - TABLETS E MAIORES (768px+)   */
/* --------------------------------------------- */
@media (min-width: 48rem) {
  #cardapio_destaque {
    padding: 5rem 0;
  }

  .descricao-topo {
    margin-bottom: 3rem;
  }

  .container-cards {
    gap: 1.5625rem;
    padding: 0;
  }
}

/* --------------------------------------------- */
/* SEÇÃO: Ambientes                              */
/* --------------------------------------------- */
#ambiente-container {
  padding: 60px 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Sombra suave para destacar a seção */
}

/* --------------------------------------------- */
/* TÍTULO DA SEÇÃO                               */
/* --------------------------------------------- */
.titulo-topo {
  text-align: center;
  color: #5a3921;
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
}

/* Linha decorativa abaixo do título */
.titulo-topo::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c7a17a;
  margin: 15px auto;
}

/* Introdução abaixo do título */
.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #666;
}

/* --------------------------------------------- */
/* GALERIA DE ESPAÇO                             */
/* --------------------------------------------- */
.galeria-espaco {
  padding: 60px 0;
}

/* Título da galeria */
.section-title {
  text-align: center;
  color: #5a3921;
  font-size: 2.2rem;
  margin-bottom: 40px;
  position: relative;
}

/* Linha decorativa do título da galeria */
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c7a17a;
  margin: 15px auto;
}

/* --------------------------------------------- */
/* GRID DE IMAGENS                               */
/* --------------------------------------------- */
.galeria-tres-imagens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 4rem;
}

/* Cada item da galeria */
.imagem-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}

/* Imagem dentro do item */
.imagem-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Efeito de zoom na imagem ao passar o mouse */
.imagem-item:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------- */
/* INFORMAÇÃO HOVER SOBRE A IMAGEM               */
/* --------------------------------------------- */
.info-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(90, 57, 33, 0.9); /* Fundo escuro com transparência */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

/* Torna o hover visível */
.imagem-item:hover .info-hover {
  opacity: 1;
}

/* Conteúdo interno da sobreposição */
.info-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
  width: 100%;
}

/* Efeito de subida suave no conteúdo ao hover */
.imagem-item:hover .info-content {
  transform: translateY(0);
}

/* Título dentro do hover */
.info-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #c7a17a;
}

/* Ícone ao lado do título */
.info-content h3 i {
  margin-right: 10px;
}

/* Texto de descrição */
.info-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Lista de detalhes ou itens */
.info-content ul {
  list-style: none;
  padding: 0;
}

.info-content ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Ícones dos itens da lista */
.info-content ul li i {
  margin-right: 8px;
  color: #c7a17a;
  width: 20px;
  text-align: center;
}

/* --------------------------------------------- */
/* SEÇÃO: Destaques                             */
/* --------------------------------------------- */
.destaques-section {
  background: #f5eee6; /* Cor de fundo suave */
  padding: 30px;
  border-radius: 8px; /* Bordas arredondadas */
  margin: 40px 0; /* Espaçamento entre seções */
}

.destaques-section h3 {
  text-align: center;
  color: #5a3921; /* Cor do título */
  margin-bottom: 20px;
  font-size: 1.5rem; /* Tamanho da fonte */
}

.destaques-list {
  list-style: none;
  max-width: 600px; /* Limita a largura da lista */
  margin: 0 auto;
  align-content: center;
  justify-content: center;
}

.destaques-list li {
  margin-bottom: 10px;
  padding-left: 30px; /* Espaçamento à esquerda para os itens */
  position: relative;
}

.destaques-list i {
  color: #c7a17a; /* Cor do ícone */
  position: absolute;
  left: 0;
  top: 5px;
}

/* --------------------------------------------- */
/* SEÇÃO: Novidades                             */
/* --------------------------------------------- */
.novidades-section {
  margin: 50px 0; /* Espaçamento superior e inferior */
}

.novidades-section h3 {
  text-align: center;
  color: #5a3921; /* Cor do título */
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.novidades-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  ); /* Grid flexível para diferentes larguras */
  gap: 20px; /* Espaçamento entre os itens */
  text-align: center;
}

.novidade-item {
  padding: 20px; /* Preenchimento interno dos itens */
}

.novidade-item i {
  font-size: 2rem; /* Tamanho do ícone */
  color: #c7a17a; /* Cor do ícone */
  margin-bottom: 15px;
  display: block;
}

/* --------------------------------------------- */
/* SEÇÃO: CTA (Call to Action)                  */
/* --------------------------------------------- */
.cta-section {
  text-align: center;
  margin-top: 50px;
}

.cta-section p {
  font-size: 1.2rem;
  color: #5a3921; /* Cor do texto */
  margin-bottom: 20px;
}

/* --------------------------------------------- */
/* RESPONSIVIDADE PARA TELA PEQUENA             */
/* --------------------------------------------- */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem; /* Tamanho menor do título em telas pequenas */
  }

  .galeria-tres-imagens {
    grid-template-columns: 1fr; /* Um item por linha em telas pequenas */
    padding: 0 1rem; /* Ajuste de preenchimento */
  }

  .info-hover {
    opacity: 1;
    background: rgba(90, 57, 33, 0.7); /* Fundo mais escuro */
  }

  .info-content {
    transform: translateY(0); /* Remoção do efeito de animação */
  }

  .titulo-topo {
    font-size: 1.8rem; /* Tamanho menor do título */
  }

  .ambientes-grid {
    grid-template-columns: 1fr; /* Um item por linha em telas pequenas */
  }
}

/* --------------------------------------------- */
/* SEÇÃO: Footer (Rodapé)                       */
/* --------------------------------------------- */
footer {
  background-color: #5a3921; /* Cor de fundo escura */
  padding: 1rem 0;
}

.site-footer {
  background-color: #5a3921; /* Cor de fundo escura do rodapé */
  color: #f5eee6; /* Cor do texto */
  padding: 30px 0 0; /* Preenchimento superior */
  margin-top: 40px; /* Espaçamento superior */
}

.footer-container {
  display: flex;
  flex-wrap: wrap; /* Flexível e quebra de linha */
  justify-content: space-around; /* Distribui as seções igualmente */
  max-width: 1200px; /* Limita a largura do container */
  margin: 0 auto; /* Centraliza o container */
  padding: 0 20px; /* Preenchimento lateral */
}

.footer-section {
  flex: 1; /* Cada seção ocupa 1 parte do espaço disponível */
  min-width: 250px; /* Largura mínima para cada seção */
  margin-top: 30px; /* Espaçamento superior */
  margin-bottom: 30px; /* Espaçamento inferior */
  padding: 0 15px; /* Preenchimento lateral */
}

.footer-section h3 {
  color: #c7a17a; /* Cor do título das seções */
  margin-bottom: 20px;
  font-size: 18px; /* Tamanho do título */
}

.footer-section p,
.footer-section a {
  color: #edebe5; /* Cor do texto e links */
  text-decoration: none; /* Remove sublinhado dos links */
}

.footer-section a:hover {
  color: #d4a762; /* Cor do link ao passar o mouse */
}

.footer-section ul {
  list-style: none; /* Remove marcadores das listas */
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px; /* Espaçamento entre os itens da lista */
}

.footer-bottom {
  text-align: center; /* Centraliza o conteúdo */
  padding: 14px 0; /* Preenchimento superior e inferior */
  background-color: #f5eee6; /* Cor de fundo clara */
  margin-top: 20px; /* Espaçamento superior */
}

.footer-bottom p {
  margin: 0; /* Remove a margem do parágrafo */
  color: #5a3921; /* Cor do texto */
  font-size: 14px; /* Tamanho do texto */
}

/* --------------------------------------------- */
/* RESPONSIVIDADE PARA TELAS PEQUENAS (menor que 768px) */
/* --------------------------------------------- */
@media (max-width: 768px) {
  .footer-section {
    flex: 100%; /* Cada seção ocupa 100% da largura */
    text-align: center; /* Centraliza o conteúdo nas telas pequenas */
  }
}

/* --------------------------------------------- */
/* PAGE - CARDAPIO                               */
/* --------------------------------------------- */

/* --------------------------------------------- */
/* SEÇÃO: Banner Principal                      */
/* --------------------------------------------- */
#main {
  background-color: #f5eee6; /* Cor de fundo do banner */
}

.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/fundocardapio.webp"); /* Imagem de fundo com gradiente */
  background-size: cover;
  background-position: center; /* Centraliza a imagem */
  color: #fff;
  text-align: center; /* Centraliza o texto */
  padding: 6rem 1rem; /* Espaçamento interno */
  margin-bottom: 2rem; /* Espaço inferior */
  position: relative;
}

.banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

.banner p {
  font-size: 1.2rem;
  max-width: 600px; /* Largura máxima do parágrafo */
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

/* --------------------------------------------- */
/* SEÇÃO: Navegação do Cardápio                 */
/* --------------------------------------------- */
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 15px; /* Espaçamento entre as categorias */
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.category {
  padding: 0.8rem 1.8rem;
  background-color: #d4a762; /* Cor de fundo das categorias */
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s; /* Transição suave */
  border: none;
  font-size: 0.95rem;
}

.category:hover {
  background-color: #b38b4a; /* Cor ao passar o mouse */
  transform: translateY(-2px); /* Efeito de elevação */
}

.category.active {
  background-color: #6f4e37; /* Cor ativa */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
}

/* --------------------------------------------- */
/* SEÇÃO: Itens do Cardápio                     */
/* --------------------------------------------- */
.menu-items {
  max-width: 900px; /* Largura máxima dos itens */
  margin: 0 auto;
  padding: 1rem 1.5rem; /* Preenchimento interno */
  scroll-margin-top: 100px; /* Ajuste de margem ao rolar */
}

.menu-items h3 {
  color: #6f4e37; /* Cor do título da seção */
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d4a762; /* Linha inferior */
}

.menu-items h3 i {
  font-size: 1.4rem;
  color: #d4a762; /* Cor do ícone */
}

/* --------------------------------------------- */
/* SEÇÃO: Cards de Itens do Cardápio            */
/* --------------------------------------------- */
.item-card {
  display: flex;
  justify-content: space-between; /* Espaçamento entre conteúdo */
  align-items: center;
  background-color: #fff;
  padding: 1.8rem;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); /* Sombra nos cards */
  transition: transform 0.3s, box-shadow 0.3s; /* Transições suaves */
  border-left: 4px solid #d4a762; /* Borda à esquerda */
}

.item-card:hover {
  transform: translateY(-5px); /* Efeito de elevação ao passar o mouse */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* Aumenta a sombra */
}

.item-info h4 {
  color: #6f4e37; /* Cor do título do item */
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.item-info p {
  color: #666; /* Cor do texto da descrição */
  font-size: 0.95rem;
  max-width: 500px; /* Largura máxima da descrição */
}

.price {
  font-weight: bold; /* Peso da fonte */
  color: #d4a762; /* Cor do preço */
  font-size: 1.3rem;
  min-width: 80px; /* Largura mínima para o preço */
  text-align: right; /* Alinhamento à direita */
}

/* --------------------------------------------- */
/* PAGE: Sobre Nós                             */
/* --------------------------------------------- */
.sobre-nos {
  padding: 6rem 0; /* Espaçamento interno */
  position: relative;
  overflow: hidden; /* Esconde o conteúdo que ultrapassar */
  background-color: #f5eee6; /* Cor de fundo */
}

.sobre-nos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  ); /* Gradiente de fundo */
  z-index: -1; /* Coloca abaixo do conteúdo */
}

/* --------------------------------------------- */
/* SEÇÃO: Container Principal                   */
/* --------------------------------------------- */
.sobre-container {
  max-width: 1200px; /* Largura máxima */
  margin: 0 auto;
  padding: 0 2rem; /* Preenchimento */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Layout em duas colunas */
  gap: 4rem; /* Espaçamento entre as colunas */
  align-items: center; /* Alinha verticalmente */
}

/* --------------------------------------------- */
/* SEÇÃO: Conteúdo de Texto                     */
/* --------------------------------------------- */
.sobre-conteudo {
  position: relative;
}

.sobre-conteudo h2 {
  font-size: 1rem;
  text-transform: uppercase; /* Texto maiúsculo */
  letter-spacing: 3px;
  color: #d4a762; /* Cor do subtítulo */
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.sobre-conteudo h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Tamanho dinâmico do título */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #5c3a21;
  position: relative;
  display: inline-block;
}

.sobre-conteudo h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #d4a762; /* Linha decorativa */
  border-radius: 2px;
}

.sobre-conteudo p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #5a3921;
  line-height: 1.8;
}

.sobre-conteudo .destaque-sobre {
  font-size: 1.3rem;
  font-style: italic; /* Itálico para destaque */
  color: #d4a762;
  margin: 2rem 0;
  padding-left: 2rem; /* Espaçamento à esquerda */
  border-left: 3px solid #d4a762; /* Linha decorativa à esquerda */
  position: relative;
}

.sobre-conteudo .destaque-sobre span {
  display: inline-block;
  margin-left: 0.5rem;
  transform: translateY(2px);
}

/* --------------------------------------------- */
/* SEÇÃO: Imagem de Apresentação                */
/* --------------------------------------------- */
.sobre-imagem {
  position: relative;
  border-radius: 20px; /* Bordas arredondadas */
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); /* Sombra da imagem */
  transform: perspective(1000px) rotateY(-5deg); /* Efeito de perspectiva */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); /* Transição suave */
  height: 500px; /* Altura da imagem */
}

.sobre-imagem:hover {
  transform: perspective(1000px) rotateY(0deg); /* Efeito ao passar o mouse */
}

.sobre-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cobre toda a área da imagem */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* --------------------------------------------- */
/* SEÇÃO: Responsividade                        */
/* --------------------------------------------- */
@media (max-width: 992px) {
  .sobre-container {
    grid-template-columns: 1fr; /* Layout de uma coluna */
    gap: 3rem;
  }

  .sobre-imagem {
    height: 400px;
    order: -1; /* Coloca a imagem abaixo do texto */
    max-width: 80%; /* Limita a largura */
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sobre-nos {
    padding: 4rem 0; /* Reduz o preenchimento */
  }

  .sobre-imagem {
    margin-top: 60px;
    max-width: 100%; /* Ajuste para telas menores */
    height: 350px;
  }

  .sobre-conteudo h1::after {
    width: 40px; /* Reduz a largura da linha */
    bottom: -5px;
  }
}

/* --------------------------------------------- */
/* PAGE: Página de Contato                     */
/* --------------------------------------------- */
.contact-page {
  max-width: 1200px; /* Largura máxima */
  margin: 0 auto;
  padding: 2rem; /* Preenchimento */
  display: grid;
  grid-template-columns: 1fr; /* Layout de uma coluna por padrão */
  gap: 3rem; /* Espaçamento entre os itens */
  color: #5c3a21; /* Cor do texto */
}

/* --------------------------------------------- */
/* SEÇÃO: Título da Página                      */
/* --------------------------------------------- */
.contact-page h2 {
  font-size: 2rem; /* Tamanho do título */
  margin-bottom: 1.5rem;
  color: #d4a762; /* Cor do título */
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-page h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #d4a762; /* Linha abaixo do título */
}

/* --------------------------------------------- */
/* SEÇÃO: Informações de Contato                */
/* --------------------------------------------- */
.contact-info {
  background-color: #f5eee6; /* Cor de fundo */
  margin-top: 80px;
  padding: 2rem;
  border-radius: 8px; /* Bordas arredondadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
}

.info-container {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* Layout responsivo */
  gap: 2rem; /* Espaçamento entre os itens */
}

.info-item {
  display: flex;
  gap: 1rem; /* Espaçamento entre ícones e texto */
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: #d4a762; /* Cor dos ícones */
  margin-top: 0.3rem;
}

.info-item h3 {
  font-size: 1.2rem; /* Tamanho do subtítulo */
  margin-bottom: 0.5rem;
  color: #5c3a21; /* Cor do subtítulo */
}

.info-item p {
  margin: 0.3rem 0;
  line-height: 1.4; /* Altura da linha para legibilidade */
}

/* --------------------------------------------- */
/* SEÇÃO: Formulário de Contato                 */
/* --------------------------------------------- */
.contact-form {
  background-color: #fff; /* Cor de fundo */
  margin-top: 80px;
  padding: 2rem;
  border-radius: 8px; /* Bordas arredondadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
}

.form-group {
  margin-bottom: 1.5rem; /* Espaçamento entre os campos */
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600; /* Negrito para os rótulos */
  color: #5c3a21; /* Cor do rótulo */
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #f5eee6; /* Borda sutil */
  border-radius: 4px; /* Bordas arredondadas */
  font-size: 1rem;
  transition: border-color 0.3s; /* Efeito de transição ao focar */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4a762; /* Cor da borda ao focar */
}

.form-group textarea {
  resize: vertical; /* Permite redimensionamento vertical */
  min-height: 120px; /* Altura mínima do campo de texto */
}

/* --------------------------------------------- */
/* SEÇÃO: Mapa de Localização                   */
/* --------------------------------------------- */
.map {
  margin-top: 1rem;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* Aspect Ratio de 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px; /* Bordas arredondadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none; /* Remove a borda do iframe */
}

/* --------------------------------------------- */
/* SEÇÃO: Responsividade                        */
/* --------------------------------------------- */
@media (min-width: 768px) {
  .contact-page {
    grid-template-columns: 1fr 1fr; /* Layout em duas colunas */
  }

  .map {
    grid-column: span 2; /* Ocupa duas colunas */
  }
}

@media (min-width: 992px) {
  .contact-page {
    grid-template-columns: 1fr 1.5fr; /* Layout em duas colunas com uma maior */
  }

  .map {
    grid-column: span 2; /* Mapa ocupa as duas colunas */
  }
}
