:root {
  --primary-green: #4caf50;
  --accent-orange: #ff9800;
  --background-white: #ffffff;
  --text-dark: #212121;
  --text-light: #f5f5f5;
}

.translate-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.translate-flag {
  width: 40px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.translate-flag:hover {
  transform: scale(1.1);
}

#translated-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

* {
  scroll-behavior: smooth;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* Cor de fundo */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
}

/* Estilo da imagem de carregamento */
.img-loading img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

/* Estilo do spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid #333;
  border-radius: 50%;
  animation: spin 0.5s linear infinite;
}

/* Animação do spinner */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Estilo do conteúdo principal */
#main-content {
  opacity: 0;
  /* Invisível inicialmente */
  display: none;
  /* Oculto inicialmente */
  transition: opacity 0.5s ease-in;
  /* Transição suave para aparecer */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent;
  /* Cor semi-transparente */
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1acc;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  /* Aplica o efeito de desfoque */
  -webkit-backdrop-filter: blur(100px);
  /* Para compatibilidade no Safari */
}

/* Conteúdo Centralizado */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

#navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_logo {
  width: 50px;
}

#nav_list {
  display: flex;
  list-style: none;
  gap: 48px;
}

.nav-item {
  list-style: none;
}

.nav-item a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.nav-item.active a {
  color: #ff8a00;
  border-bottom: 2px solid #ff8a00;
}

#mobile_btn {
  display: none;
}

#mobile_menu {
  display: none;
}

.cart-button span {
  font-size: 25px;
  color: #ffffff;
}

#contador-carrinho {
  font-size: 25px;
}

.btn-menu {
  display: none;
}

/* Estrutura Principal */
#banner-xaxim {
  position: relative;
  height: 90vh;
  border-radius: 0 0 20px 20px;
  background-color: #23be5f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Conteúdo */
.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h1 {
  font-size: 4.5rem;
  color: #000000;
  margin-bottom: 0px;
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.banner-content p {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 50px;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

.btn-cta {
  display: inline-block;
  background: #222222;
  color: #25d366;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease forwards;
  opacity: 0;
}

.btn-cta:hover {
  background: #3e9144;
  transform: scale(1.1);
}

/* Animações de Fundo */
.banner-animation .circle {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(76, 175, 80, 0.3);
  border-radius: 50%;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 6s ease-in-out infinite;
}

.banner-animation .wave {
  position: absolute;
  bottom: 0;
  width: 150%;
  height: 200px;
  background: linear-gradient(to right, #4caf50, #81c784);
  transform: rotate(-5deg);
  animation: wave 4s linear infinite;
}

/* Animações */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(-10px);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

#missao {
  height: 20vh;
  margin-top: 100px;
}

.box {
  background-color: #23be5f;
  padding: 20px;
  width: 100%;
}

.content-missao {
  justify-content: space-around;
  display: flex;
  align-items: center;
}

.content .btn-default {
  margin-top: 20px;
}

.btn-banner {
  border: none;
  margin-top: 20px;
  background-color: #ff8a00;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Animação de deslizamento diagonal */
@keyframes diagonalSlide {
  0% {
    top: -100%;
    left: -100%;
  }

  100% {
    top: 40%;
    /* A faixa vai parar aqui */
    left: 35%;
    /* A faixa vai parar aqui */
  }
}

/* Animações de Fade e Slide para o conteúdo */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animações */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Configurações Gerais */
.produto-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: start;
  padding: 50px 0;
}

/* Viewer Responsivo */
.produto-viewer {
  width: 100%;
  max-width: 800px;
  /* Limite máximo em telas grandes */
  height: auto;
  margin-top: 20px;
  aspect-ratio: 16 / 9;
  /* Mantém proporção no espaço */
}

.produto-viewer model-viewer {
  width: 100%;
  height: 100%;
}

/* Ajustes de Texto */
.produto-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #2c6e49;
  margin-bottom: 20px;
}

.produto-header p {
  text-align: justify;
  text-align: justify;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  width: 600px;
}

.img-fibra img {
  width: 500px;
}

.info-tecnicas {
  background-color: rgb(240, 240, 240);
  padding-top: 50px;
  width: 100%;
  padding-bottom: 50px;
}

/* Botão CTA */
.cta-btn {
  padding: 12px 30px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, #2c6e49, #4caf50);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(44, 110, 73, 0.3);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(45deg, #238444, #2c6e49);
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .produto-header h1 {
    font-size: 2.5rem;
  }

  .produto-header p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 10px 25px;
  }

  #banner-xaxim {
    text-align: center;
  }

  .banner-content h1 {
    font-size: 3em;
  }

  .banner-content p {
    font-size: 1em;
  }

  .banner-content img {
    width: 150px;
    padding: 20px;
  }

  #navbar img {
    display: none;
  }

  .produto-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
    text-align: start;
    padding: 50px 0;
  }

  .produto-header p {
    text-align: justify;
    text-align: justify;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    width: 300px;
  }

  .info-tecnicas {
    flex-direction: column;
    text-align: center;
  }

  .produto-header {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .produto-header p {
    width: 80%;
  }

  .img-fibra img {
    width: 300px;
  }
}

