* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  background: #fefdf9;
  color: #0a4943;
  line-height: 1.6;
}

header {
  background: rgba(10, 73, 67);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eaeaea;
  height: 90px;
}

html {
  scroll-behavior: smooth;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0rem;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
  margin: 0;
  padding: 0;
}

.logo-img.scrolled {
  opacity: 0.8;
  transform: translateY(3px) scale(0.95);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  color: #ffffff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
  transform: scale(1);
  animation: none;
}
.hero-bg.active {
  opacity: 1;
  animation: zoom 10s ease-in-out infinite;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.hero-content.left-box {
  background: rgba(10, 73, 67, 0.75); /* faixa verde escura translúcida */
  padding: 2rem;
  border-radius: 12px;
  max-width: 480px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1.2rem 1rem;
    text-align: center;
  }

  .hero-content.left-box {
    max-width: 90%;
    padding: 1.2rem 1.2rem;
    background: rgba(10, 73, 67, 0.85);
    margin-top: 1rem;
    border-radius: 10px;
  }

  .hero h1 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .hero .btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .hero .btn.primary {
    background: #ffffff;
    color: #0a4943;
    border: none;
  }

  .hero .btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
  }

  .hero .btn:hover {
    opacity: 0.9;
  }
  .btn,
  .btn.primary {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
.buttons {
  flex-direction: column;
  gap: 0.6rem;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
}

/* PRIMÁRIO: branco com texto verde */
.btn.primary {
  background-color: #ffffff;
  color: #0a4943;
  border: none;
}
.btn.primary:hover {
  background-color: #f0f0f0;
}
/* SECUNDÁRIO: transparente com borda branca */
.btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.como-funciona,
.cardapio,
.depoimentos,
.cta-final {
  padding: 2rem 1rem;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.fidelidade {
  background: #c6ea4b22;
}

.grid-cardapio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.cta-final {
  background: #0a4943;
  color: #ffffff;
}

.cta-final h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.menu-btn {
  padding: 0.4rem 0.9rem;
  border: 2px solid #0a4943;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
  font-size: 0.9rem;
}

.menu-btn:hover {
  background: white;
  color: #0a4943;
}

/* Oculta o menu por padrão no mobile */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 260px;
  background-color: #c6ea4b;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  overflow: auto;
  overscroll-behavior: contain;
}

.nav-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Ícone do menu hambúrguer */
.menu-toggle {
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  display: block;
  z-index: 1001;
  user-select: none;
  transition: transform 0.2s ease;
}

/* Estilo dos links no menu hambúrguer */
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.nav-menu li {
  text-align: left;
}

.nav-menu a {
  color: #0a4943;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998; /* abaixo do menu */
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-social {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #0a4943;
}

.menu-social p {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 0.95rem;
}

.menu-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-social a {
  color: #0a4943;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.menu-social a:hover {
  text-decoration: underline;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content.left-box {
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
}

/* Mostra o botão no mobile 
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 1rem;
    width: max-content;
    min-width: 180px;
    display: none;
    flex-direction: column;
    background-color: #0a4943;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-menu li {
    text-align: right;
  }
}
nav ul {
  display: none;
}
*/

.fidelidade {
  padding: 3rem 1rem;
  text-align: center;
  background: radial-gradient(circle at center, #f0faef 30%, #fefdf9 100%);
  position: relative;
  z-index: 1;
}
.fidelidade h3 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

.fidelidade .subtitulo {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 2rem;
  font-weight: 400;
  color: #0a4943;
}

.fidelidade-etapas {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.etapa {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.etapa .icone {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.fidelidade-btn {
  background-color: #0a4943;
  color: #ffffff;
  border: none;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
  max-width: 320px;
  animation: pulse 2s infinite;
}

.fidelidade-btn:hover {
  background-color: #083c36;
  color: #ffffff;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 73, 67, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(10, 73, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 73, 67, 0);
  }
}
.etapa .icone svg {
  color: #0a4943;
  margin-bottom: 0.5rem;
}
.etapa .icone {
  transition: transform 0.3s ease;
}
.etapa:hover .icone {
  transform: scale(1.15);
}
.cardapio-dinamico {
  padding: 3rem 1rem;
  text-align: center;
  background: #ffffff;
}

.cardapio-dinamico h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
}

.cardapio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid #0a4943;
  background: transparent;
  color: #0a4943;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #0a4943;
  color: #ffffff;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.tab-content li {
  background: #f4f4f4;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  color: #0a4943;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  justify-items: center;
  margin-top: 1rem;
}

.produto {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 100%;
  max-width: 240px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.produto:hover {
  transform: translateY(-4px);
}

.produto img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.produto:hover img {
  transform: scale(1.05);
}
.produto p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 73, 67, 0.5);
  color: #ffffff;
  padding: 0.5rem;
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  backdrop-filter: blur(2px);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 1rem;
}

.modal-content img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.modal-content p {
  margin-top: 1rem;
  color: #0a4943;
  font-weight: 500;
}

.close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2rem;
  color: #0a4943;
  cursor: pointer;
}
.quem-somos {
  background: #fefdf9;
  padding: 4rem 1rem;
  margin-top: 4rem;
}

.qs-bloco {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.qs-video video {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
.qs-texto {
  padding: 1rem 2rem;
  text-align: left;
}
.qs-subtitulo {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7fa35b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  display: block;
}

.qs-texto h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: #0a4943;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.qs-texto p {
  font-family: "Lato", sans-serif;
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  max-width: 540px;
}

.saiba-mais {
  background: #0a4943;
  color: #ffffff;
  text-decoration: none;
  padding: 0.65rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.saiba-mais:hover {
  background: #083c36;
  transform: translateY(-1px);
}

/* Responsivo */
@media (max-width: 768px) {
  .qs-bloco {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qs-video video {
    max-width: 90%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .qs-texto {
    text-align: left; /* continua alinhado à esquerda no mobile */
    padding: 1rem;
  }
  .qs-texto p {
    font-size: 1rem;
  }
}

.nossas-lojas {
  padding: 4rem 1rem;
  background-color: #eaf4ea;
}

.nossas-lojas h3 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  color: #0a4943;
  margin-bottom: 2rem;
}

.lojas-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lojas-container {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.loja-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.loja-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.loja-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loja-info h4 {
  margin-bottom: 0.5rem;
  color: #0a4943;
  font-family: "Poppins", sans-serif;
}

.loja-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.btn-ver-mapa {
  margin-top: 0.5rem;
  display: inline-block;
  background: #0a4943;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn-ver-mapa:hover {
  background: #083832;
}
.cta-final {
  background-image: url("imagens/cta-bg.jpg"); /* substitua pelo caminho correto */
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
  padding: 6rem 1rem;
}

.cta-overlay {
  background-color: rgba(10, 73, 67, 0.7); /* sobreposição escura */
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.cta-content {
  max-width: 600px;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-cta {
  background-color: #c6ea4b;
  color: #0a4943;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #b1d543;
}
.footer-leaf {
  background-color: #0a4943;
  color: white;
  padding: 3rem 1.5rem;
  font-size: 0.9rem;
  border-top: 2px solid #e0e0e0;
  text-align: left;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.footer-logo {
  height: 100px;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  line-height: 2;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.links-uteis h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.links-uteis ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.links-uteis ul li span {
  position: absolute;
  left: 0;
  top: 0.05rem;
}

.links-uteis ul li a {
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  transition: all 0.3s ease;
}

.links-uteis ul li a:hover {
  color: #c6ea4b;
  transform: translateX(4px);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.footer-social {
  text-align: left;
}

.footer-social h4 {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-icons a svg {
  fill: #ffffff;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.social-icons a:hover svg {
  transform: scale(1.2);
  fill: #c6ea4b;
}
.social-icon {
  position: relative;
  display: inline-block;
}

.social-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 130%; /* em vez de bottom */
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #0a4943;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.social-icon:hover::after {
  opacity: 1;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebc59;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.trabalhe-conosco {
  background: #f8f8f8;
  padding: 3rem 1rem;
  text-align: center;
}

.container-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.container-form h2 {
  font-size: 1.8rem;
  color: #0a4943;
  margin-bottom: 1rem;
}

.container-form p {
  color: #555;
  margin-bottom: 2rem;
}

.container-form input,
.container-form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

.upload-label {
  display: block;
  text-align: left;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #0a4943;
}

.upload-label input[type="file"] {
  margin-top: 0.5rem;
}

.container-form .btn {
  background-color: #0a4943;
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.container-form .btn:hover {
  background-color: #083b37;
}

.sucesso-msg {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #e0f8e3;
  border: 1px solid #4caf50;
  border-radius: 8px;
  color: #2d7832;
  font-weight: bold;
}
