/* =============================================== */
/* PRODUTOS */
/* =============================================== */

.btn-ficha {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background-color: #111111;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 1px solid orange
  
  ;
}

.btn-ficha:hover {
  background-color: #ff9900;
}




 .produtos-section2 {
      padding: 40px 20px;
      text-align: center;
      background-color: #000;
      color: #fff;

    }

    .produtos-section2 h2 {
      color: #F07D00;
      font-size: 2.5rem;
      margin-bottom: 30px;
    }

    

    .maquinas {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 35px;
      max-width: 1200px;
 text-decoration: none;   /* remove o sublinhado */
  color: inherit;          /* mantém a cor original do texto */
  display: inline-block;
      margin: 0 auto 40px;
    }

    .maquina {
      background-color: #111;
      border: 2px solid #F07D00;
      border-radius: 10px;
      width: 22%;
      padding: 15px;
      box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .maquina:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
    }

    .maquina img {
      max-width: 100%;
      border-radius: 6px;
    }

    .maquina h3 {
      margin-top: 10px;
      color: #F07D00;
      font-size: 1.1rem;
      text-decoration: none;
      color: inherit;
    }

    a.maquina {
  text-decoration: none;  /* remove o sublinhado */
  color: inherit;         /* mantém a cor herdada */
  display: inline-block;  /* garante que se comporte como bloco */
}

a.maquina:hover {
  text-decoration: none;  /* garante que não apareça nem no hover */
}


    @media (max-width: 900px) {
      .maquina {
        width: 45%;
      }
    }

    @media (max-width: 600px) {
      .maquina {
        width: 100%;
      }
    }



    /* =============================================== */
/* PRODUTOS */
/* =============================================== */

.btn-ficha {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #111111;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid orange;
}

.btn-ficha:hover {
  background-color: #ff9900;
  transform: scale(1.05);
}

.produtos-section2 {
  padding: 60px 20px;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.produtos-section2 h2 {
  color: orange;
  font-size: 2.5rem;
  margin-bottom: 40px;
}



.maquinas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.maquina {
  background-color: #111;
  border: 2px solid orange;
  border-radius: 10px;
  width: 22%;
  min-width: 250px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maquina:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.8);
}

.maquina img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.maquina h3 {
  margin-top: 15px;
  color: orange;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* RESPONSIVO PRODUTOS */
@media (max-width: 1024px) {
  .maquina {
    width: 30%;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .produtos-section2 {
    padding: 50px 15px;
  }
  
  .produtos-section2 h2 {
    font-size: 2rem;
  }
  
  .maquina {
    width: 45%;
    min-width: 180px;
  }
  
  .maquinas {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .produtos-section2 h2 {
    font-size: 1.8rem;
  }
  
  .maquina {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .hr-laranja {
    width: 100%;
     
  }
}