.tabela-produtos {
  width: 70%;
  border-collapse: collapse;
  margin: 0 auto;
  text-align: center;
  font-family: Arial, sans-serif;
}

.tabela-produtos th,
.tabela-produtos td {
  border: 1px solid #23be5f;
  padding: 10px;
}

.tabela-produtos th {
  background-color: #222222;
  font-weight: bold;
  color: white;
}

.tabela-produtos td {
  font-size: 14px;
}

.tabela-produtos tr:nth-child(even) {
  background-color: #f9f9f9;
}

.banner-content img {
  width: 150px;
  padding: 20px;
}

@media (max-width: 480px) {
  .produto-header h1 {
    font-size: 2rem;
  }

  .produto-viewer {
    max-width: 100%;
    /* Usa largura total em dispositivos pequenos */
  }

  .cta-btn {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
}

#timeline {
  background-color: transparent;
  margin-top: -100px;
}

.timeline-container {
  max-width: 1000px;

  margin: 0 auto;
  position: relative;
}

.timeline {
  width: 100%;
  gap: 50px;
  display: flex;
  align-items: center;
  position: relative;
}

.timeline-item {
  border-radius: 18px;
  position: relative;
  margin-bottom: 50px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: transparent;
  /* Cor da linha */
  z-index: 0;
}

.timeline-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 300px;
  height: 280px;
  z-index: 2;
  /* Garantir que o conteúdo da caixa fique sobre a linha */
}

.timeline-box h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.timeline-box p {
  font-size: 1rem;
  color: #666;
}

/* Animação para os itens da linha do tempo */
.timeline-item {
  width: 600px;
  opacity: 0;
  transform: translateY(50px);
  animation: slideIn 0.5s ease-out forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#sobre {
  display: flex;
  margin-top: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-height: 100%;
  height: 100%;
}

/* Container principal */
.sobre-container {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: justify;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  /* Inicialmente invisível */
  transform: translateY(50px);
  /* Desloca para baixo */
  animation: slideIn 1s ease-out forwards;
  /* Animação de deslizar */
  padding: 40px 0 40px;
}

.sobre-container h1 {
  margin-bottom: 20px;
  font-size: 2em;
  opacity: 0;
  transform: translateX(-50px);
  /* Inicialmente fora da tela para a esquerda */
  animation: fadeInFromLeft 0.5s ease-out forwards 0.3s;
  /* Animação de fade-in com movimento da esquerda */
}

.sobre-container p {
  width: 600px;
  opacity: 0;
  transform: translateX(50px);
  /* Inicialmente fora da tela para a direita */
  animation: fadeInFromRight 0.5s ease-out forwards 0.6s;
  /* Animação de fade-in com movimento da direita */
}

