
    /* General Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #ffffff;
      color: #333;
      margin: 0;
      padding: 0;
    }

    .pricing-section {
      text-align: center;
      padding: 20px;
    }

    .pricing-section h2 {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #333;
    }

    .pricing-section p {
      font-size: 1em;
      margin-bottom: 20px;
      color: #555;
    }

    .plans {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .plan {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 20px;
      width: 100%;
      max-width: 350px;
      text-align: left;
      position: relative;
    }

    .plan::before {
      content: "Primer mes gratis";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #2ecc71;
      color: #333;
      font-size: 0.9em;
      font-weight: bold;
      text-align: center;
      padding: 5px 0;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      font-weight: 500;
    }

    .plan h3 {
      color: #333;
      font-size: 1.3em;
      margin-top: 20px;
      margin-bottom: 5px;
    }

    .plan p {
      font-size: 0.9em;
      margin-bottom: 15px;
      color: #666;
    }

    .plan .price {
      font-size: 2em;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }

    .plan .billing-info {
      font-size: 0.8em;
      color: #888;
      margin-bottom: 15px;
    }

    .plan ul {
      list-style: none;
      margin-bottom: 10px;
    }

    .plan ul li {
      font-size: 0.9em;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .plan ul li::before {
      content: '\2713';
      color: #2ecc71;
      font-weight: bold;
      margin-right: 10px;
    }

    .plan button {
      width: 100%;
      padding: 10px 0;
      border: none;
      background-color: #000;
      color: white;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      border-radius: 5px;
    }

    .plan button:hover {
      background-color: #333;
    }

    .plan .toggle-features {
      font-size: 0.9em;
      color: #2ecc71;
      cursor: pointer;
      margin-top: 10px;
      display: inline-block;
    }

  

    @media (min-width: 768px) {
      .plans {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
      }
    }
    
      /* Ocultar las características inicialmente */
      .plan ul li.hidden {
      display: none;
    }

        /* Etiqueta de más popular */
        .plan.popular::after {
      content: 'Más popular';
      position: absolute;
      top: 40px;
      right: 10px;
      background-color: #2ecc71;
      color: white;
      font-size: 0.8em;
      font-weight: bold;
      padding: 5px 10px;
      border-radius: 3px;
    }


  

    .float{
      position:fixed;
      width:60px;
      height:60px;
      bottom:30px;
      right:30px;
      background-color:#25d366;
      color:#FFF;
      border-radius:50px;
      text-align:center;
      font-size:30px;
      box-shadow: 2px 2px 3px #999;
      z-index:100;
    }
    .float:hover {
      text-decoration: none;
      color: #25d366;
      background-color:#fff;
    }
    
    .my-float{
      margin-top:16px;
    }
  