@font-face {
  font-family: "Mr Stawart";
  src: url(./mr-stalwart.ttf);
}
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
}

:root {
  --fonte-principal: "Poppins", sans-serif;
  --fonte-secundaria: "Nunito", sans-serif;
  --fonte-alternativa: "Mr Stawart", cursive;
  --cor-primaria: #f3fa33;
  --cor-sidebar: #686d76;
  --cor-secundaria: #2e9b4c;
  --cor-auxiliar: #f90203;
  --cor-background: #fbfbfb;
  --cor-textos: #212121;
}

/* Estilização barra lateral */

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--cor-sidebar);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #373a40;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-family: var(--fonte-principal);
  color: var(--cor-textos);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

body::before {
  background: var(--gradiente-1);
}

body::after {
  background: var(--gradiente-2);
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

body.fade-out-after::after {
  opacity: 0;
}

body.home-page::before {
  background-image: url(./img/Background-grid.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body.home-page::after {
  background: transparent;
}

main {
  display: flex;
  flex-direction: column;
}

header {
  position: relative;
  z-index: 9999;
  background-image: url(./img/banner-header.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem;
  font-weight: 900;
  box-shadow: 0 0 8px 2px rgba(243, 250, 51, 1),
    0 0 20px 8px rgba(243, 250, 51, 0.9), 0 0 40px 16px rgba(243, 250, 51, 0.6),
    0 0 80px 32px rgba(243, 250, 51, 0.35),
    0 0 120px 48px rgba(243, 250, 51, 0.15);
}

header p {
  font-size: 3rem;
  font-family: var(--fonte-alternativa);
  color: var(--cor-secundaria);
  text-shadow:
  0 0 1px #2e9b4c,          /* brilho suave da cor base */
  0.5px 0.5px 1px #1f6c35,  /* leve sombra escura */
  1px 1px 1.5px #144d28,    /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.15);
  transform: perspective(500px);
  margin-right: 3rem;
  font-weight: 100;
}

.logo-header {
  max-width: 230px;
  margin-left: 1rem;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 4rem;
  margin-left: 2rem;
}

/* Efeitos do menu */
@keyframes underline-grow-center {
  from {
    width: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  to {
    width: 100%;
    left: 0;
    transform: translateX(0);
  }
}

.nav-menu .menu a {
  font-weight: 700;
  font-size: 1.7rem;
  position: relative;
  text-decoration: none;
  font-family: var(--fonte-principal);
  color: var(--cor-auxiliar);
  text-shadow:
  0 0 1px #f90203,
  0.5px 0.5px 1.2px #c20000,
  1px 1px 2px #990000,
  0 0 4px rgba(255, 0, 0, 0.3),
  0 0 6px rgba(0, 0, 0, 0.15);
  transform: perspective(500px);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.nav-menu .menu a:hover {
  color: var(--cor-secundaria);
  text-shadow:
  0 0 1px #2e9b4c, 
  0.5px 0.5px 1px #1f6c35,
  1px 1px 1.5px #144d28,
  0 0 2px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
  animation: bounce 0.3s ease-in;
  text-decoration: none;
}

.nav-menu .menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  background-color: var(--cor-secundaria);
  box-shadow:
  0 0 1px #2e9b4c,   
  0.5px 0.5px 1px #1f6c35,
  1px 1px 1.5px #144d28, 
  0 0 2px rgba(0, 0, 0, 0.15);
  width: 0;
  left: 40%;
  transform: translateX(-50%);
  animation: underline-grow-center 0.3s ease-in forwards;
}

#carrossel-banners {
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  
}

.banner-item {
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-item.active {
  opacity: 1;
  pointer-events: auto;
}

.banner-item img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  z-index: 10;
}

.banner-dot {
  width: 50px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dot:hover {
  background-color: var(--cor-secundaria);
  border: 2px solid var(--cor-textos);
}

.banner-dot.active {
  background-color: var(--cor-primaria);
  border: 2px solid var(--cor-textos);
  transform: scale(1.1);
}

#carrossel-banner-guarana,
#carrossel-banner-maca,
#carrossel-banner-jubaina,
#carrossel-banner-agua,
#carrossel-banner-uva,
#carrossel-banner-abacaxi,
#carrossel-banner-limao,
#carrossel-banner-laranja,
#carrossel-banner-black-cola {
  width: 100%;
  overflow: hidden;
}

#carrossel-banner-guarana .banner-item-guarana,
#carrossel-banner-maca .banner-item-maca,
#carrossel-banner-jubaina .banner-item-jubaina,
#carrossel-banner-agua .banner-item-agua,
#carrossel-banner-uva .banner-item-uva,
#carrossel-banner-abacaxi .banner-item-abacaxi,
#carrossel-banner-limao .banner-item-limao,
#carrossel-banner-laranja .banner-item-laranja,
#carrossel-banner-black-cola .banner-item--black-cola {
  width: 100%;
}

#carrossel-banner-guarana .banner-item-guarana img,
#carrossel-banner-maca .banner-item-maca img,
#carrossel-banner-jubaina .banner-item-jubaina img,
#carrossel-banner-agua .banner-item-agua img,
#carrossel-banner-uva .banner-item-uva img,
#carrossel-banner-abacaxi .banner-item-abacaxi img,
#carrossel-banner-limao .banner-item-limao img,
#carrossel-banner-laranja .banner-item-laranja img,
#carrossel-banner-black-cola .banner-item-black-cola img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

section h1 {
  font-family: var(--fonte-principal);
  margin-top: 35px;
  font-size: 2rem;
  color: var(--cor-textos);
}

section p {
  font-family: var(--fonte-secundaria);
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--cor-textos);
}

.section-historia {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem;
  flex-wrap: wrap;
}

.section-historia > div:first-child {
  flex: 1 1 400px;
  max-width: 40%;
  padding: 30px;
  background-image: url(img/Background-historia.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 60px;
  box-shadow: inset 0 0 12px rgba(255, 255, 0, 0.8),
    0 0 24px rgba(255, 255, 0, 0.9), 0 0 48px rgba(255, 255, 0, 1),
    0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 2;
}

.section-historia h2 {
  text-align: center;
  font-family: var(--fonte-alternativa);
  font-size: 5rem;
  font-weight: 100;
  margin-bottom: 20px;
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
}

.section-historia p {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: justify;
  color: var(--cor-textos);
  font-family: var(--fonte-secundaria);
}

.Imagem-nossa-historia {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Imagem-nossa-historia img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.8))
    drop-shadow(0 0 12px rgba(255, 255, 0, 0.9))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 1));
}

