/* ===========================
   RESET E CONFIGURAÇÕES GERAIS
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif !important;
  background-color: #fffaf2 !important;
  color: #333 !important;
  line-height: 1.6;
  overflow-x: hidden; /* Evita barra de rolagem lateral */
  padding-top: 80px; /* Espaço para compensar header fixo */
}


/* ===========================
   CONTAINER GERAL
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ===========================
   CABEÇALHO FIXO
=========================== */
header {
  background-color: #ffcc00;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 24px;
  font-weight: bold;
  color: #4a2e00;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #4a2e00;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px; /* ajusta conforme o tamanho da sua imagem */
  width: auto;
}


/* ===========================
   BANNER PRINCIPAL
=========================== */
.banner {
  position: relative;
  text-align: center;
}

.banner img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.texto-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 4px #000;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 10px;
  width: 50%;
}

.texto-banner h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.texto-banner p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===========================
   BOTÃO PADRÃO
=========================== */
.btn {
  background-color: #eee01b;
  color: #1a1919;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  font-size: 14px;
  white-space: nowrap;
}

.btn:hover {
  background-color: #f09a05;
}

/* ===========================
   SEÇÕES GERAIS
=========================== */
.secao {
  padding: 60px 20px;
  text-align: center;
}

.secao h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #4a2e00;
}

/* ===========================
   CARROSSEL DE DEPOIMENTOS E MENU
=========================== */
.carousel-container {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-track img {
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===========================
   INDICADORES DO CARROSSEL
=========================== */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.carousel-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #ffcc00;
}

/* ===========================
   BOTÕES DE NAVEGAÇÃO
=========================== */
.carousel-btn {
  background-color: #ffcc00;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #e6b800;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

/* ===========================
   CARDS DO CARDÁPIO
=========================== */
.menu-card {
  width: 260px;
  background-color: #fff;
  margin-right: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  flex-shrink: 0;
}

.menu-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.menu-card h3 {
  font-size: 1.1rem;
  margin: 5px 0;
  color: #333;
}

.menu-card p {
  font-weight: bold;
  color: #ffcc00;
  font-size: 1rem;
}

/* ===========================
   SEÇÃO CONTATO
=========================== */
.contato p {
  margin-bottom: 10px;
  font-size: 16px;
}

.mapa iframe {
  margin-top: 20px;
  border-radius: 10px;
}

/* ===========================
   RODAPÉ
=========================== */
footer {
  background-color: #4a2e00 ;
  color: #fff ;
  text-align: center ;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  
 
}
footer .container {
  max-width: 100%;
}

footer a {
  color: #fffcc0;
  text-decoration: none;
  margin-left: 10px;
  display: inline-block;
  margin: 5px 0;
}
footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .row > div {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  footer .row {
    justify-content: space-between;
    text-align: left;
  }

  footer .row > div {
    flex: 1;
    padding: 0 20px;
  }
}

/* ===========================
   BOTÃO FLUTUANTE WHATSAPP
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background-color: #eeea0b;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 15px #eeea0b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(155, 145, 13, 0.9);
}

/* ===========================
   FRASE ANIMADA
=========================== */
#frase-animada {
  display: inline-block;
  transition: opacity 0.5s ease-in-out;
}

#frase-animada.fade {
  opacity: 0;
}

/* ===========================
   RESPONSIVIDADE
=========================== */
@media (max-width: 1199px) {
  .carousel-track img {
    width: 240px;
  }

  .menu-card {
    width: 220px;
  }
}

@media (max-width: 767px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  header nav a {
    margin: 10px 0;
  }

  .texto-banner h2 {
    font-size: 24px;
  }

  .texto-banner p {
    font-size: 14px;
  }

  .carousel-track img {
    width: 90vw;
    max-width: 350px;
    margin-right: 15px;
  }

  .menu-card {
    width: 90vw;
    max-width: 320px;
    margin-right: 15px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .carousel-btn.left {
    left: 5px;
  }

  .carousel-btn.right {
    right: 5px;
  }
}
/* === MAPA RESPONSIVO === */
.mapa-responsiva {
  position: relative;
  width: 100%;
  max-width: 400px; /* Limita o tamanho máximo */
  padding-bottom: 30%; 
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px auto;
}

.mapa-responsiva iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
