 body {
      background-color: #f8f9fa;
    }

    .container {
      padding-top: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      flex-direction: column;
    }

    .info-content {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      color: #555;
      font-size: 1.2rem;
      position: absolute;
      top: 0;
      left: 0;
      transition: opacity 0.5s;
    }

    .info-content.hidden {
      opacity: 0;
    }

    .persiana-title {
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #833996;
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 1.5rem;
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      transition: transform 0.5s ease, bottom 0.5s ease;
      z-index: 1;
      background: rgb(255, 255, 255);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 6px 12px #833996;
      border-bottom: 4px solid #0E62ED;
    }

    .persiana-arrow {
      font-size: 1.5rem;
      margin-left: 10px;
      transition: transform 0.5s;
    }

    .persiana-arrow.rotate {
      transform: rotate(180deg);
    }


    .form-options.open {
      max-height: 700px;
      opacity: 1;
      display: flex;
      flex-direction: column;
      height: calc(100vh - 100px);
    }

    .persiana-title.open {
      bottom: 90%;
      transform: translateX(-50%) translateY(-10px);
    }

    .form-options {
      max-width: 1000px;
      width: 95%;
      padding: 30px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      margin: auto;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.5s ease, opacity 0.5s ease;
      z-index: 2;
      position: relative;
    }

    .scroll-wrapper {
      overflow-y: auto;
      flex-grow: 1;
      margin-bottom: 10px;
      padding: 8px;
    }

    .button-fixed-wrapper {
      position: sticky;
      bottom: 0;
      background: white;
      padding-top: 12px;
      padding-bottom: 8px;
      z-index: 2;
    }

    #optionsList {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      width: 100%;
      box-sizing: border-box;
    }

    .option-item {
      width: 100%;
      box-sizing: border-box;
      padding: 10px 10px;
      border-radius: 10px;
      transition: all 0.3s ease;
      background: white;
      color: #833996;
      box-shadow: 0 3px 6px #833996;
      text-align: center;
      font-size: 1rem;
      word-break: break-word;
      overflow: hidden;
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    @media (max-width: 1200px) {
      #optionsList {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
      }
    }

    .option-item:hover,
    .option-item.selected {
      background-color: #f0e5ff;
      color: #4b004b;
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(128, 0, 128, 0.2);
      border-bottom: 4px solid rgba(128, 0, 128, 0.2);
      border-bottom-color: #4b004b;
      font-weight: bold;
    }

    /* Efecto de levantado más pronunciado al hacer clic */
    .option-item:active {
      transform: translateY(-2px);
    }


    /* Versión móvil */
    @media (max-width: 768px) {
      .option-item {
        margin-bottom: 12px;
        padding: 12px;
      }

      #optionsList {
        gap: 15px;
        grid-template-columns: 1fr;
      }
    }

    .btn-primary {
      background-color: #833996;
      border-color: #6a006a;
      padding: 10px;
      color: white;
      cursor: pointer;
      text-align: center;
      border-radius: 8px;
      display: block;
      width: 100%;
    }

    .btn-primary:hover {
      background-color: #6a006a;
      border-color: #4b004b;
    }

    .text-center-title {
      text-align: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #333;
    }

    .info-content .btn-minimal {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: transparent;
      color: #833996;
      border: 1px solid #833996;
      padding: 5px 15px;
      font-size: 0.9rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s;
    }

    .info-content .btn-minimal:hover {
      background-color: #833996;
      color: #fff;
    }

    .info-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .images-container {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 20px;
      align-items: center;
    }

    .image-item {
      object-fit: cover;
      width: 175px;
      height: 175px;
      border-radius: 5px;
    }

    .image-column {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-right: 20px;
      border-right: 1px solid #833996;
      height: 300px; /* ← Altura fija */
      justify-content: center;
    }

    .text-column {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #000;
      padding: 20px;
      height: 100%;
      position: relative;
    }

    .text-center-fixed {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      width: 100%;
      padding: 10px 0;
      font-size: 1.5rem;
      font-weight: bold;
    }

    .vertical-line {
      width: 2px;
      background: rgba(0, 0, 0, 0.2);
      height: 100%;
      align-self: stretch;
    }

    .btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #833996;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s;
      width: auto;
    }

    .btn:hover {
      background-color: #0056b3;
    }

    .persiana-container {
      max-width: 900px;
      padding: 20px;
      border-radius: 15px;
      background-color: #ffffff;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .persiana-title,
    .persiana-container {
      max-width: 700px;
      width: 100%;
      margin: auto;
    }

    @media (max-width: 768px) {
      .container {
        padding-top: 20px;
      }

      .persiana-title {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 1000;
        font-size: 1rem;
        padding: 10px;
      }

      .persiana-title.open {
        bottom: auto;
        top: 10px;
      }

      .form-options {
        position: relative;
        margin-top: 70px;
        margin-bottom: 70px;
        max-height: calc(100vh - 140px);
        padding: 15px;
        width: 95%;
        overflow-y: auto;
      }

      .form-options.open {
        max-height: calc(100vh - 120px);
      }

      .scroll-wrapper {
        max-height: calc(100vh - 200px);
      }

      #optionsList {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;

      }

      .option-item {
        margin-bottom: 8px;
        width: 100%;
        box-sizing: border-box;
      }

      .btn-primary {
        position: sticky;
        bottom: 0;
        margin-top: 10px;
      }

      .images-container {
        grid-template-columns: 1fr;
      }

      .image-column {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #833996;
        padding-right: 0;
        padding-bottom: 20px;
        height: auto;
        justify-content: center;

      }

      .text-column {
        padding: 10px;
      }

      .text-center-fixed {
        position: relative;
        transform: none;
        left: auto;
        margin-bottom: 15px;
      }
    }

    @media (max-width: 480px) {
      .persiana-title {
        font-size: 0.9rem;
      }

      .image-item {
        width: 120px;
        height: 120px;
      }
    }

    .tooltip-msg-fixed {
      display: inline-block;
      margin-left: 10px;
      max-width: 180px;
      vertical-align: middle;
      background-color: #efd7f7;
      color: #833996;
      padding: 6px 5px;
      border-radius: 6px;
      font-size: 0.75rem;
      line-height: 1.2;
      word-wrap: break-word;
      white-space: normal;
    }

    .idioma-reminder {
      font-size: 1rem;
      color: #6a1b9a;
      background-color: #f5f5ff;
      padding: 8px 16px;
      border-radius: 6px;
      display: inline-block;
      justify-content: center;
    }