
  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .box {
    position: relative;
    background-color: white;
    width: 100%;
    height: 250px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .selo {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: orange;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
  }

  .texto {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
  }

  /* 👉 Efeito de avanço no hover */
  .box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  /* Responsivo para telas menores */
  @media (max-width: 1000px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  }

  

.box-produtos {
    width: 300px;
    height: 450px;
    border: 1px solid #ccc;
    position: relative;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px 40px;
    text-align: center;
  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* 👉 Efeito de avanço no hover */
  .box-produtos:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  
  .icon-circle {
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .icon-card {
    font-size: 36px;
    color: #ff6600;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .box-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }
  
  .orange-line {
    height: 4px;
    width: 120px;
    background-color: #ff6600;
  }
  
  .rounded-button {
    width: 200px;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #ccc;
    background: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .rounded-button .plus {
    font-weight: bold;
    font-size: 20px;
    color: #ff6500;
    transition: color 0.3s ease;
  }
  
  .rounded-button:hover {
    background-color: #ff6500;
    color: white;
    border-color: #ff6500;
  }
  
  .rounded-button:hover .plus {
    color: white;
  }
  
  .accordion {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
  }

  .accordion:hover {
    background-color: #f7f7f7;
  }

  .accordion .title {
    font-weight: bold;
    font-size: 16px;
  }

  .accordion .arrow {
    transition: transform 0.3s;
  }

  .accordion.active .arrow {
    transform: rotate(180deg);
  }

  .panel {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  }

  .panel.open {
    padding: 15px 20px;
    max-height: 100px; /* ajuste conforme necessário */
  }



  .imagem {
    position: absolute;
    top: 0.5px; /* sobe a imagem para tocar o limite superior da faixa preta */
    left: 20%;
    transform: translateX(-50%);
  }

  .container {
   
    position: relative;
  }

  .btn-contrato {
    background-color: #ff6600; /* Laranja */
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }

  .btn-contrato:hover {
    background-color: orange; /* Branco no hover */
    color: #000;
  }

  .btn-contrato .icon {
    font-weight: bold;
  }