To help you make an informed decision, we’ve categorised different internet speed ranges into four easy-to-understand levels. These categories—Essential, Standard, Enhanced, and Premium—are designed to match various household sizes and usage needs. Explore the table below to see which speed range best suits your lifestyle, ensuring a smooth and reliable internet experience for everyone in your home.

Usage / Activity

Essential

Standard

Enhanced

Premium

  • Connected Devices
  • Email & Browsing
  • Video Calls
  • HD Video Streaming
  • 4K Video Streaming
  • Online Gaming
  • Streaming own gameplay
1-4
1-2 calls
1-2 devices
0-1 devices
Single Player
1 device
5-6
3 calls
3 devices
2 devices
Single player
1-2 devices
7-10
4-5 calls
4-5 devices
3 devices
Single / 2-player
2-3 devices
11+
6+ calls
6+ devices
4+ devices
3+ devices
3+ devices
<script>
  
 let isMobile = false;
let originalHtml = null;

function executeCodeOnMobile() {
  // Mover todos los elementos al principio
  const headerCols = document.querySelectorAll(".fb-pt-two__header .fb-pt-two__col");
  const bodyCols = document.querySelectorAll(".fb-pt-two__body .fb-pt-two__col");

  if (headerCols.length > 0 && bodyCols.length > 0) {
    headerCols.forEach((headerCol, index) => {
      const bodyCol = bodyCols[index];
      while (headerCol.firstChild) {
        bodyCol.insertBefore(headerCol.lastChild, bodyCol.firstChild);
      }
    });
  }

  // Igualar la altura del elemento '.fb-pt-two__heading' al primer elemento '.fb-pt-two__plan'
  const firstPlanElement = document.querySelector('.fb-pt-two__plan');
  const headingElement = document.querySelector('.fb-pt-two__heading');

  if (firstPlanElement && headingElement) {
    const planElementHeight = firstPlanElement.clientHeight;
    headingElement.style.height = planElementHeight + 'px';
  }

  // Duplicar el elemento con clase "fb-pt-two__col-list" en el cuerpo
  const fbBody = document.querySelector('.fb-pt-two__body');
  const elementToDuplicate = fbBody.querySelector('.fb-pt-two__col-list');

  if (elementToDuplicate) {
    const colElements = fbBody.querySelectorAll('.fb-pt-two__col');
    for (let i = 1; i < colElements.length - 1; i++) {
      const colElement = colElements[i];
      const clonedElement = elementToDuplicate.cloneNode(true);
      colElement.insertAdjacentElement('afterend', clonedElement);
    }
  }
}

function checkScreenSize() {
  const isMobileNow = window.matchMedia("(max-width: 767px)").matches;

  if (isMobileNow && !isMobile) {
    // Almacenar el estado actual del HTML en la variable originalHtml
    originalHtml = document.documentElement.innerHTML;
    isMobile = true;
    executeCodeOnMobile();
  } else if (!isMobileNow && isMobile) {
    // Restaurar el estado inicial del HTML
    document.documentElement.innerHTML = originalHtml;
    isMobile = false;
  }

  if (isMobileNow) {
    // Recalcular el alto de .fb-pt-two__plan
    const firstPlanElement = document.querySelector('.fb-pt-two__plan');
    const headingElement = document.querySelector('.fb-pt-two__heading');

    if (firstPlanElement && headingElement) {
      const planElementHeight = firstPlanElement.clientHeight;
      headingElement.style.height = planElementHeight + 'px';
    }
  }
}

// Ejecutar el código al cargar la página
document.addEventListener("DOMContentLoaded", checkScreenSize);

// Volver a ejecutar el código cuando se redimensione la pantalla
window.addEventListener("resize", checkScreenSize);

    
</script>