* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

a {
  text-decoration: none;
  color: #000000;
}

.whts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

header {
  background-color: #000;
}

.logo-ano {
  display: flex;
  gap: 50px;
  align-items: center;
}

.logo-primario {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  margin-top: 20px;
}

.logo-primario img {
  width: 400px;
}

.logo h1 {
  font-size: 28px;
  font-weight: bold;
}

/* Menu */
.menu {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #fcdb00;
}

/* *********************menunav*********************** */
/* Botão que abre o menu */
.mobile-menu-button {
  display: none;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  margin: 15px auto;
}

/* Fundo escuro atrás do menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Menu em si */
.mobile-menu {
  text-align: center;
  width: 90%;
  max-width: 320px;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 1.9s ease;
  position: relative;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  display: block;
  margin: 30px 0;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: #ffd700;
}

/* Botão de fechar */
.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Quando ativo */
.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateY(0);
  opacity: 1;
}

/* Mostrar botão e esconder menu padrão em telas pequenas */
@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
    background-color: #000000;
  }

  .menu {
    display: none;
  }
}

/* *********************menunav*********************** */

/* ===================== */
/* RESPONSIVIDADE MOBILE */
/* ===================== */
@media screen and (max-width: 768px) {
  .top-bar {
    font-size: 10px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Topo */
.top-bar {
  background: #fcdb00;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 10px;
}

.address-line {
  display: flex;
  align-items: center;
  gap: 6px; /* espaço entre ícone e texto */
}

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  padding: 9px 12px;
  border-radius: 65%;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fixo img {
  width: 32px;
  height: 32px;
  filter: invert(1); /* deixa o ícone branco */
}

.whatsapp-fixo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* *********************************************** */

.title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  background: linear-gradient(
    to bottom,
    rgb(8 42 123 / 35%) 50%,
    rgb(255 255 255 / 0%) 76%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.5rem;
  }
}

/* ********************************************************** */

.container-sobre {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin:  0 auto;
}

.titulo {
  text-align: center;
  font-size: 3rem;
  color: #c62828;
  margin-bottom: 40px;
}

.historia {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.historia img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.texto-historia {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.8;
}

.texto-historia strong {
  color: #c62828;
}

.missao {
  margin-top: 60px;
  background: #fff;
  padding: 40px;
  border-left: 6px solid #c62828;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.missao h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c62828;
}

.missao p {
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .historia {
    flex-direction: column;
    margin: 0 20px;
  }

  .titulo {
    font-size: 2.2rem;
  }

  .texto-historia {
    font-size: 1rem;
  }
  .missao {
    margin: 0 20px ;
  }


  .missao h3 {
    font-size: 1.5rem;
  }
}

.avaliacoes {
  background-color: #fff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.titulo-avaliacoes {
  font-size: 2.5rem;
  color: #c62828;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.avaliacao-conjunto {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.foto-entrega img {
  width: 220px;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.avaliacao-lado {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

.avaliacao-lado img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.comentario {
  background: #f2f2f2;
  padding: 15px;
  border-radius: 8px;
  text-align: left;
  font-size: 1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c62828;
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: #b71c1c;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

@media (max-width: 768px) {
  .carousel-slide.active {
    flex-direction: column;
    align-items: center;
  }

  .foto-entrega img {
    width: 100%;
    height: auto;
  }

  .avaliacao-lado {
    max-width: 100%;
  }
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.avaliacoes-section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  background: #fff;
  flex-wrap: wrap;
  margin-top: 60px;
  background: #fff;
  padding: 0 40px;
  border-left: 6px solid #c62828;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin: 20px auto;

}

.texto-loja {
  flex: 1;
  min-width: 280px;
}

.texto-loja h2 {
  font-size: 28px;
  color: #c62828;
  margin-bottom: 16px;
}

.texto-loja p {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

.carrossel {
  flex: 1;
  min-width: 280px;
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.carrossel-interno {
  display: flex;
  flex-direction: column;
  animation: subir 50s linear infinite;
}

.carrossel-interno img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes subir {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .avaliacoes-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin: 20px;
  }

  .texto-loja h2 {
    font-size: 24px;
  }

  .texto-loja p {
    font-size: 16px;
  }
}

.rodape {
  background-color: #000;
  padding: 20px 0;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.conteudo-rodape {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 50px;
}

.info-esquerda,
.info-direita {
  flex: 1;
  min-width: 220px;
}

.logo-centro img {
  max-height: 60px;
  max-width: 180px;
}

.info-esquerda strong {
  font-size: 16px;
  color: #fff;
}

.info-esquerda p,
.info-direita p {
  margin: 5px 0;
  font-size: 14px;
}

.info-direita a {
  color: white;
}

@media (max-width: 768px) {
  .conteudo-rodape {
    flex-direction: column;
    text-align: center;
  }

  .logo-centro {
    order: -1;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .logo-primario img{
    width: 300px;
  }
}