.section-valores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  align-items: stretch;
}

.blocos-home,
.blocos-home-valores,
.blocos-home-visao {
  position: relative;
  z-index: 1;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza o conteúdo */
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 60px;
  box-shadow: inset 0 0 12px rgba(255, 255, 0, 0.8),
    0 0 24px rgba(255, 255, 0, 0.9), 0 0 48px rgba(255, 255, 0, 1),
    0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 60px;
  min-height: 280px;
}

/* Título no topo */
.blocos-home h2 {
  text-align: center;
  font-size: 2.2rem;
  font-family: var(--fonte-principal);
  font-weight: 600;
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
}

.blocos-home-valores h2 {
  text-align: center;
  font-size: 2.2rem;
  font-family: var(--fonte-principal);
  font-weight: 600;
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
}

.blocos-home-visao h2 {
  text-align: center;
  font-size: 2.2rem;
  font-family: var(--fonte-principal);
  font-weight: 600;
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
}

.bloco-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.blocos-home p {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--cor-textos);
}

.blocos-home-visao p {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--cor-textos);
}

.blocos-home-valores p {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--cor-textos);
}

.section-premios {
  padding: 60px 20px;
  text-align: center;
}

.section-premios h2 {
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
}

.titulo-premios {
  font-size: 3rem;
  margin-bottom: 100px;  
}

.premios-container {
  font-family: var(--fonte-principal);
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.premio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  margin-top: 30px;
  font-size: 1.3rem;
}

.premio-item-ouro {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  margin-top: 0px;
  font-size: 1.6rem;
}

.premio-item h3 {
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
}

.premio-item-ouro h3 {
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
}

.imagem-premios {
  width: 230px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.8))
    drop-shadow(0 0 12px rgba(255, 255, 0, 0.9))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 1));
}

.imagem-premios-bronze {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.9))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 1));
}

.section-instagram {
  font-size: 1.2rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  transition: translateY 0.3s ease, box-shadow 0.3s ease;
}

.container-botoes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.container-botoes button i {
  color: var(--cor-background);
}

