@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #f4fdf4;
  color: #333;
}

/* ----------------------------------------------------------------------------------------------- */

/* Nav */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #194530;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-size: 20px;
}

header .logo {
  height: 80px;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

nav ul li a {
  font-family: "Lora", serif;
  text-decoration: none;
  color: #efedd0;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #efedd0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li.separador {
  color: #efedd0;
  padding: 0 0.25rem;
  pointer-events: none;
}

.mobile-menu-icon {
  display: none;
}

.mobile-menu {
  display: none;
  width: 100%;
  background-color: #194530;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.mobile-menu.open {
  display: block;
}

/*alterações pequenas*/
.container-height {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.envio-bottom {
  display: flex;
  flex-direction: row;
}

.envio-bottom-left {
  flex: 2;
}

.envio-bottom-right {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.envio-bottom-right img {
  max-width: 200px;
}

.sobre-nos {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.sobre-nos-left {
  display: flex;
  flex-direction: column;
}

.sobre-nos-right {
  display: flex;
  flex-direction: row;
}

.sobre-nos-right .imagem img {
  width: 220px;
  height: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .envio-bottom {
    display: flex;
    flex-direction: column;
  }

  .envio-bottom-right img {
    min-width: 200px;
  }

  .desktop-menu {
    display: none;
  }

  .sobre-nos {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
  }

  .sobre-nos-left {
    display: flex;
    flex-direction: column;
  }

  .sobre-nos-right {
    display: flex;
    flex-direction: row;
  }

  .sobre-nos-right .imagem img {
    width: 220px;
    height: auto;
  }

  nav {
    padding: 1.5rem 4rem;
  }

  nav ul li a {
    display: none;
  }

  .separador {
    display: none;
  }

  .logo {
    max-height: 60px;
    margin-bottom: 1rem;
  }

  .mobile-menu-icon {
    display: block;
  }

  .mobile-menu-icon button {
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-icon img {
    width: 35px;
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    margin: 0;
  }

  .mobile-menu li a {
    color: #efedd0;
    font-family: "Lora", serif;
    text-decoration: none;
    padding: 1rem 0;
    display: block;
  }

  .open {
    display: block;
  }
}

/* ----------------------------------------------------------------------------------------------- */
#hero {
  background-image: url("imagens/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #efedd0;
  padding: 0 20px;
}

.hero-conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 800px;
}

.hero-conteudo p {
  font-size: 1.6rem;
  font-family: "Lora", serif;
  margin: 0 0 1rem 0;
}

.hero-conteudo h1 {
  font-size: 5.2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.botao {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #efedd0;
  border-radius: 4px;
  background-color: transparent;
  color: #efedd0;
  text-decoration: none;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 200px;
}

.botao:hover {
  background-color: #efedd0;
  color: #194530;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero-conteudo {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-conteudo h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-conteudo p {
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .botao-hero {
    font-size: 18px;
    padding: 12px 24px;
    margin-top: 15px;
  }
}

/* ----------------------------------------------------------------------------------------------- */

/* Categorias de Produtos */
#categoria-produtos {
  text-align: center;
  padding: 100px 20px;
  background-color: #efedd0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#categoria-produtos h2 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #174c2a;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.categoria-produtos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.categoria-produto-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.categoria-produto-item:hover {
  transform: scale(1.05);
}

.categoria-produto-item img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.categoria-produto-item a {
  text-decoration: none;
  color: #174c2a;
  font-family: "Lora", serif;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
  #categoria-produtos {
    padding: 60px 10px;
  }

  #categoria-produtos h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .produtos-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .produto-item {
    width: calc(50% - 20px);
    box-sizing: border-box;
  }

  .produto-item img {
    width: 100%;
    max-width: 130px;
    margin-bottom: 8px;
  }

  .produto-item p {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------------------------------------------- */

/* Valores */
#valores {
  text-align: center;
  padding: 100px 20px;
  background-color: #194530;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#valores h2 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #efedd0;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.valores-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.valores-img img {
  height: 220px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.valores-img img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  #valores {
    padding: 60px 10px;
  }

  #valores h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .valores-img {
    gap: 15px;
  }

  .valores-img img {
    height: auto;
    max-width: 130px;
    border-radius: 12px;
  }

  .valores-img {
    flex-wrap: wrap;
    justify-content: center;
  }

  .valores-img img {
    flex: 0 0 calc(50% - 15px);
    box-sizing: border-box;
  }
}

/* ----------------------------------------------------------------------------------------------- */

/* Missão */
#missao {
  text-align: center;
  padding: 100px 20px;
  background-color: #efedd0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#missao h2 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #174c2a;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.missao-conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
}

.missao-conteudo p {
  font-family: "Lora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #174c2a;
  text-align: justify;
  max-width: 500px;
}

.missao-conteudo img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  #missao {
    padding: 60px 10px;
  }

  #missao h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .missao-conteudo {
    flex-direction: column;
    padding: 0 10px;
  }

  .missao-conteudo p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
  }

  .missao-conteudo img {
    display: none;
  }
}

/* Missão ícones */
#diferenciais {
  background-color: #194530;
  padding: 35px 20px;
  color: #efedd0;
}

.diferenciais-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.diferenciais-conteudo {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  flex: 1 1 200px;
  max-width: 250px;
}

.diferenciais-conteudo img {
  width: 75px;
  margin-bottom: 10px;
  filter: brightness(3) saturate(100%) invert(89%) sepia(19%) saturate(309%) hue-rotate(12deg) brightness(93%) contrast(88%);
}

