    .ventajas-section {
      background-color: #f9f9f9;
      padding: 100px 0 60px;
      position: relative;
    }

    .ventajas-card {
      background-color: #E7E6E6;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
      padding: 50px 40px 30px;
      position: relative;
      text-align: left;
    }

    /* Imagen de persona centrada y flotante */
    .persona-img {
      position: absolute;
      top: -50px;
      left: 60%;
      transform: translateX(-50%);
      border-radius: 2%;
/*      border: 4px solid #fff;
      width: 100px;
      height: 100px;*/
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      background-color: #fff;
    }

    .ventajas-title {
      color: #047A86;
      font-weight: 700;
      margin-top: 60px; /* espacio debajo de la foto */
      margin-bottom: 20px;
      text-align: left;
    }

    .ventajas-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .ventajas-list li {
      margin-bottom: 10px;
      font-size: 1rem;
      position: relative;
      padding-left: 25px;
    }

    .ventajas-list li::before {
      content: "✓";
      color: #27ae60;
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
    }

    /*seccion de propiedades*/
 .property-card {
      display: flex;
      flex-direction: row;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
      height: 100%;
    }

    .property-card:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(-3px);
    }

    .property-img {
      position: relative;
      width: 40%;
      min-width: 200px;
      overflow: hidden; /* Oculta el exceso al hacer zoom */
    }

    .property-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease; /* Transición suave */
    }

       /* Efecto de zoom */
    .property-card:hover .property-img img {
      transform: scale(1.1);
    }

        /* --- Badge base --- */
    .badge-custom {
      position: absolute;
      top: 15px;
      left: 0;
      background-color: #ff7b00;
      color: #fff;
      padding: 6px 15px;
      font-size: 0.8rem;
      font-weight: 600;
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
    }

    /* Flecha apuntando a la derecha */
    .badge-custom::after {
      content: "";
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 10px solid #ff7b00;
    }

    /* Badge de venta (flecha izquierda) */
    .badge-sale {
      position:absolute;
      top: 15px;
      right: 0;
      background-color: #dc3545;
      color: #fff;
      padding: 6px 15px;
      font-size: 0.8rem;
      font-weight: 600;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
    }

    .badge-sale::after {
      content: "";
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translateY(-50%);
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-right: 10px solid #dc3545;
    }

/*    .badge-custom {
      position: absolute;
      top: 10px;
      left: 0;
      background-color: #ff7b00;
      color: #fff;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .badge-sale {
      right: 0;
      left: auto;
      background-color: #dc3545;
    }*/

    .property-body {
      padding: 15px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .property-body h5 {
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
    }

    .property-body p {
      font-size: 0.9rem;
      color: #666;
      margin: 3px 0;
    }

    .property-body .price {
      font-weight: bold;
      color: #ff7b00;
      font-size: 1rem;
    }

    .property-body a {
      color: #ff7b00;
      text-decoration: none;
      font-weight: 500;
    }

    .property-body a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .ventajas-card {
        padding: 40px 20px 25px;
      }
      .persona-img {
        width: 80px;
        height: 80px;
        top: -40px;
      }
      .ventajas-title {
        margin-top: 50px;
        text-align: center;
      }

            .property-card {
        flex-direction: column;
      }
      .property-img {
        width: 100%;
        height: 200px;
      }
    }

           @media(min-width: 768px){
        .widthReg{
          width: 20rem;
      }
    }


/*    @media(max-width: 820){
                  .btn-orange{
        padding: 0 0 0 0;
        background-color:"red" !important ;
      }
    }*/