.section-instagram button {
  gap: 10px;
  font-size: 1.2rem;
  width: 220px;
  height: 60px;
  border-radius: 15px;
  border: 20px solid var(--cor-textos);
  background: radial-gradient(circle, #57c574, #2e9b4c);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 2);
  transform: perspective(500px);
  border: 2px solid var(--cor-textos);
  color: var(--cor-background);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.section-instagram button:hover {
  transform: translateY(6px);
  border-color: var(--cor-primaria);
  box-shadow: inset 0 0 10px rgba(255, 255, 0, 0.6),
    inset 0 0 20px rgba(255, 255, 0, 0.4), 0 0 10px rgba(255, 255, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.5);
  cursor: pointer;
}

.section-instagram i {
  font-size: 2rem;
  margin-right: 3px;
  text-shadow: 1px 1px 0 #999, 1px 1px 0 #777, 2px 2px 0 #555, 3px 3px 0 #333,
    2px 2px 5px rgba(0, 0, 0, 2);
  transform: perspective(500px);
}

.texto-socials {
  font-size: 2rem;
  color: var(--cor-secundaria);
  text-shadow:
  0 0 1px #2e9b4c, 
  0.5px 0.5px 1px #1f6c35,
  1px 1px 1.5px #144d28,
  0 0 2px rgba(0, 0, 0, 0.15);
  transform: perspective(500px);
}

.texto-socials i {
  font-size: 3rem;
  gap: 10px;
}

.texto-socials h2 {
  margin-bottom: 20px;
  
  transform: perspective(500px);
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  width: 100%;
  max-width: 1300px;
  margin: 50px auto;
  padding: 4rem;
  justify-content: center;
}

.produto-item-guarana,
.produto-item-jubaina,
.produto-item-maca,
.produto-item-black-cola,
.produto-item-laranja,
.produto-item-abacaxi,
.produto-item-uva,
.produto-item-limao,
.produto-item-agua {
  background: #fff4a4;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 2);
  transform: perspective(500px);
  border: 3px solid var(--cor-secundaria);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  height: 100%;
}

.produto-item-guarana p,
.produto-item-jubaina p,
.produto-item-maca p,
.produto-item-black-cola p,
.produto-item-laranja p,
.produto-item-abacaxi p,
.produto-item-uva p,
.produto-item-limao p,
.produto-item-agua p {
  font-size: 2rem;
}

.produto-item-guarana:hover {
  transform: translateY(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(circle, #ffff66 15%, #ffc300 50%, #b8860b 90%);
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-guarana:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

.produto-item-jubaina:hover {
  transform: translateY(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(
    circle,
    #ffff00 0%,
    #ffd700 20%,
    #daa520 40%,
    #b8860b 60%,
    #3b2b0b 80%
  );
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-jubaina:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

.produto-item-jubaina:hover p {
  color: var(--cor-background);
  text-shadow: 
  0 0 2px #ffffff,         /* branco puro */
  0 0 3px #f2f2f2,         /* branco acinzentado */
  1px 1px 2px #cccccc,     /* contorno claro */
  2px 2px 3px #999999,     /* sombra mais visível */
  3px 3px 4px #777777,     /* separação do fundo claro */
  0 0 6px rgba(255, 255, 255, 0.3),  /* leve brilho branco */
  0 0 8px rgba(0, 0, 0, 0.1); 
  transform: perspective(500px);
}

.produto-item-maca:hover {
  transform: translateY(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(
    circle,
    #ff8080 5%,
    #ff6666 25%,
    #ff4d4d 45%,
    #ff3333 65%,
    #ff1a1a 85%,
    #cc0000 100%
  );
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-maca:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

.produto-item-maca:hover p {
  color: var(--cor-background);
  text-shadow: 
  0 0 2px #ffffff,         /* branco puro */
  0 0 3px #f2f2f2,         /* branco acinzentado */
  1px 1px 2px #cccccc,     /* contorno claro */
  2px 2px 3px #999999,     /* sombra mais visível */
  3px 3px 4px #777777,     /* separação do fundo claro */
  0 0 6px rgba(255, 255, 255, 0.3),  /* leve brilho branco */
  0 0 8px rgba(0, 0, 0, 0.1); 
  transform: perspective(500px);
}

.produto-item-black-cola:hover {
  color: var(--cor-background);
  text-shadow: 
  0 0 2px #ffffff,         /* branco puro */
  0 0 3px #f2f2f2,         /* branco acinzentado */
  1px 1px 2px #cccccc,     /* contorno claro */
  2px 2px 3px #999999,     /* sombra mais visível */
  3px 3px 4px #777777,     /* separação do fundo claro */
  0 0 6px rgba(255, 255, 255, 0.3),  /* leve brilho branco */
  0 0 8px rgba(0, 0, 0, 0.1); 
  transform: perspective(500px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(
    circle,
    #f40009 15%,
    #b90014 35%,
    #800020 55%,
    #400010 75%,
    #000000 90%
  );
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-black-cola:hover img {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
}

.produto-item-black-cola:hover p {
  color: var(--cor-background);
  text-shadow: 
  0 0 2px #ffffff,         /* branco puro */
  0 0 3px #f2f2f2,         /* branco acinzentado */
  1px 1px 2px #cccccc,     /* contorno claro */
  2px 2px 3px #999999,     /* sombra mais visível */
  3px 3px 4px #777777,     /* separação do fundo claro */
  0 0 6px rgba(255, 255, 255, 0.3),  /* leve brilho branco */
  0 0 8px rgba(0, 0, 0, 0.1); 
  transform: perspective(500px);
}

.produto-item-laranja:hover {
  transform: translateY(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(
    circle,
    #ffa500 15%,
    #ff8c00 35%,
    #ff6f00 55%,
    #e65a00 75%,
    #d94c00 90%
  );
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-laranja:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

.produto-item-laranja:hover p {
  color: var(--cor-background);
  text-shadow: 
  0 0 2px #ffffff,         /* branco puro */
  0 0 3px #f2f2f2,         /* branco acinzentado */
  1px 1px 2px #cccccc,     /* contorno claro */
  2px 2px 3px #999999,     /* sombra mais visível */
  3px 3px 4px #777777,     /* separação do fundo claro */
  0 0 6px rgba(255, 255, 255, 0.3),  /* leve brilho branco */
  0 0 8px rgba(0, 0, 0, 0.1); 
  transform: perspective(500px);
}

.produto-item-abacaxi:hover {
  transform: translateY(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(
    circle,
    #b8ab00 75%,
    #667300 85%,
    #4d6600 95%,
    #334d00 100%
  );
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-abacaxi:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

.produto-item-uva:hover {
  transform: translateY(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(
    circle,
    #d48fff 5%,
    #c488f2 25%,
    #a960e5 45%,
    #8e38d8 65%,
    #7310cb 85%,
    #6a0dad 100%
  );
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-uva:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

.produto-item-uva:hover p {
  color: var(--cor-background);
  text-shadow: 
  0 0 2px #ffffff,         /* branco puro */
  0 0 3px #f2f2f2,         /* branco acinzentado */
  1px 1px 2px #cccccc,     /* contorno claro */
  2px 2px 3px #999999,     /* sombra mais visível */
  3px 3px 4px #777777,     /* separação do fundo claro */
  0 0 6px rgba(255, 255, 255, 0.3),  /* leve brilho branco */
  0 0 8px rgba(0, 0, 0, 0.1); 
  transform: perspective(500px);
}

.produto-item-limao:hover {
  transform: translateY(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(
    circle,
    #a8f5a2 15%,
    #69dd83 35%,
    #00c853 55%,
    #00962a 75%,
    #006400 90%
  );
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-limao:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

.produto-item-limao:hover p {
  color: var(--cor-background);
  text-shadow: 
  0 0 2px #ffffff,         /* branco puro */
  0 0 3px #f2f2f2,         /* branco acinzentado */
  1px 1px 2px #cccccc,     /* contorno claro */
  2px 2px 3px #999999,     /* sombra mais visível */
  3px 3px 4px #777777,     /* separação do fundo claro */
  0 0 6px rgba(255, 255, 255, 0.3),  /* leve brilho branco */
  0 0 8px rgba(0, 0, 0, 0.1); 
  transform: perspective(500px);
}

.produto-item-agua:hover {
  transform: translateY(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: radial-gradient(circle, #ffffff 15%, #e0e0e0 50%, #b0c4de 90%);
  border: 1.5px solid var(--cor-background);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.produto-item-agua:hover img {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

.imagem-container {
  width: 100%;
  height: 100%;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.imagem-produto {
  width: 100%;
  height: 100%;
  min-width: 350px;
  max-width: 600px;
  object-fit: contain;
}

.btn-produto {
  width: 60%;
  height: auto;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: var(--cor-secundaria);
  border: 1.5px solid var(--cor-background);
  color: var(--cor-background);
  font-size: 1.05rem;
  font-weight: 550;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.4s ease, background-color 0.3s ease;
}

.btn-produto:hover {
  background-color: #00c853;
  border: 2px solid var(--cor-textos);
  transform: scale(1.03);
}

.carrossel-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  /* centraliza horizontalmente */
  overflow: hidden;
  font-size: 1.1rem;
  display: flex;
  /* agora justify-content funciona */
  justify-content: center;
  align-items: center;
  /* centraliza vertical */
  flex-direction: column;
}

.carrossel-container .grid-produtos-demonstration {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE */
}

.carrossel-container .grid-produtos-demonstration::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, etc. */
}

.carrossel-container .produto-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carrossel-container p {
  margin-top: auto;
  font-size: 2.7rem;
  color: var(--cor-background);
  text-shadow: 
  0 0 2px #ffffff,         /* branco puro */
  0 0 3px #f2f2f2,         /* branco acinzentado */
  1px 1px 2px #cccccc,     /* contorno claro */
  2px 2px 3px #999999,     /* sombra mais visível */
  3px 3px 4px #777777,     /* separação do fundo claro */
  0 0 6px rgba(255, 255, 255, 0.3),  /* leve brilho branco */
  0 0 8px rgba(0, 0, 0, 0.1); 
  transform: perspective(500px);
  align-items: center;
  text-align: center;
  justify-content: center;
}

.carrossel-container .imagem-produto {
  max-width: 100%;
  max-height: 500px;
  margin-bottom: 1rem;
}

.seta-carrossel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--cor-background);
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,
  0.5px 0.5px 1px #222222,
  1px 1px 1.5px #444444,
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
  border: none;
  border-radius: 20%;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 1px 0 #999, 2px 2px 0 #777, 3px 3px 0 #555, 4px 4px 0 #333,
    5px 5px 10px rgba(0, 0, 0, 2);
  transform: perspective(500px);
}

.seta-carrossel:hover {
  transform: translateY(-10%) scale(1.1);
}

.seta-carrossel.anterior {
  left: 20px;
}

.seta-carrossel.proximo {
  right: 20px;
}

.section-produtos-lista {
  background: radial-gradient(circle, #ffe082 50%, #ffca28 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.section-produtos-lista h1 {
  margin-top: 70px;
  font-size: 3rem;
  color: #fff;
  text-shadow: 1px 1px 0 #bbb, 1px 1px 0 #999, 2px 2px 0 #777, 3px 3px 0 #555,
    2px 2px 5px rgba(0, 0, 0, 0.7);
  transform: perspective(500px);
}

.section-produtos-lista img {
  max-height: 400px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 2rem;
  background-image: url(./img/Background-grid.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contact-left {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: inset 0 0 8px rgba(243, 250, 51, 0.5),
    inset 0 0 16px rgba(243, 250, 51, 0.7), 0 0 16px rgba(243, 250, 51, 0.6),
    0 0 32px rgba(243, 250, 51, 0.8), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-left-title h2 {
  font-family: var(--fonte-principal);
  font-weight: 600;
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
  font-size: 3rem;
  margin-bottom: 5px;
}

.contact-left-title hr {
  border: none;
  width: 100%;
  background-color: var(--cor-primaria);
  box-shadow: inset 0 0 8px rgba(243, 250, 51, 0.5),
    inset 0 0 16px rgba(243, 250, 51, 0.7), 0 0 16px rgba(243, 250, 51, 0.6),
    0 0 32px rgba(243, 250, 51, 0.8);
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-inputs {
  font-family: var(--fonte-secundaria);
  font-size: 1.3rem;
  width: 100%;
  max-width: 650px;
  height: 5vh;
  border: 3px solid var(--cor-primaria);
  outline: none;
  padding-left: 2rem;
  font-weight: 600;
  color: var(--cor-sidebar);
  border-radius: 15px;
  background-color: var(--cor-background);
}

.contact-left textarea {
  height: 100%;
  padding-top: 1rem;
  border-radius: 20px;
  border: 3px solid var(--cor-primaria);
  background-color: var(--cor-background);
}

.contact-inputs:focus {
  border: 4px solid var(--cor-secundaria);
}

.contact-inputs::placeholder {
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 1.3rem;
  font-weight: bolder;
  color: var(--cor-background);
  gap: 10px;
  border: 2px solid var(--cor-textos);
  border-radius: 50px;
  background: radial-gradient(circle, #57c574, #2e9b4c);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 2);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.contact-left button:hover {
  transform: translateY(6px);
  border-color: var(--cor-primaria);
  box-shadow: inset 0 0 5px rgba(255, 255, 0, 0.4),
    inset 0 0 10px rgba(255, 255, 0, 0.3), 0 0 10px rgba(255, 255, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.5);
  cursor: pointer;
}

.contact-left button i {
  font-size: 2rem;
}

.contact-right img {
  width: 700px;
  height: 700px;
}

.intro {
  background-image: url(./img/Linha-producao.JPG);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 800px;
  padding: 100px;
  text-align: center;
  box-shadow: inset 0 0 8px 2px rgba(243, 250, 51, 0.7),
    inset 0 0 20px 8px rgba(243, 250, 51, 0.4),
    0 0 8px 2px rgba(243, 250, 51, 1), 0 0 20px 8px rgba(243, 250, 51, 0.9),
    0 0 40px 16px rgba(243, 250, 51, 0.6),
    0 0 80px 32px rgba(243, 250, 51, 0.35),
    0 0 120px 48px rgba(243, 250, 51, 0.15);
  transform: perspective(500px);
}

.intro h2 {
  font-size: 4rem;
  max-width: 1250px;
  padding: 5px;
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
}

.intro p {
  margin-top: 40px;
  gap: 25px;
  font-size: 1.7rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  color: var(--cor-background);
}

.intro button {
  margin-top: 40px;
  font-size: 1.7rem;
  font-family: var(--fonte-principal);
  background: radial-gradient(circle, #57c574, #2e9b4c);
  color: var(--cor-background);
  border: 2px solid var(--cor-textos);
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.intro button i {
  margin-left: 15px;
  font-size: 2rem;
}

.intro button:hover {
  transform: translateY(-6px);
  border-color: var(--cor-primaria);
  box-shadow: inset 0 0 10px rgba(255, 255, 0, 0.6),
    inset 0 0 20px rgba(255, 255, 0, 0.4), 0 0 10px rgba(255, 255, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.5);
  cursor: pointer;
}

.co-packer-page {
  background: transparent;
}

.services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: radial-gradient(circle, #fde59c 50%, #ffdf7d 90%);
  transform: perspective(500px);
}

.services h1 {
  font-size: 3rem;
  text-align: center;
  color: var(--cor-secundaria);
  text-shadow:
  0 0 1px #2e9b4c,          /* brilho suave da cor base */
  0.5px 0.5px 1px #1f6c35,  /* leve sombra escura */
  1px 1px 1.5px #144d28,    /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.15);
  transform: perspective(500px);
  margin-top: 50px;
}

.services h2 {
  font-size: 3rem;
  text-align: center;
  margin-top: 1rem;
}

.services p {
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 850px;
  padding: 30px;
  text-align: center;
  
}

.co-packer-exp {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.co-packer-exp img {
  min-height: 325px;
}

.polaroid {
  background: var(--cor-background);
  border: 2px solid var(--cor-secundaria);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(51, 250, 100, 0.6), 0 0 16px rgba(51, 250, 100, 0.5),
    inset 0 0 6px rgba(51, 250, 100, 0.4), 0 8px 24px rgba(0, 0, 0, 0.7);
  padding: 1rem;
  position: relative;
  width: 400px;
  min-height: 100%;
}

.polaroid img {
  width: 100%;
  height: auto;
  border-radius: 5px 5px 0 0;
}

.polaroid h2 {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #b8860b;
}

.polaroid p {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.5;
}

.polaroid hr {
  border: none;
  width: 90%;
  height: 4px;
  background-color: var(--cor-secundaria);
  box-shadow: 0 0 8px rgba(51, 250, 100, 0.6), 0 0 16px rgba(51, 250, 100, 0.5),
    inset 0 0 6px rgba(51, 250, 100, 0.4), 0 8px 24px rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.vantagens {
  padding: 40px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.texto-vantagens h2 {
  font-family: var(--fonte-principal);
  font-size: 3.5em;
  color: var(--cor-secundaria);
  text-shadow:
  0 0 1px #2e9b4c,          /* brilho suave da cor base */
  0.5px 0.5px 1px #1f6c35,  /* leve sombra escura */
  1px 1px 1.5px #144d28,    /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.15);
  transform: perspective(500px);
  margin-bottom: 20px;
}

.texto-vantagens p {
  font-family: var(--fonte-secundaria);
  font-size: 1.5rem;
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,
  0.5px 0.5px 1px #222222, 
  1px 1px 1.5px #444444,
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  line-height: 2;
}

.vantagens-beneficios {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
  line-height: 1.5;
}

.vantagens-item {
  background: var(--cor-background);
  border: 2px solid var(--cor-secundaria);
  border-radius: 15px;
  padding: 15px;
  width: 20%;
  height: auto;
  text-align: center;
  box-shadow: 0 0 8px rgba(51, 250, 100, 0.6), 0 0 16px rgba(51, 250, 100, 0.5),
    inset 0 0 6px rgba(51, 250, 100, 0.4), 0 8px 24px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s;
}

.vantagens-item h3 {
  font-size: 1.4em;
  color: #b8860b;
  margin-top: 10px;
}

.vantagens-item p {
  font-size: 1.2em;
  color: var(--cor-sidebar);
  margin-top: 10px;
}

.vantagens-item i {
  font-size: 2.5rem;
  color: var(--cor-secundaria);
  text-shadow:
  0 0 1px #2e9b4c,          /* brilho suave da cor base */
  0.5px 0.5px 1px #1f6c35,  /* leve sombra escura */
  1px 1px 1.5px #144d28,    /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.15);
  transform: perspective(500px);
}

.section-tipos-envases {
  background-image: url(./img/Fundo-branco-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  padding: 4rem;
}

.section-tipos-envases h4 {
  font-family: var(--fonte-principal);
  margin-top: 20px;
  font-size: 3rem;
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
}

.section-tipos-envases::after {
  content: "";
  display: block;
  clear: both;
}

.section-producao {
  padding: 5rem;
  text-align: center;
}

.section-producao i {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
}

.section-producao h2 {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
}

.section-tipos-producao {
  padding: 5rem;
  text-align: center;
}

.section-tipos-producao h2 {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  color: var(--cor-textos);
  text-shadow:
  0 0 1px #000000,           /* brilho sutil preto */
  0.5px 0.5px 1px #222222,   /* sombra discreta para contorno */
  1px 1px 1.5px #444444,     /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.2);
  transform: perspective(500px);
  
}

.blocos-processo {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  font-size: 1.4rem;
  justify-content: center;
}

.bloco {
  width: 250px;
  height: 120px;
  background: radial-gradient(
    circle,
    #a8f5a2 15%,
    #69dd83 35%,
    #00c853 55%,
    #00962a 75%,
    #006400 90%
  );
  color: var(--cor-background);
  text-shadow: 1px 1px 0 #999, 1px 1px 0 #777, 2px 2px 0 #555, 3px 3px 0 #333,
    2px 2px 5px rgba(0, 0, 0, 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 2px #27bd0d, 0 0 5px #27bd0d, 0 0 10px #27bd0d,
    0 0 20px #27bd0d;
  padding: 1rem;
  cursor: default;
}

.linha-envases {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding: 30px;
}

.envase-container {
  position: relative;
  width: 400px;
  height: 400px;
  text-align: center;
}

.envase-container i {
  font-size: 4.3rem;
  margin: 30px;
  margin-top: 50px;
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
}

.setas {
  display: flex;
  justify-content: center;
  margin-top: -80px;
  /* ou ajuste para colar mais do PET */
}

.envase-pet {
  font-size: 1.5rem;
  width: 180px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 50px;
  background: radial-gradient(
    circle,
    #a8f5a2 15%,
    #69dd83 35%,
    #00c853 55%,
    #00962a 75%,
    #006400 90%
  );
  color: var(--cor-background);
  text-shadow: 1px 1px 0 #999, 1px 1px 0 #777, 2px 2px 0 #555, 3px 3px 0 #333,
    2px 2px 5px rgba(0, 0, 0, 2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 2px #27bd0d, 0 0 5px #27bd0d, 0 0 10px #27bd0d,
    0 0 20px #27bd0d;
  cursor: default;
}

.envase-laterais {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 60px;
}

.envase-bopp,
.envase-sleeve {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  position: relative;
  /* tiramos o absolute */
  cursor: default;
  transition: transform 0.3s;
}

.envase-bopp h3,
.envase-sleeve h3 {
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
  font-size: 1.9rem;
}

.envase-bopp img,
.envase-sleeve img {
  width: 100%;
  height: auto;
  margin-top: 70px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.5))
    drop-shadow(0 0 12px rgba(255, 255, 0, 0.6))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}

/* Bloco Vidro */
.envase-vidro {
  width: 200px;
  text-align: center;
}

.envase-vidro i {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
  font-size: 4rem;
}

.vidro-topo {
  font-size: 1.5rem;
  width: 180px;
  height: 150px;
  margin: 0 auto;
  background: radial-gradient(
    circle,
    #a8f5a2 15%,
    #69dd83 35%,
    #00c853 55%,
    #00962a 75%,
    #006400 90%
  );
  color: var(--cor-background);
  text-shadow: 1px 1px 0 #999, 1px 1px 0 #777, 2px 2px 0 #555, 3px 3px 0 #333,
    2px 2px 5px rgba(0, 0, 0, 2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 2px #27bd0d, 0 0 5px #27bd0d, 0 0 10px #27bd0d,
    0 0 20px #27bd0d;
  cursor: default;
}

.vidro-baixo {
  font-size: 1.7rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  cursor: default;
  transition: transform 0.3s;
}

.vidro-baixo h3 {
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
  font-size: 1.9rem;
}

.vidro-baixo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 255, 0, 0.6))
    drop-shadow(0 0 12px rgba(255, 255, 0, 0.7))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s;
}

.linha-separadora {
  width: 95%;
  margin: 4rem auto;
  height: 1px;
  border: none;
  border-radius: 60%;
  background: #ff0000;
  box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000,
    0 0 40px #ff0000;
}

.section-localizacao {
  text-align: center;
  background: radial-gradient(circle, #fde59c 50%, #ffdf7d 90%);
}

.section-localizacao h2 {
  padding: 5rem;
  font-size: 2.5rem;
  color: var(--cor-primaria);
  text-shadow: 0 0 2px #fcd445, 0 0 4px #ffcc23, 1px 1px 2px #d4a91a,
    2px 2px 3px #b38f00, 3px 3px 5px #000000, 0 0 6px rgba(255, 200, 0, 0.4),
    0 0 8px rgba(0, 0, 0, 0.5);
  transform: perspective(500px);
}

.bloco-localizacao {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.imagem-localizacao img {
  max-width: 1200px;
  height: auto;
  width: 100%;
}

.texto-localizacao {
  background-color: var(--cor-background);
  box-shadow: 0 0 16px rgba(243, 250, 51, 0.5),
    inset 0 0 6px rgba(243, 250, 51, 0.4), 0 8px 24px rgba(0, 0, 0, 1);
  padding: 1.5rem;
  border-radius: 20px;
  cursor: default;
  max-width: 500px;
  text-align: left;
}

.texto-localizacao h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 550;
  line-height: 2;
}

.icone-point {
  font-size: 2rem;
  color: var(--cor-secundaria);
  text-shadow:
  0 0 1px #2e9b4c,          /* brilho suave da cor base */
  0.5px 0.5px 1px #1f6c35,  /* leve sombra escura */
  1px 1px 1.5px #144d28,    /* profundidade fina */
  0 0 2px rgba(0, 0, 0, 0.15);
  transform: perspective(500px);
}

.site-footer {
  background-image: url(./img/banner-header.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 20px;
  color: var(--cor-textos);
  font-family: var(--fonte-secundaria);
  box-shadow: inset 0 0 8px 2px rgba(243, 250, 51, 0.9),
    inset 0 0 20px 8px rgba(243, 250, 51, 0.6),
    0 0 8px 2px rgba(243, 250, 51, 1), 0 0 20px 8px rgba(243, 250, 51, 0.9),
    0 0 40px 16px rgba(243, 250, 51, 0.6),
    0 0 80px 32px rgba(243, 250, 51, 0.35),
    0 0 120px 48px rgba(243, 250, 51, 0.15);
  transform: perspective(500px);
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 20px 0;
}

.footer-institucional,
.footer-endereco,
.footer-redes-sociais {
  flex: 1;
  max-width: 400px;
  min-width: 200px;
}

.footer-section {
  text-align: left;
}

.footer-section h4 {
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--cor-auxiliar);
  text-shadow: 
  0 0 1px #f90203,
  0 0 2px #e01010,
  1px 1px 2px #b80000,
  2px 2px 3px #990000,
  3px 3px 4px #777,
  0 0 5px rgba(255, 0, 0, 0.3);
  transform: perspective(500px);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  font-weight: 600;
}

.footer-section ul li a {
  text-decoration: none;
  color: var(--cor-secundaria);
  line-height: 2;
  font-size: 1rem;
  font-weight: 700;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-section address {
  color: var(--cor-secundaria);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.footer-bottom {
  text-decoration: none;
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.logo-footer {
  max-width: 220px;
  height: auto;
}

.copyright-text {
  font-size: 1.1rem;
  color: var(--cor-secundaria);
}

.referencia-text {
  font-size: 1rem;
  color: var(--cor-secundaria);
}

.address-link,
.address-link:visited {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.address-link:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icon {
  font-size: 2rem;
  color: var(--cor-secundaria);
}

.social-icon:hover {
  transform: scale(1.13);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1400px) {
  #carrossel-banners {
    position: relative;
    width: 100vw;
    height: 85vh;
    overflow: hidden;
  }

  .grid-produtos {
    max-width: 70vw;
  }

  .contact-inputs {
    width: 100%;
  }

  .section-historia {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    overflow-x: hidden;
  }

  .section-historia > div:first-child {
    max-width: 100%;
    padding: 20px;
  }

  .Imagem-nossa-historia {
    max-width: 100%;
    padding: 30px;
  }

  .Imagem-nossa-historia img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }

  .co-packer-exp {
    gap: 30px;
    width: 90vw;
  }

  .vantagens-beneficios {
    gap: 30px;
    width: 90vw;
  }

  .vantagens-item {
    max-height: 500px;
  }
}

@media (max-width: 1309px) {
  .grid-produtos {
    max-width: 60vw;
    gap: 4rem 2rem;
  }
}

@media (max-width: 1200px) {
  #carrossel-banners {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
  }
  
  .nav-menu ul {
    gap: 40px;
  }

  .nav-menu .menu a {
    font-size: 1.3rem;
  }

  .section-historia {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .section-historia > div:first-child,
  .Imagem-nossa-historia {
    max-width: 100%;
    padding: 20px;
  }

  .grid-produtos {
    /* ALTERAÇÃO/ADIÇÃO */
    grid-template-columns: repeat(3, 1fr);
    max-width: 90vw; /* Aumenta a largura relativa */
    gap: 4rem 2rem;
    padding: 2.5rem;
  }

  /* ALTERAÇÃO/ADIÇÃO */
  .imagem-produto {
    min-width: 280px; /* Reduz o min-width para caber melhor nas colunas */
  }

  .linha-envases {
    gap: 15rem;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-right img {
    width: 100%;
    height: auto;
  }

  .co-packer-exp {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
  }

  .bloco-localizacao {
    flex-direction: column;
  }

  .imagem-localizacao img {
    width: 100%;
  }

  .premio-item img,
  .premio-item-ouro img {
    max-width: 150px;
  }

  .premio-item h3,
  .premio-item-ouro h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 1080px) {
  .section-producao i {
    display: none;
  }

  .nav-menu .menu a {
    font-size: 1rem;
  }
}


@media (max-width: 998px) {
  #carrossel-banners {
    position: relative;
    width: 100vw;
    height: 60vh;
    overflow: hidden;
  }

  .nav-menu ul {
    gap: 40px;
  }

  .nav-menu .menu a {
    font-size: 1rem;
  }

  header p {
    font-size: 1rem;
  }

  .logo-header {
    max-width: 150px;
  }

  .grid-produtos {
    /* ALTERAÇÃO/ADIÇÃO */
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
    padding: 2rem 1.5rem;
    max-width: 95vw;
  }
  
  /* ALTERAÇÃO/ADIÇÃO */
  .section-produtos-lista h1 {
    font-size: 2.5rem;
  }
  
  /* ALTERAÇÃO/ADIÇÃO */
  .carrossel-container p {
    font-size: 2.2rem;
  }

  .section-valores {
    flex-direction: column;
    gap: 2rem;
  }

  .blocos-home,
  .blocos-home-valores,
  .blocos-home-visao {
    width: 100%;
    min-height: auto;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-institucional,
  .footer-endereco,
  .footer-redes-sociais {
    max-width: 100%;
    text-align: center;
    max-width: 10vw;
  }

  .section-instagram {
    height: auto;
    padding: 40px 20px;
  }

  .premios-container {
    gap: 3rem;
  }

  .premio-item h3,
  .premio-item-ouro h3 {
    font-size: 1.1rem;
  }

  .premio-item img,
  .premio-item-ouro img {
    max-width: 120px;
  }

  .container-botoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
  }

  .carrossel-container {
    width: 95%;
  }

  .seta-carrossel {
    width: 35px;
    height: 35px;
  }

  .seta-carrossel.anterior {
    left: 10rem;
  }

  .seta-carrossel.proximo {
    right: 10rem;
  }
}

@media (max-width: 950px) {
  .nav-menu ul {
    gap: 40px;
  }

  .nav-menu .menu a {
    font-size: 1rem;
  }

  header p {
    font-size: 0.9rem;
  }
}

@media (max-width: 860px) {
  .nav-menu ul {
    gap: 40px;
  }

  .nav-menu .menu a {
    font-size: 0.9rem;
  }
}

@media (max-width: 786px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .logo-header {
    max-width: 150px;
    margin: 0;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .nav-menu ul {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin-left: 5rem;
  }

  .nav-menu .menu a {
    font-size: 1.2rem;
  }

  .section-historia {
    padding: 2rem 1rem;
  }

  #carrossel-banners {
    position: relative;
    width: 100vw;
    height: 45vh;
    overflow: hidden;
  }

  .banner-item {
    max-height: none;
  }

  .banners-home {
    padding-bottom: 0;
  }

  .banner-dots {
    margin-top: 16px;
  }

  .banner-item img {
    object-fit: contain;
  }

  .section-valores,
  .vantagens-beneficios,
  .linha-envases {
    flex-direction: column;
    margin-top: 10rem;
    align-items: center;
  }

  .envase-container {
    width: 90%;
    height: auto;
    gap: 2.5rem;
  }

  .envase-bopp,
  .envase-sleeve {
    width: 40%;
  }

  .envase-vidro {
    margin-top: 3rem;
  }

  .vidro-topo {
    width: 90%;
  }

  .intro h2 {
    font-size: 2.5rem;
  }

  .intro p {
    font-size: 1.3rem;
  }

  .grid-produtos {
    /* ALTERAÇÃO/ADIÇÃO */
    grid-template-columns: 1fr;
    gap: 4rem 2rem;
    padding: 2rem 1rem;
    max-width: 450px;
  }
  
  /* ALTERAÇÃO/ADIÇÃO */
  .imagem-produto {
    min-width: auto; /* Correção crítica */
    max-width: 100%;
  }

  /* ALTERAÇÃO/ADIÇÃO */
  .imagem-container {
    max-height: 300px;
  }

  .grid-produtos-demonstration p {
    margin-top: 1.5rem;
  }

  .section-produtos {
    text-align: center;
  }

  .section-produtos-lista {
    text-align: center;
  }
  
  /* ALTERAÇÃO/ADIÇÃO */
  .section-produtos-lista h1 {
    font-size: 2.2rem;
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .seta-carrossel {
    width: 35px;
    height: 35px;
  }

  .seta-carrossel.anterior {
    left: 10px; /* ALTERAÇÃO */
  }

  .seta-carrossel.proximo {
    right: 10px; /* ALTERAÇÃO */
  }

  .carrossel-container {
    width: 90%; /* ALTERAÇÃO */
  }
  
  /* ALTERAÇÃO/ADIÇÃO */
  .carrossel-container p {
    font-size: 2rem;
  }

  .footer-section h4 {
    font-size: 1.6rem;
  }

  .footer-section ul li a {
    font-size: 1.3rem;
  }

  .contact-left {
    width: 100%;
    padding: 20px;
  }

  .contact-inputs {
    width: 100%;
  }

  .premios-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .premio-item,
  .premio-item-ouro {
    max-width: 90%;
    text-align: center;
  }

  .premio-item img,
  .premio-item-ouro img {
    max-width: 130px;
  }

  .premio-item h3,
  .premio-item-ouro h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 550px) {
  #carrossel-banners {
    position: relative;
    width: 100vw;
    height: 33vh;
    overflow: hidden;
  }
}

@media (max-width: 500px) {
  #carrossel-banners {
    position: relative;
    width: 100vw;
    height: 26vh;
    overflow: hidden;
  }

  .logo-header {
    max-width: 150px;
  }

  .nav-menu .menu a {
    font-size: 0.8rem;
  }

  .nav-menu .menu {
    gap: 10px;
  }

  .grid-produtos {
    /* ALTERAÇÃO/ADIÇÃO */
    gap: 4rem 2rem;
    padding: 1.5rem 1rem;
    width: 80vw;
    max-width: none;
  }
  
  /* ALTERAÇÃO/ADIÇÃO */
  .produto-item-guarana p,
  .produto-item-jubaina p,
  .produto-item-maca p,
  .produto-item-black-cola p,
  .produto-item-laranja p,
  .produto-item-abacaxi p,
  .produto-item-uva p,
  .produto-item-limao p,
  .produto-item-agua p {
    font-size: 1.5rem; 
  }

  /* ALTERAÇÃO/ADIÇÃO */
  .imagem-container {
    max-height: 250px; 
  }

  .intro {
    padding: 60px 20px;
    height: auto;
  }

  .intro h2 {
    font-size: 2rem;
  }

  .intro p {
    font-size: 1.1rem;
  }

  .texto-vantagens h2 {
    font-size: 2.2rem;
  }

  .texto-vantagens p {
    font-size: 1.1rem;
  }

  .banner-dot {
    width: 25px;
    height: 8px;
  }

  .section-tipos-envases {
    padding: 0;
  }

  .section-tipos-envases h2 {
    width: 350px;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .bloco {
    width: 70%;
  }

  .envase-pet {
    width: 70%;
    font-size: 2rem;
  }

  .vidro-topo {
    width: 90%;
    font-size: 1.6rem;
  }

  .vidro-baixo h3 {
    font-size: 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-section h4 {
    font-size: 1.4rem;
  }

  .copyright-text,
  .referencia-text {
    font-size: 0.9rem;
  }

  .section-instagram button {
    width: 110%;
    font-size: 1rem;
  }

  .section-instagram button i {
    font-size: 1.5rem;
  }

  .premios-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .premio-item,
  .premio-item-ouro {
    max-width: 90%;
    text-align: center;
  }

  .premio-item img,
  .premio-item-ouro img {
    max-width: 120px;
  }

  .premio-item h3,
  .premio-item-ouro h3 {
    font-size: 1.1rem;
  }

  .seta-carrossel {
    /* ALTERAÇÃO/ADIÇÃO */
    font-size: 24px;
    width: 35px;
    height: 35px;
  }

  .carrossel-container {
    width: 85%;
  }
  
  /* ALTERAÇÃO/ADIÇÃO */
  .carrossel-container p {
    font-size: 1.8rem;
  }

  /* ALTERAÇÃO/ADIÇÃO */
  .carrossel-container .imagem-produto {
    max-height: 400px; 
  }
  
  /* ALTERAÇÃO/ADIÇÃO */
  .section-produtos-lista h1 {
    font-size: 2rem;
  }

  .polaroid img {
    width: 100%;
    height: auto;
  }

  .vantagens-item {
    width: 20rem;
  }

  .vantagens-item h3 {
    font-size: 1.3em;
    color: var(--cor-textos);
    margin-top: 10px;
  }

  .vantagens-item p {
    font-size: 1.1em;
    color: var(--cor-sidebar);
    margin-top: 10px;
  }

  .vantagens-item i {
    font-size: 2.2rem;
    color: var(--cor-secundaria);
  }

  .bloco {
    font-size: 1rem;
  }

  .bloco-localizacao {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .texto-localizacao h4 {
    font-size: 1rem;
  }

  .contact-left {
    padding: 5rem;
    height: 700px;
    margin-top: auto;
  }

  .contact-left button {
    width: 100%;
    max-width: 500px;
    font-size: 1.1rem;
  }

  .contact-left button i {
    display: none;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-inputs::placeholder {
    font-size: 0.8rem;
  }

  .contact-left {
    width: 100%;
    max-width: 390px;
  }

  .contact-right img {
    display: none;
  }
}

@media (max-width: 400px) {
  .polaroid {
    width: 90vw;
  }

  .section-produtos h1 {
    font-size: 2.5rem;
  }
}

/* NOVO BREAKPOINT ADICIONADO PARA MELHOR AJUSTE */
@media (max-width: 380px) {
  .grid-produtos {
    padding: 1rem 0.5rem;
  }

  .produto-item-guarana,
  .produto-item-jubaina,
  .produto-item-maca,
  .produto-item-black-cola,
  .produto-item-laranja,
  .produto-item-abacaxi,
  .produto-item-uva,
  .produto-item-limao,
  .produto-item-agua {
    padding: 15px; /* Reduz padding interno dos cards */
  }

  .section-produtos-lista h1 {
    font-size: 1.8rem;
  }

  .carrossel-container p {
    font-size: 1.6rem;
  }

  .carrossel-container .imagem-produto {
    max-height: 350px;
  }
}


@media (max-width: 369px) {
  #carrossel-banners {
    position: relative;
    width: 100vw;
    height: 26vh;
    overflow: hidden;
  }

  .logo-header {
    max-width: 150px;
  }

  .nav-menu .menu a {
    font-size: 0.6rem;
  }

  .nav-menu .menu {
    gap: 25px;
  }

  .section-historia > div:first-child {
    max-width: 90%;
  }

  .section-historia h2 {
    font-size: 2rem;
  }

  .section-historia p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.1;
  }

  .Imagem-nossa-historia {
    display: none;
  }

  .grid-produtos {
    padding: 10px;
    gap: 4rem 2rem;
  }

  .intro {
    padding: 60px 20px;
    height: auto;
  }

  .intro h2 {
    font-size: 2rem;
  }

  .intro p {
    font-size: 1.1rem;
  }

  .texto-vantagens h2 {
    font-size: 2.2rem;
  }

  .texto-vantagens p {
    font-size: 1.1rem;
  }

  .banner-dot {
    width: 25px;
    height: 8px;
  }

  .section-envase h4 {
    font-size: 2.3rem;
  }

  .section-tipos-envases {
    padding: 0;
    margin-left: auto;
  }

  .section-tipos-envases h2 {
    width: 200px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .bloco {
    width: 85%;
  }

  .envase-pet {
    width: 70%;
    font-size: 2rem;
  }

  .vidro-topo {
    width: 90%;
    font-size: 1.6rem;
  }

  .vidro-baixo h3 {
    font-size: 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-section h4 {
    font-size: 1.4rem;
  }

  .copyright-text,
  .referencia-text {
    font-size: 0.9rem;
  }

  .section-instagram h2 {
    font-size: 2rem;
  }

  .section-instagram button {
    width: 115%;
    font-size: 1rem;
  }

  .section-instagram button i {
    font-size: 1.5rem;
  }

  .premios-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .titulo-premios {
    font-size: 2rem;
  }

  .premio-item,
  .premio-item-ouro {
    max-width: 90%;
    text-align: center;
  }

  .premio-item img,
  .premio-item-ouro img {
    max-width: 120px;
  }

  .premio-item h3,
  .premio-item-ouro h3 {
    font-size: 1.1rem;
  }

  .seta-carrossel {
    font-size: 1rem;
    width: 30px;
    height: 30px;
  }

  .seta-carrossel.anterior {
    left: 2rem;
  }

  .seta-carrossel.proximo {
    right: 2rem;
  }

  .carrossel-container {
    width: 85%;
  }

  .polaroid {
    width: 90vw;
  }

  .polaroid img {
    width: 100%;
    height: 100%;
    max-height: 100px;
  }

  .polaroid h2 {
    font-size: 1.5rem;
  }

  .polaroid p {
    font-size: 1.2rem;
  }

  .services h1 {
    font-size: 2.6rem;
  }

  .services p {
    font-size: 1.3rem;
    max-width: 500px;
  }

  .vantagens-item h3 {
    font-size: 1.3em;
    color: var(--cor-textos);
    margin-top: 10px;
  }

  .vantagens-item p {
    font-size: 1.1em;
    color: var(--cor-sidebar);
    margin-top: 10px;
  }

  .vantagens-item i {
    font-size: 2.2rem;
    color: var(--cor-secundaria);
  }

  .bloco {
    font-size: 1rem;
  }

  .section-localizacao h2 {
    align-items: center;
  }

  .bloco-localizacao {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .texto-localizacao h4 {
    font-size: 1rem;
  }

  .contact-left {
    padding: 5rem;
    height: 800px;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-inputs::placeholder {
    font-size: 0.7rem;
  }

  .contact-inputs {
    width: 250px;
    align-items: flex-start;
  }

  .contact-left {
    width: 100%;
    max-width: 350px;
  }

  .contact-right img {
    display: none;
  }
}