<style>


   .prass-container {
      background: #fff;
      border-radius: 20px;
      padding: 0px 72px 40px 72px;
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: flex-start;
    }

    .prass-title {
      font-size: 36px;
      font-weight: bold;
      color: #000;
      margin-bottom: 14px;
      font-family: 'Frutiger LT Std', sans-serif;
    }

    .subtitle {
      font-size: 16px;
      color: #000;
      margin-bottom: 43px;
      line-height: 26px;
      font-family: 'Frutiger LT Std', sans-serif;
      font-weight: 300;
    }

    .cards {
      display: flex;
      gap: 90px;
      justify-content: space-between;
      align-items: stretch;
      width: 100%;
    }

    .prass-card {
      background: #fff;
      border-radius: 16px;
      padding: 32px;
      position: relative;
      border: 1px solid #898b8e;
      display: flex;
      flex-direction: column;
    }

    .prass-card:first-child {
      flex: 1;
      min-width: 0; /* Permite que la card se encoja si es necesario */
    }

    .prass-card.addon {
      background: #fdf3f5;
      border-color: #d03e60;
      width: min(476px, 34%); /* Ancho adaptativo con máximo de 476px */
      height: fit-content; /* Ajusta la altura al contenido */
      align-self: flex-start; /* Permite que la altura se ajuste al contenido */
    }

    .card-header {
      border-bottom: 1px solid #898b8e;
      padding-bottom: 16px;
      margin-bottom: 22px;
    }

    .addon .card-header {
      border-color: #d03e60;
    }

    .card-title {
      font-size: 22px;
      font-weight: bold;
      color: #000;
      font-family: 'Frutiger LT Std', sans-serif;
    }

    .addon .card-title {
      color: #d03e60;
    }

    .service-list, .addon-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .service, .addon-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      line-height: 26px;
      color: #000;
      font-family: 'Frutiger LT Std', sans-serif;
      font-weight: 300;
    }

    .service-icon {
      width: 16.5px;
      height: 11.5px;
    }

    .addon-icon {
      width: 22px;
      height: 22px;
      background: #fff;
      border-radius: 11px;
      border: 2px solid #d31d3f;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5px;
    }

    .addon-icon img {
      width: 12px;
      height: 12px;
    }

    .info-icon {
      background: #eeeeee;
      border-radius: 10px;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Courgette', cursive;
      font-size: 16px;
      color: #000;
      margin-left: 6px;
      cursor: help;
      position: relative;
    }

    .tooltip {
      position: absolute;
      background: #000;
      color: #fff;
      padding: 10px;
      border-radius: 4px;
      font-size: 14px;
      line-height: 1.4;
      width: max-content;
      max-width: 250px;
      left: 50%;
      transform: translateX(-50%);
      top: calc(100% + 10px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s;
      z-index: 100;
      text-align: left;
      font-family: 'Frutiger LT Std', sans-serif;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .tooltip::before {
      content: '';
      position: absolute;
      bottom: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent #000 transparent;
    }

    @media (hover: hover) {
      .info-icon:hover .tooltip {
        opacity: 1;
        visibility: visible;
      }
    }

    .info-icon.tooltip-active .tooltip {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 768px) {
      .tooltip {
        position: fixed;
        left: 20px;
        right: 20px;
        bottom: 20px;
        top: auto;
        transform: none;
        width: auto;
        max-width: none;
      }

      .tooltip::before {
        display: none;
      }
    }

    @media (max-width: 1200px) {
      .cards {
        flex-direction: column;
        gap: 30px;
        width: 100%;
      }

      .prass-container {
        padding: 20px;
        margin: 0;
        max-width: 100%;
        border-radius: 0;
      }

      .prass-card {
        width: 100%;
      }

      .prass-card.addon {
        max-width: none;
        width: 100%;
      }
    }
  </style>