#metodosdepago {
      font-family: Roboto, sans-serif;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      max-width: 700px;
      margin: 10px auto;
      box-sizing: border-box;
      border: 1px solid #ececec;
    }

    #metodosdepago h3 {
      margin-bottom: 15px;
      margin-top: 0px;
      font-size: 1.2em;
    }

    .contact-card {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 16px;
      padding: 0px;
      margin-bottom: 15px;
    }

    #metodosdepago .wa-logo {
      width: 50px;
      height: 50px;
      margin-right: 15px;
      flex-shrink: 0;
      object-fit: contain;
      background: transparent !important;
      border-radius: 8px;
		box-shadow: none;
    }

    .contact-info {
      flex: 1;
    }

    .contact-info p {
      margin: 2px 0 0;
      color: #777;
      font-size: 0.9em;
		text-decoration: none !important;
    }
		
	.contact-info strong {
      font-weight: 400 !important;
	color: black;
    }	
		

    .actions {
      display: flex;
      gap: 10px;
    }

    .icon {
      background-color: #007bff;
      color: white;
      width: 20px;
      height: 20px;
      padding: 25px;
      border-radius: 50%;
      font-size: 22px;
      cursor: pointer;
      transition: background-color 0.2s;
      text-align: center;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .icon:hover {
      background-color: #0056b3;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .qr-image {
      background: white;
      padding: 20px;
      border-radius: 10px;
      max-width: 90%;
    }