  /*INICIO PREGUNTAS FRECUENTES NORMAL*/
  .faq-section {
      background-color: #0F1111;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      margin-top: 40px;
      display: flex;
      margin-bottom: 40px;
  }

  .faq-container {
      padding: 15px;
      max-width: 1200px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      margin-left: auto;
      margin-right: auto;
  }

  .faq-header {
      width: 100%;
      padding: 15px;

  }

  .faq-header h2 {
      color: #FFFFFF;
      font-size: 40px;
      line-height: 50px;
      margin-bottom: 15px;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 850px) {
      .faq-container {
          display: grid;
      }

      .faq-column-left,
      .faq-column-right {
          width: 100% !important;
      }

      .faq-accordion {
          margin-right: auto !important;
      }

  }
   .faq-title{
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        text-shadow: 0 2px 8px rgba(238, 115, 10, 0.3);
        font-size: 1.9rem;
        background: linear-gradient(135deg, #000 0%, #333 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
     } 

    .faq-subtitle {
    color: #EE730A;faq-subtitle
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
    margin-top: 20px;
    text-shadow: 0 2px 8px rgba(238, 115, 10, 0.3);
}
  .faq-subtitle.text-center {
      text-align: center;
  }

  .faq-column-left {
      width: 50%;
      padding: 15px;
  }

  .faq-column-left h2 {
      /*color: #FFFFFF;
      font-size: 40px;
      line-height: 50px;
      margin-bottom: 44px;*/
  }
  .faq-column{
    width:  100%;
  }
  .faq-column-left h3, .faq-column h3 {
      color: #FFFFFF;
      font-size: 18px;
      font-weight: 300;
  }

  .faq-column-right {
      width: 50%;
      padding: 15px;
      position: relative;
      align-items: center;
      display: flex;
  }

  .faq-container img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-column-right:hover img {
      transform: scale(1.02);
  }

  .faq-video-btn {
      height: 76px;
      width: 76px;
      background-image: none;
      background: linear-gradient(135deg, #EE730A 0%, #F98D2C 100%);
      font-size: 26px;
      z-index: 1;
      position: absolute;
      top: 50%;
      left: 50%;
      color: #fff;
      transform: translate(-50%, -50%);
      border-radius: 100%;
      box-shadow: 0 8px 24px rgba(238, 115, 10, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-video-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 12px 32px rgba(238, 115, 10, 0.5);
  }

  .faq-video-btn:before {
      content: "";
      position: absolute;
      z-index: -1;
      left: 0;
      top: 0;
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(238, 115, 10, 0.8) 0%, rgba(249, 141, 44, 0.8) 100%);
      border-radius: 50%;
      animation: pulse-border 1500ms ease-out infinite;
  }

  .faq-video-btn:hover:before,
  .faq-video-btn:focus:before {
      animation-play-state: paused;
  }

  .faq-video-btn i {
      font-weight: 900 !important;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }

  .faq-video-btn:hover,
  .faq-video-btn:focus {
      color: #fff !important;
  }

  @keyframes pulse-border {
      0% {
          transform: scale(1);
          opacity: 1;
      }

      100% {
          transform: scale(1.5);
          opacity: 0;
      }
  }

  .faq-accordion {
      margin-right: 40px;
      display: grid;
      gap: 15px;
  }

  .faq-item {
      border: 1px solid rgba(238, 115, 10, 0.2);
      background: linear-gradient(135deg, #1a1c23 0%, #1f2128 100%);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  .faq-item:hover {
      border-color: rgba(238, 115, 10, 0.4);
      box-shadow: 0 8px 24px rgba(238, 115, 10, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3);
      transform: translateY(-2px);
  }

  .faq-item-header {
      font-weight: 300;
      letter-spacing: 1px;
      padding: 0px;
  }

  .faq-question,
  .faq-question:hover,
  .faq-question:focus {
      font-size: 18px;
      color: rgb(255, 255, 255) !important;
      cursor: pointer;
      width: 100%;
      display: flex !important;
      padding: 18px 6px 18px 0;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
  }

  .faq-question:hover .faq-question-text {
      color: #EE730A;
  }

  .faq-question .indicator {
      margin-right: 10px;
      margin-top: 5px;
      color: rgb(238, 115, 10);
      font-weight: 900;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  }

  .faq-question:hover .indicator {
      /*transform: scale(1.2);*/
      filter: drop-shadow(0 0 8px rgba(238, 115, 10, 0.6));

  }


  .faq-answer {
      color: rgb(204, 204, 204);
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 24px;
      padding: 0px 30px;
      animation: fadeInAnswer 0.3s ease;
  }

  @keyframes fadeInAnswer {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .indicator {
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-block;
  }

  .faq-question .indicator.ti-minus {
      transform: rotate(180deg);
  }

  .faq-question .indicator.ti-plus {
      transform: rotate(0deg);
  }


  .faq-question-text {
      position: relative;
      padding-left: 30px;
      padding-right: 40px;
      transition: color 0.3s ease;
  }

  .faq-icon {
      float: right;
  }

  /*FIN PREGUNTAS FRECUENTES NORMAL*/



  /* SEO-EXTRA.blade */
  .faq-light {
      background-color: #ffffff !important;
  }

  .faq-light h2 {
      /*font-size: 1.8em !important;
      background: linear-gradient(135deg, #000 0%, #333 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;*/
  }

  .faq-light h3 {
      font-size: 1.6em !important;
  }

  .faq-light p {
      color: #333333;
      line-height: 1.7;
  }

  .faq-light .faq-item {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
      border: 1px solid #e1e4e8 !important;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-light .faq-item:hover {
      box-shadow: 0 6px 20px rgba(238, 115, 10, 0.12), 0 2px 12px rgba(0, 0, 0, 0.08);
      border-color: rgba(238, 115, 10, 0.3) !important;
      transform: translateY(-2px);
  }

  .faq-light .faq-question {
      color: #000000 !important;
      transition: all 0.3s ease;
  }

  .faq-light .faq-question:hover,
  .faq-light .faq-question:focus,
  .faq-light h3:hover,
  .faq-light h3:focus {
      color: #EE730A !important;
  }

  .faq-light .faq-answer {
      color: #444444 !important;
      animation: fadeInAnswer 0.3s ease;
  }

  .faq-light h3 {
      color: #000000 !important;
      font-size: 18px !important;
      margin-bottom: 0px !important;
      line-height: normal;
      transition: color 0.3s ease;
  }

  /* Benefit Icons */
  .benefit-icon {
      color: #ee730a;
      margin-right: 12px;
      font-size: 20px;
      transition: all 0.3s ease;
  }

  .faq-question:hover .benefit-icon {
      transform: scale(1.2);
  }