/* Responsividade */
@media (max-width: 768px) {
  #diferenciais {
    padding: 30px 10px;
    text-align: center;
  }

  .diferenciais-container {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .diferenciais-conteudo {
    max-width: 90%;
    font-size: 1.2rem;
  }

  .diferenciais-conteudo img {
    height: auto;
    max-width: 100px;
    margin-bottom: 8px;
  }
}

/* ----------------------------------------------------------------------------------------------- */

/* Sobre nós */
#sobre-nos {
  background-color: #efedd0;
  padding: 60px 20px;
}

#sobre-nos h2 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #174c2a;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-align: center;
}

.conteudo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.conteudo .texto {
  font-family: "Lora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #174c2a;
  text-align: justify;
  max-width: 500px;
}

.conteudo .imagem {
  flex: 1 1 250px;
  text-align: center;
}

.conteudo .imagem img {
  width: 100%;
  max-width: 250px;
  border-radius: 6px;
}

.legenda {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #174c2a;
}

.legenda strong {
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
  #sobre-nos {
    padding: 500px 15px;
  }

  #sobre-nos h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .conteudo {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .conteudo .texto {
    font-size: 1.1rem;
    text-align: center;
    max-width: 100%;
  }

  .conteudo .imagem img {
    max-width: 160px;
  }

  .legenda {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

/* ----------------------------------------------------------------------------------------------- */

/* Produtos */
#produtos {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: #efedd0;
}

#produtos h2 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #174c2a;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-align: center;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-sizing: border-box;
}

.produto {
  background-color: #f7f6e8;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.produto:hover {
  transform: scale(1.02);
}

.produto img {
  height: 130px;
  object-fit: contain;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 4px;
}

.produto h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 10px;
  color: #174c2a;
  font-family: "Roboto", sans-serif;
}

.descricao {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: #333;
  font-family: "Lora", sans-serif;
}

.descricao strong {
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
  #produtos {
    padding: 60px 10px;
  }

  #produtos h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .produto img {
    height: 120px;
  }

  .produto h3 {
    font-size: 1.1rem;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  #produtos {
    grid-template-columns: 1fr;
  }

  .produto {
    padding: 14px;
  }

  .produto img {
    height: 110px;
  }

  .descricao {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ----------------------------------------------------------------------------------------------- */

/* Entrega */
#envio {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #194530;
  padding: 100px 20px;
}

#envio h2 {
  font-family: "Roboto", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #efedd0;
  margin-bottom: 40px;
  text-align: center;
}

.envio-conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.envio-conteudo p {
  font-family: "Lora", sans-serif;
  font-size: 25px;
  line-height: 1.6;
  color: #efedd0;
  text-align: justify;
  max-width: 500px;
  margin: 0;
}

.botao img {
  width: 30px;
  margin-right: 10px;
  filter: brightness(3) saturate(100%) invert(89%) sepia(19%) saturate(309%) hue-rotate(12deg) brightness(93%) contrast(88%);
}

/* Responsividade */
@media (max-width: 768px) {
  #envio {
    padding: 60px 15px;
  }

  #envio h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .envio-conteudo {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .envio-conteudo p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 100%;
  }

  .envio-conteudo img {
    width: 30px;
  }

  .envio-conteudo .botao {
    padding: 5px;
    font-size: 1rem;
  }

  .botao-envio-container {
    display: flex;
    justify-content: center;
  }
}

/* ----------------------------------------------------------------------------------------------- */

/* Whats fixo */
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 32px;
  z-index: 1000;
  width: 70px;
  height: 70px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.linkwpp {
  min-width: 270px;
}

.whatsapp-fixo:hover {
  transform: scale(1.1);
}

.whatsapp-fixo img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

/* ----------------------------------------------------------------------------------------------- */

/* Linha divisória */
.linha-divisoria {
  background-color: #e8e7cb;
  color: #194530;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.linha-divisoria2 {
  background-color: #194530;
  color: #e8e7cb;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.linha-conteudo {
  display: inline-flex;
  animation: deslizar 20s linear infinite;
}

.linha-divisoria:hover .linha-conteudo {
  animation-play-state: paused;
}

@keyframes deslizar {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------------------------------------------------------- */

/* Footer */
footer {
  background-color: #194530;
  color: #efedd0;
  font-family: "Lora", sans-serif;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  width: 120px;
}

.footer-links h4,
.footer-about h4 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #efedd0;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f7f6e8;
  text-decoration: underline;
}

.footer-about p {
  max-width: 300px;
  line-height: 1.6;
  font-size: 14px;
}

#footer-contato a {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 10px 0;
  text-decoration: none;
  color: #e8e7cb;
}

#footer-contato a:hover {
  color: #f7f6e8;
  text-decoration: underline;
}

#footer-contato img {
  width: 20px;
  margin-right: 8px;
  filter: brightness(3) saturate(100%) invert(89%) sepia(19%) saturate(309%) hue-rotate(12deg) brightness(93%) contrast(88%);
}

.footer-linha {
  border: none;
  border-top: 1px solid #f5f5dc;
  margin: 30px 0 20px;
}

/* Rodapé final */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.footer-links-legais {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links-legais a {
  color: #f5f5dc;
  text-decoration: none;
}

.footer-links-legais a:hover {
  color: #f7f6e8;
  text-decoration: underline;
}

.footer-bottom a {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    display: none;
  }

  .footer-about {
    display: none;
  }

  .footer-contato p {
    font-size: 14px;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }

  .footer-contato {
    max-width: 100%;
    align-items: center;
  }

  .footer-links-legais {
    justify-content: center;
    gap: 10px;
  }
}