.img-sobre img {
  width: 500px;
  opacity: 0;
  transform: translateY(50px);
  /* Inicialmente fora da tela para baixo */
  animation: fadeInUp 0.5s ease-out forwards 0.9s;
  /* Animação de fade-in com movimento para cima */
}

/* Animação de deslizar da esquerda para a direita */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação de desvanecimento e movimento da esquerda */
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animação de desvanecimento e movimento da direita */
@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animação de desvanecimento e movimento para cima */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#produtos {
  text-align: center;
  background-color: #eaeaea;
  width: 100%;
  margin-top: 100px;
  border-radius: 30px;
  padding: 70px 0;
}

.titulo-produtos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin: 40px;
}

.titulo-produtos h1 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #000000;
}

.pesquisa {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

#pesquisa {
  padding: 10px;
  font-size: 1rem;
  width: 500px;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-top: 30px;
}

#buscar {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #23be5f;
  color: white;
  margin-top: 30px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-left: 10px;
}

#buscar:hover {
  background-color: #25d366;
}

#resultados {
  align-items: center;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.produto {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border: 1px solid #dddddd6d;
  padding: 20px;
  color: rgb(0, 0, 0);
  margin: 10px;
  border-radius: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.produto img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 50px;
}

.produto h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.produto p {
  font-size: 0.9rem;
  color: #666;
}

.produto select,
.produto input {
  width: 50%;
  padding: 5px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.produto button {
  margin-top: 15px;
  padding: 10px;
  background-color: #23be5f;
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.produto button:hover {
  background-color: #25d366;
}

.close-menu button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 30;
  /* Garantir que o botão de fechar esteja acima de outros elementos */
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .timeline-item {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .timeline-item::before {
    left: 0;
    top: 0;
    width: 3px;
    height: auto;
  }

  .titulo-produtos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin: 40px;
    flex-direction: column;
  }

  #sobre {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre-container p {
    width: 300px;
    opacity: 0;
    transform: translateX(50px);
    /* Inicialmente fora da tela para a direita */
    animation: fadeInFromRight 0.5s ease-out forwards 0.6s;
    /* Animação de fade-in com movimento da direita */
  }

  .sobre-container {
    width: 100%;
    margin: 40px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    align-items: center;
  }

  .img-sobre img {
    width: 300px;
    margin-top: 60px;
  }

  #produtos {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .pesquisa {
    flex-direction: column;
  }

  #pesquisa {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .timeline-item::before {
    left: 0;
    top: 0;
    width: 3px;
    height: auto;
  }

  .timeline-box {
    padding: 15px;
    /* Ajusta o padding para telas menores */
  }

  .timeline-box h3 {
    font-size: 1.2rem;
  }

  .timeline-box p {
    font-size: 0.9rem;
  }

  /* Reduz a margem entre os itens da linha do tempo */
  .timeline-item {
    margin-bottom: 20px;
  }
}

/* Responsividade */
@media screen and (max-width: 768px) {
  #banner {
    flex-direction: column;
    text-align: center;
    height: 80vh;
  }

  .content {
    margin: 10px;
    margin-top: 20px;
    max-width: 100%;
  }

  .image {
    justify-content: center;
    display: flex;
  }

  .image img {
    width: 300px;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .lista a {
    flex-direction: column;
    align-items: center;
    display: flex;
    width: 100%;
    padding: 20px;
    /* Reduzi o padding para dispositivos menores */
  }
}

.nav_logo_menu {
  display: none;
}

.nav_logo {
  width: 40px;
}

