   body{
   font-family: Arial, sans-serif;
   margin: 0;
   padding: 0;
   background-color: #fff;
   }


   h1 {
       text-align: center;
       margin-bottom: 10px;
   }

   #services {
       width: 90%;
       margin: 0 auto;
       padding: 20px;
       background-color: #fff;
   }


   .product-submenu {
       background-color: #fa4704;
       text-align: center;
       margin-bottom: 20px;
       padding: 20px;
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
   }



   .product-category {
       margin-bottom: 80px;
   }

   .product-submenu {
       background-color: #fa4704;
       text-align: center;
       margin-bottom: 20px;
       padding: 10px;
       /* menos altura no bloco */
       display: flex;
       flex-wrap: wrap;
       gap: 6px;
       /* menor espaço entre os links */
       justify-content: center;
       border-radius: 6px;
   }

   .product-link {
       color: #fff;
       background-color: rgba(0, 0, 0, 0.1);
       padding: 6px 12px;
       /* menos altura e largura nos links */
       border-radius: 4px;
       text-decoration: none;
       transition: all 0.3s ease;
       font-size: 14px;
       /* texto menor */
       min-width: auto;
       /* remove largura mínima */
       text-align: center;
   }

   .product-link:hover {
       background-color: #fff;
       color: #fa4704;
       transform: scale(1.03);
   }


   .product-item img {
       max-width: 330px;
       /* ou o valor que você quiser */
       max-height: 330px;
       /* limite máximo */
       width: auto;
       height: auto;
       margin: 20px;
       object-fit: contain;
       /* opcional, ajuda caso você use um container fixo */
   }

   .product-category h2 {
       text-align: center;
   }

   #services {
       height: 210%;
   }

   /* Estilos para o modal */
   .modal {
       display: none;
       position: fixed;
       z-index: 9999;
       padding-top: 50px;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       overflow: auto;
       background-color: rgba(0, 0, 0, 0.9);
   }

   .modal-content {
       margin: auto;
       display: block;
       max-width: 90%;
       max-height: 90%;
       width: auto;
       height: auto;
   }

   .close {
       color: white;
       position: absolute;
       top: 10px;
       right: 25px;
       font-size: 35px;
       font-weight: bold;
       cursor: pointer;
   }

   .close:hover,
   .close:focus {
       color: #999;
       text-decoration: none;
       cursor: pointer;
   }

   /* Estilizando os botões como setas */
   .seta {
       cursor: pointer;
       position: absolute;
       top: 50%;
       width: auto;
       padding: 16px;
       margin-top: -22px;
       color: white;
       font-weight: bold;
       font-size: 30px;
       transition: 0.3s;
       border-radius: 0 3px 3px 0;
       user-select: none;
       margin-left: 10px;
       margin-right: 10px;
   }

   #btnAnterior {
       left: 0;
       border-radius: 3px 0 0 3px;
   }

   #btnProximo {
       right: 0;
       border-radius: 0 3px 3px 0;
   }

   .seta:hover {
       background-color: rgba(0, 0, 0, 0.8);
   }

   /* Responsividade para a seção "Serviços" */
   /* Telas até 1200px */
   @media (max-width: 1200px) {
       h1 {
           font-size: 36px;
       }
   }

   /* Telas até 768px (tablets e celulares grandes) */
   @media (max-width: 768px) {
       .product-item img {
           width: 100%;
           height: auto;
           margin: 10px 0;
       }

       .product-submenu {
           padding: 8px;
           gap: 4px;
       }

       .product-link {
           font-size: 13px;
           padding: 5px 10px;
       }

       .modal-content {
           max-width: 90vw;
           max-height: 80vh;
       }

       h1 {
           font-size: 28px;
       }

        .modal-content {
           margin-top: 120px;
           /* ainda mais espaço em celulares */
       }
   }

   /* Telas até 576px (celulares pequenos) */
   @media (max-width: 576px) {
       .linhaTopo {
           flex-direction: column;
           align-items: center;
           text-align: center;
       }

       .modal-content {
           margin-top: 120px;
           /* ainda mais espaço em celulares */
       }

       h1 {
           font-size: 24px;
       }

       .product-submenu {
           padding: 6px;
           gap: 4px;
       }

       .product-link {
           font-size: 12px;
           padding: 4px 8px;
       }

       .modal-content {
           max-width: 90vw;
           max-height: 75vh;
       }

   }