<style>
    #que-es-leasing-section {
      width: 100%;
      background-color: white;
      padding: 80px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      font-family: 'Poppins', sans-serif;
      overflow: hidden;
    }

    #que-es-leasing-section .content-wrapper {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 0 20px;
      display: flex;
      align-items: center;
    }

    /* PESTAÑA AZUL - ESCRITORIO */
    #que-es-leasing-section .info-tab {
      padding: 30px 45px;
      border-radius: 0 40px 40px 0;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%) translateX(-10%);
      z-index: 10;
      box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    }

    #que-es-leasing-section .tab-title {
      font-family: 'Poppins';
      font-weight: 400;
      font-size: 38px;
      line-height: 126%;
      letter-spacing: 0px;
      text-align: center;
      margin: 0;
      white-space: nowrap;
    }

    #que-es-leasing-section .tab-title span {
      font-weight: 600;
      color: #FFFFFF;
    }

    /* BLOQUE OSCURO - ESCRITORIO */
    #que-es-leasing-section .dark-info-box {
      padding: 60px 60px 60px 180px; /* Padding extra para el solape */
      border-radius: 24px;
      margin-left: auto;
      width: 80%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      box-sizing: border-box;
    }

    #que-es-leasing-section .info-text {
      font-family: 'Poppins';
      font-weight: 300;
      font-size: 25px;
      line-height: 126%;
      letter-spacing: 0px;
      color: #FFFFFF;
      margin: 0;
    }

    #que-es-leasing-section .info-text span {
      font-weight: 600;
      color: #FFFFFF;
    }

    #que-es-leasing-section .info-text + .info-text {
      margin-top: 30px;
    }

    /* 🔥 AJUSTES VERSIÓN MÓVIL */
    @media (max-width: 900px) {
      #que-es-leasing-section {
        padding: 40px 0;
      }

      #que-es-leasing-section .content-wrapper {
        flex-direction: column;
        margin: 0 15px; /* Margen de 15px solicitado */
        width: calc(100% - 30px);
      }

      /* Pestaña Azul Móvil */
      #que-es-leasing-section .info-tab {
        position: relative;
        transform: none;
        border-radius: 25px;
        margin-bottom: -25px;
        width: fit-content; /* Menos ancho */
        padding: 15px 30px;
        left: auto;
      }

      #que-es-leasing-section .tab-title {
        font-size: 19px;
        white-space: normal;
      }

      /* Bloque Oscuro Móvil */
      #que-es-leasing-section .dark-info-box {
        width: 100%; /* Encajado en los 15px de margen */
        padding: 45px 20px 25px 20px;
        margin-left: 0;
        border-radius: 20px;
        text-align: center;
      }

      #que-es-leasing-section .info-text {
        font-size: 12px;
      }

      #que-es-leasing-section .info-text + .info-text {
        margin-top: 20px;
      }
    }
  </style>