@media screen and (max-width: 1170px) {

  /* Ocultar menu desktop e botão padrão */
  #nav_list,
  .btn-default {
    display: none;
  }

  #navbar {
    width: 100%;
  }

  /* Header com layout flexível */
  header {
    justify-content: space-between;
    flex-direction: column;
    display: flex;
    padding: 10px 20px;
  }

  /* Estilo para botão de menu e logo */
  .nav_logo_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav_logo {
    display: flex;
    max-width: 120px;
  }

  .btn-menu {
    display: flex;
    border: none;
    background-color: transparent;
    font-size: 2rem;
    cursor: pointer;
    color: #ffffff;
  }

  /* Menu móvel - fora da tela inicialmente */
  #mobile_menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 20;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Menu ativado */
  #mobile_menu.active {
    opacity: 1;
    transform: translateX(0);
  }

  /* Botão para fechar o menu */
  .close-menu button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  /* Itens de navegação no menu móvel */
  #mobile_nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  #mobile_nav_list .nav-item {
    margin: 20px 0;
  }

  #mobile_nav_list a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  #mobile_nav_list a:hover {
    color: #ff8a00;
  }

  /* Hover para itens do menu */
  .nav-item {
    border-radius: 10px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
  }

  .nav-item:hover {
    background-color: #25d366;
    transition: background-color 0.3s ease;
  }
}

/* Estilizando a seção de contato */
#contato {
  margin-top: 100px;
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 60px 20px;
  max-width: 100%;
}

.contato-container {
  margin: 0 auto;
  text-align: center;
}

.contato-container h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.contato-container p {
  width: 400px;
  font-size: 1em;
  margin-bottom: 60px;
}

.contato-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.info-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  background-color: #ff8a00;
  padding: 20px;
  width: 400px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.info-item h3 {
  color: #000000;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.info-item p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.info-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

button {
  padding: 12px 25px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #128c7e;
}

/* Estilo Geral do Footer */
footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
}

footer h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #e67e22;
}

footer p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

footer a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e67e22;
}

/* Contêiner Responsivo */
.footer-container {
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.footer-content iframe {
  border: none;
  border-radius: 10px;
  margin-top: 10px;
}

/* Rodapé Final */
.footer-rodape {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #7f8c8d;
}

.footer-rodape p {
  margin: 5px 0;
  font-size: 0.8rem;
}

.footer-rodape a {
  font-weight: bold;
}

#list-produtos {
  padding-bottom: 100px;
  text-align: center;
}

.lista {
  align-items: center;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 colunas de largura igual */
  justify-items: center;
  /* Alinha os itens no centro */
  gap: 70px;
  /* Espaçamento entre os itens */
}

.lista a {
  text-decoration: none;
}

.box1 {
  background-color: #212121;
  border-radius: 30px;
  padding: 40px;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  /* Centraliza o conteúdo */
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  /* Suaviza o efeito de hover */
}

.box1:hover {
  transform: scale(1.01);
  /* Melhor efeito de hover */
}

.box1 img {
  width: 200px;
  margin-bottom: 20px;
}

.box1 h1 {
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 768px) {

  /* Layout para dispositivos móveis */
  .lista {
    margin-top: 50px;
    /* Ajusta o espaçamento no topo */
    display: flex;
    justify-content: center;
    /* Centraliza os itens no eixo X */
    flex-direction: column;
    /* Organiza os itens verticalmente */
    gap: 30px;
    /* Diminui o espaço entre os itens */
  }

  .box1 {
    max-width: 100%;
    /* Ajusta a largura das caixas para telas pequenas */
    width: 400px;
    height: auto;
    /* Ajusta a altura automaticamente */
    padding: 40px;
    /* Ajusta o padding para telas pequenas */
  }

  .box1 img {
    width: 150px;
    /* Ajusta o tamanho da imagem para telas menores */
  }
}


/* modificação para catalogo */
#monte-seu-catalogo {
  padding: 4rem 0;

}

#monte-seu-catalogo p {
  color: #6b7280;
  text-align: center;
}

.catalogo-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.catalogo-item {
  background-color: #ffffff;

  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.catalogo-item img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.catalogo-item select,
.catalogo-item button {
  margin-top: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  width: 100%;
}

.catalogo-btn {
  display: block;
  width: 100%;
  background-color: #2563eb;
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}

.catalogo-btn:hover {
  background-color: #1e40af;
}

.catalogo-list {
  padding: 2rem;
}