.popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  position: fixed; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 9999;
  align-items: center; /* Centrar verticalmente */
  justify-content: center; /* Centrar horizontalmente */
}
    .popup__content {
      margin:auto;
      border-radius: 10px;
      z-index: 9999;
      width: 40%;
      height: 90%;
      overflow: auto;
      padding: 50px 50px 0px;
      background: white;
      color: black;
      box-sizing: border-box;
      position: relative;
      .close {
        position: absolute;
        right: 20px;
        top: 20px;
        width: 20px;
        display: block;
        span {
          cursor: pointer;
          position: fixed;
          width: 20px;
          height: 3px;
          background: #099ccc;
          &:nth-child(1) {
            transform: rotate(45deg);
          }
          &:nth-child(2) {
            transform: rotate(135deg);
          }
        }
      }
    }
  
  .btn-cotizar {
    background: transparent;
    color: white;
    margin: 0px;
    cursor: pointer;
    border: none;
    font-weight: 500;
    font-size: 1.25rem;
  }

  .btn-cotizar:hover {
    text-decoration: underline; 
  }
  .popup__content .wpcf7-text{
    width: 100% !important;
  } 
  .popup__content .wpcf7-number{
    width: 100% !important;
  } 
  .popup__content .wpcf7-select{
    width: 100% !important;
  } 
  .popup__content .wpcf7-submit{
    margin-top: 1rem;
  } 

  .titleForm {
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .popup__content {
        width: 90% !important;
        height: 100% !important;
    }
}

.popup-open {
  display: block!important;
}