.produtos {
    background: #fff;
    display: flex
;
    padding: 20px;
    justify-content: center;
}
.produtos-filtro-e-lista {
  display: flex;
  gap: 30px;
}

.produtos-filtro {
  width: 220px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.produtos-filtro h3 {
  margin-bottom: 10px;
}

.produtos-filtro ul {
  list-style: none;
  padding: 0;
}

.produtos-filtro li {
  margin: 10px 0;
}

.produtos-filtro button {
    background: none;
    border: none;
    color: #ff4d14;
    cursor: pointer;
    font-weight: 900;
    font-size: 17px;
    text-align: left;
    padding: 5px 0;
}
.produtos-filtro button:hover {
  text-decoration: underline;
}

.produtos-lista {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.produtos .produto {
    display: flex
;
    justify-content: left;
    border: 1px solid #eee;
    gap: 20px;
    padding: 50px;
     transition: 0.2s;
    width: 700px;
    padding-bottom: 50px;
}
#produto-selecionado img{
  width: 100px;
}
.produtos .produto h4 {
  margin: 0 0 5px;
  font-size: 17px;
  color: #333;
}
.modal-produto-selecionado{
  display: flex;
  justify-content: center;
}
#produto-selecionado {
    display: flex
;
justify-content: center;
    border: 1px solid #ccc;
    margin: 20px;
    padding: 0px 40px;
    text-align: left;
    gap: 30px;
}
#produto-selecionado h3{
    margin-top: -20px;
}
.produtos .produto p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
 .produto-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: white;
      border: 1px solid #ddd;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      gap: 20px;
    }
.button-produto{
    width: 300px;
}
.produtos .produto:hover{
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  transition: 0.2s;
}
    .produto img {
      width: 200px;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .produto-info {
      flex: 1;
    }

    .produto-info h2 {
      margin: 0 0 10px 0;
      font-size: 1.6em;
      color: #333;
    }

    .produto-info p {
      margin: 0 0 15px 0;
      color: #666;
    }

    .btn-orcamento,
    .btn-alugar {
      padding: 10px 18px;
      font-size: 15px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .btn-orcamento {
      background-color: #007bff;
      color: white;
    }

    .btn-orcamento:hover {
      background-color: #0056b3;
    }

    .btn-alugar {
      background-color: #28a745;
      color: white;
    }

    .btn-alugar:hover {
      background-color: #1e7e34;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.7);
    }

    .modal-conteudo {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px;
      width: 90%;
      max-width: 500px;
      border-radius: 10px;
      position: relative;
      animation: fadeIn 0.3s ease-in-out;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .modal-conteudo h2 {
      margin-top: 0;
    }

    .fechar {
      position: absolute;
      top: 12px;
      right: 18px;
      font-size: 28px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
    }

    .fechar:hover {
      color: #000;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
.produto-imagem img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.produto-info {
  flex: 1;
}

.produto-botao {
  display: flex;
  align-items: center;
}

.produto-botao button {
  background-color: #007BFF;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.produto-botao button:hover {
  background-color: #0056b3;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.4);
  }
.modal-content h2{
    margin-bottom: -15px;
}
.modal-content input,textarea{
     width: 100%;
    padding: 22px 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem;
    border-radius: 0px;
    background: #ededed;
    border: none;
    box-sizing: border-box;
}
.produto button {
  background-color: #e60000;
  color: white;
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0px;
  font-weight: bold;
  display: inline-block;
}
.modal-content button {
  background-color: #ff6600;
  color: white;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}.modal-content button:hover {
  background-color: #b44200;
  
}
.produto button:hover {
  background-color: #cc0000;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    margin-top: 100px;
    max-width: 700px;
    text-align: center;
    height: fit-content;
    position: relative;
}
.modal-content form {
    display: grid
;
    gap: 10px;
}
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover {
    color: #000;
  }
.link-produto{
  margin-top: 40%;
}
.link-produto a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
}
.link-produto a i{
  color: #ff6600;
}
.link-produto a:hover {
  color: #ff6600;
} 
  @media screen and (max-width: 1024px) {
  #produto-selecionado {
    display: flex;
    justify-content: center;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    margin-top: 40px;
    width: 100%;
    padding: 0px 0px;
    text-align: left;
    gap: 3px;
}

  }


@media screen and (max-width: 1024px) {
  .produtos {
    background: #fff;
    display: flow-root;
    padding: 20px;
    justify-content: center;
}
#mobile-produto{
  display: flex;
}.modal-content h2 {
    margin-bottom: 0px;
}
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    margin-top: 100px;
    max-width: 700px;
    text-align: center;
    height: fit-content;
    position: relative;
}.beneficios-servicos {
    display: flex
;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    background-color: #00505a;
}
    #produto-selecionado h3 {
        margin-top: 0px;
        font-size: 12px;
    }
.produtos-filtro {
        width: 100%;
        display: none;
        font-size: 12px;
        border-right: 1px solid #dddddd00;
        padding-right: 0px;
    }.produtos-filtro button {
    background: none;
    border: none;
    color: #ff4d14;
    cursor: pointer;
    font-weight: 900;
    font-size: 12px;
    text-align: left;
    padding: 5px 0;
}.produto img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}      .produtos .produto {
        display: grid !important
;
        justify-content: left;
        border: 1px solid #eeeeee00;
        gap: 20px;
        padding: 20px;
        transition: 0.2s;
        width: 90%;
        padding-bottom: 50px;
    }.link-produto {
    margin-top: 4%;
}.produtos-filtro-e-lista {
    display: flex
;
    gap: 0px;
}.produtos .produto h4 {
    margin: 0 0 5px;
    font-size: 13px;
    color: #333;
}.modal-content input, textarea {
    width: 100%;
    padding: 22px 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.7rem;
    border-radius: 0px;
    background: #ededed;
    border: none;
    box-sizing: border-box;
}
}
