/*tipo de letra*/
@font-face {
  font-family: "Amertha";
  src: url("../fonts/Amertha_PERSONAL_USE_ONLY.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "FuturaCustom";
  src: url("../fonts/Futura.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Gobold";
  src: url("../fonts/Gobold_High_Bold.otf") format("opentype");
  font-weight: bold;
}

/* Fondo header - ENCABEZADO */
.header-section-1 {
  background: linear-gradient(90deg, #027095, #032459);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* enlaces */
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

/* hover elegante */
.navbar-nav .nav-link:hover {
  color: #00c8ff;
}

/* dropdown */
.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* items dropdown */
.dropdown-item {
  font-size: 15px;
  padding: 10px 20px;
}

/* hover dropdown */
.dropdown-item:hover {
  background: #027095;
  color: #fff;
}

/* PRELOADER */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #032459;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.6s ease;
}

/* spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid #00c8ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

/* animación spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* texto */
.loading-text {
  margin-top: 20px;
  text-align: center;
}

.loading-text span {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 4px;
  animation: letters 1.5s infinite;
}

/* animación letras */
.loading-text span:nth-child(2) {
  animation-delay: 0.1s;
}
.loading-text span:nth-child(3) {
  animation-delay: 0.2s;
}
.loading-text span:nth-child(4) {
  animation-delay: 0.3s;
}
.loading-text span:nth-child(5) {
  animation-delay: 0.4s;
}
.loading-text span:nth-child(6) {
  animation-delay: 0.5s;
}
.loading-text span:nth-child(7) {
  animation-delay: 0.6s;
}
.loading-text span:nth-child(8) {
  animation-delay: 0.7s;
}
.loading-text span:nth-child(9) {
  animation-delay: 0.8s;
}

@keyframes letters {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

/* CAROUSEL */
.hero-slider {
  width: 100%;
}

/* imagen del slider */
.slider-img {
  width: 100%;
  height: 775px;
  object-fit: cover;
}

/* tablets */
@media (max-width: 992px) {
  .slider-img {
    height: 450px;
  }
}

/* móviles */
@media (max-width: 576px) {
  .slider-img {
    height: 250px;
  }
}

/* transición elegante */
.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}

/*SECTION DE PLANES*/
/* ================= PLANES INTERNET ================= */

.planes-section {
  padding: 25px 0 78px;
  background: url("../img/fondos/fondo_planes.png") no-repeat center top;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.planes-section .container {
  position: relative;
  z-index: 2;
}

.titulo-planes {
  color: #fff;
  /*font-family: "Futura", Arial, sans-serif;*/
  font-size: 43px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 36px;
  line-height: 1;
}

.titulo-planes strong {
  font-family: "Gobold High Bold", "Futura", Arial, sans-serif;
  font-weight: 900;
}

.planes-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 42px;
  flex-wrap: wrap;
}

.plan-card {
  width: 244px;
  min-height: 373px;
  background: #fff;
  border-radius: 19px;
  position: relative;
  padding: 18px 20px 49px;
  text-align: center;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.25);
  overflow: visible;
}

.plan-bg {
  position: absolute;
  inset: 0;
  background: url("../img/fondos/fond_card1.png") no-repeat top left;
  background-size: 100% auto;
  border-radius: 19px;
  z-index: 1;
  pointer-events: none;
}

.plan-content {
  position: relative;
  z-index: 2;
}

.plan-box {
  display: inline-block;
  text-align: center;
}

/* 🔹 PALABRA PLAN */
.plan-word {
  display: flex;
  justify-content: space-between; /* 🔥 CLAVE */
  width: 100%; /* toma el ancho del plan-name */
  font-family: "Futura", Arial, sans-serif;
  color: #1478ff;
  font-size: 15px;
  font-weight: 900;
  margin: 0;
}

/* cada letra */
.plan-word span {
  display: inline-block;
}

/* 🔹 NOMBRE DEL PLAN */
.plan-name {
  font-family: "Gobold", "Futura", Arial, sans-serif;
  color: #1478ff;
  font-size: 45px;
  line-height: 0.95;
  margin: 2px 0 7px;
  text-transform: uppercase;
}

.plan-num {
  width: 176px;
  display: block;
  margin: 0 auto;
}

/* MEGAS */
.megas {
  font-family: "Futura", "Arial Black", Arial, sans-serif;
  color: #1478ff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 8px;
  margin: 0;
  text-align: center;
}

/* SOLO POR */
.solo-por {
  font-family: "Futura", Arial, sans-serif;
  color: #444;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 6px;
  margin: 2px 0;
  text-align: center;
}

/* CONTENEDOR PRECIO */
.plan-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #ff7300;
  line-height: 1;
  margin-top: 0;
}


/* $ */
.currency,
.price-int,
.price-dec {
  font-family: "Futura", "Arial Black", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  
}
.currency {
  font-size: 30px;
  margin-top: 7px;
  margin-right: 4px;
}

/* BLOQUE 26 + .99 */


/* 26 GRANDE */
.price-int {
  font-size: 45px;
  line-height: .9;
}

.price-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2px;
  margin-top: 1px;
}

/* .99 DEBAJO */
.price-dec {
  font-size: 27px;
  line-height: .8;
}

/* /MES */

.price-period {
  color: #222;
  font-family: "Futura", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  margin-top: 1px;
}
/*APARTADO DE BENEFICIOS*/
.plan-benefits {
  list-style: none;
  padding: 0;
  margin: 15px auto 0;
  width: fit-content; /* centra el bloque completo */
}

/* ITEM */
.plan-benefits li {
  display: grid;
  grid-template-columns: 20px auto; /* icono | texto */
  align-items: center;
  column-gap: 10px;

  font-family: "Futura", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2b2b2b;

  margin-bottom: 10px;
}

/* ICONO */
.plan-benefits .icon {
  width: 16px;
  height: 16px;
  justify-self: center; /* centra icono en su columna */
}

/*BOTON CONTRATA YA*/
.btn-plan {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  z-index: 6;

  background: #ff7300;
  color: #fff;
  text-decoration: none;

  font-family: "Gobold High Bold", "Gobold", Arial, sans-serif;
  font-size: 30px;
  letter-spacing: 2px;

  padding: 10px 20px; /* 🔥 MÁS ALTO */
  border-radius: 14px;

  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);

  display: inline-block;
  line-height: 1.2; /* 🔥 clave para que no se vea aplastado */
  white-space: nowrap;
}

/* HOVER */
.btn-plan:hover {
  background: #ff6500;
  transform: translateX(-50%) scale(1.03); /* 🔥 efecto pro */
}

/*** ================== TV ================== */
/* ESTILOS APARTADO TV */
/* SECCIÓN */
.tv-section {
  margin-top: 35px;
}

.img-tv {
  max-width: 94%;
  transform: translateX(20px);
}

.tv-content {
  width: 320px;
  margin-left: 10px;
  text-align: left;
}

.tv-title {
  font-family: "Futura", Arial, sans-serif;
  font-size: 34px;
  line-height: 0.95;
  font-weight: 400;
  color: #ff7300;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.tv-title span {
  font-weight: 900;
  color: #ff7300;
}

.tv-text {
  font-family: "Futura", Arial, sans-serif;
  font-size: 27px;
  line-height: 0.9;
  font-weight: 900;
  color: #333;
  margin: 0 0 14px;
}

.tv-price-box {
  margin-bottom: 10px;
}

.tv-small {
  font-family: "Futura", Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 9px;
  color: #333;
  margin-left: 25px;
  margin-bottom: -2px;
}

.tv-price {
  display: flex;
  align-items: flex-start;
  color: #ff7300;
  line-height: 1;
}

.tv-currency,
.tv-number,
.tv-decimal {
  font-family: "Futura", "Arial Black", Arial, sans-serif;
  font-weight: 900;
}

.tv-currency {
  font-size: 40px;
  margin-top: 7px;
  margin-right: 1px;
}

.tv-number {
  font-size: 62px;
  line-height: 0.8;
  letter-spacing: -3px;
}

.tv-side {
  display: flex;
  flex-direction: column;
  margin-left: 2px;
  margin-top: 10px;
}

.tv-decimal {
  font-size: 25px;
  line-height: 0.8;
}

.tv-month {
  font-family: "Futura", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #222;
  margin-top: 1px;
}

.tv-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-tv {
  display: inline-block;
  background: #ff7300;
  color: #fff;
  text-decoration: none;
  font-family: "Futura", Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  padding: 12px 27px;
  border-radius: 8px;
  line-height: 1;
  box-shadow: 0 8px 14px rgba(0,0,0,0.22);
}

.btn-tv:hover,
.btn-tv-circle:hover {
  background: #ff6500;
  color: #fff;
}

/*ICONOS */
.tv-icons {
  margin-top: 40px;
}

/* ITEM HORIZONTAL */
.tv-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ICONO */
.tv-item img {
  height: 32px;
}

/* NUMERO */
.tv-item h4 {
  margin: 0;
  font-family: "Futura", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #333;
  line-height: 1;
}

/* TEXTO */
.tv-item p {
  margin: 0;
  font-family: "Futura", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #666;
  line-height: 1;
}

.tv-note {
  font-family: "Futura", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400; /* 🔥 más delgado */
  letter-spacing: 3px; /* 🔥 CLAVE (espaciado entre letras) */
  text-transform: uppercase;
  color: #555;
  text-align: center;
  margin-top: 20px;
}

/*==========================*/
/* APP */
.app-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  height: 620px;
}

/* franja naranja inclinada */
.app-section::before {
  content: "";
  position: absolute;
  left: -3%;
  top: 135px;
  width: 106%;
  height: 500px;
  background: url("../img/fondos/fondo_app.png") no-repeat center;
  background-size: cover;
  transform: skewY(4deg);
}

/* blanco inferior inclinado */
.app-section::after {
  content: "";
  position: absolute;
  left: -3%;
  bottom: -50px;
  width: 106%;
  height: 100px;
  background: #fff;
  
}

.app-content {
  position: relative;
  width: 1100px;
  height: 520px;
  margin: 0 auto;
  z-index: 4;
}

/* TÍTULO */
.app-title {
  position: absolute;
  left: 350px;
  top: 30px;
  z-index: 10;
}

.app-title h2 {
  font-family: "Futura", Arial, sans-serif;
  color: #ff6a00;
  font-size: 26px;
  line-height: .92;
  font-weight: 400;
  margin: 0;
}

.app-title h2 span,
.app-title h2 strong {
  font-weight: 900;
}

/* QR */
.app-qr-box {
  position: absolute;
  left: 350px;
  top: 178px;
  width: 135px;
  text-align: center;
  z-index: 10;
}

.app-qr-box h5 {
  background: linear-gradient(90deg, #FF972A 0%, #ff5a00 100%);
  color: #fff;
  font-family: "Futura", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
    padding: 10px 16px; /* 🔥 más ancho */
  border-radius: 10px;

  display: inline-block;
  white-space: nowrap; /* 🔥 NO se parte */
  margin: 0 auto 10px;

  box-shadow: 0 5px 10px rgba(0,0,0,.25);
}

.qr-img {
  width: 160px;
  display: block;
  border-radius: 10px;
  margin-bottom: 8px;
}

.playstore-img {
  width: 120px;
  display: block;
  margin: 0 auto; 
  transform: translateX(15px); 
}

/* CELULARES */
.app-phone-img {
  position: absolute;
  right: 245px;
  top: 1px;
  width: 310px;
  z-index: 12;
}

/* CUBO */
.app-logo-cubo {
  position: absolute;
  left: 400px;
  bottom: -95px;
  width: 185px;
  z-index: 13;
}

/*==========================*/
/* LINEA DIRECTA*/
.linea-section {
  background: linear-gradient(90deg, #047498, #05285f);
  color: #fff;
  padding: 48px 0 60px; /* 🔥 más aire arriba/abajo */
}

/* 🔥 MÁS ANCHO */
.linea-section .container {
  max-width: 900px;
}

/* TOP */
.linea-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px; /* 🔥 más separación */
}

/* LOGO */
.linea-brand h2 {
  color: #fff;
  font-family: "Futura", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: .8;
  margin: 0 0 -10px;
}

.linea-brand h2 span {
  font-family: "Amertha";
  color: #ff7300;
  font-size: 65px; /* 🔥 más grande */
}

.linea-brand img {
  width: 260px;
}

/* TELÉFONO */
.linea-phone {
  text-align: center;
}

.linea-phone img {
  width: 350px;
}

.linea-phone p {
  color: #ff7300;
  font-family: "Futura", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  margin-top: 10px;
  font-style: italic;
}

/* CAJA SERVICIOS */
.linea-services {
  background: #fff url("../img/fondos/fond_card1.png") no-repeat center;
  background-size: cover;

  border-radius: 30px;
  box-shadow: 0 18px 35px rgba(0,0,0,.25);

  padding: 40px 70px; /* 🔥 más espacio interno */
  margin-top: 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px; /* 🔥 separa items */
}

/* ITEM */
.linea-services div {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

/* ICONOS */
.linea-services img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  display: block;
  flex-shrink: 0;
}

/* TEXTO */
.linea-services p {
  margin: 0;
}

.linea-services strong {
  display: block;
  color: #ff7300;
  font-family: "Futura", Arial, sans-serif;
  font-size: 26px; /* 🔥 más grande */
  font-weight: 900;
  font-style: italic;
  line-height: .9;
}

.linea-services span {
  display: block;
  color: #ff7300;
  font-family: "Futura", Arial, sans-serif;
  font-size: 15px;
  font-style: italic;
  margin-top: 2px;
}
.linea-brand {
  margin-bottom: 20px; /* 🔥 separa título del logo */
}

.linea-brand h2 {
  margin-bottom: 10px;
}

.linea-brand img {
  margin-top: 10px;
}
.icon-circle {
  width: 70px;
  height: 70px;
  background: #e5e5e5;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}
.icon-circle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.linea-services div {
  display: flex;
  align-items: center;
  gap: 18px;
}



/* =========================
   CANAL
   ========================= */

.canal-section {
  position: relative;
  background: url("../img/fondos/fondo_app.png") no-repeat center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  padding: 70px 0 75px;
}

.canal-content {
  text-align: center;
  width: 100%;
}

.canal-main {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0 auto;
}

.canal-personal {
  grid-column: 1 / -1;
  width: 1200px;
  max-width: 100%;
  display: block;
  margin: 0 auto -25px;
}

.logo-canal {
  width: 180px;
  margin: 0;
  justify-self: end;
  display: block;
}

.canal-title {
  text-align: left;
}

.canal-title h2 {
  font-family: "Futura", Arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: .95;
  margin: 0;
}

.canal-title span {
  font-family: "Amertha", cursive;
  font-size: 70px;
  line-height: .7;
}

.canal-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 28px;
}

.btn-canal {
  background: #283336;
  color: #fff;
  font-family: "Futura", Arial, sans-serif;
  padding: 9px 54px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 1px;
}

.btn-canal:hover {
  color: #fff;
  background: #151b1d;
}


/*====================*/
/* PELICULAS */
/* PELICULAS */
.peli-section {
  padding: 70px 0 60px;
  background: url("../img/fondos/fondo_peli.png") center/cover no-repeat;
  text-align: center;
  position: relative;
}

/* LOGO GRANDE */
.peli-logo {
  max-width: 520px;
  margin-bottom: 10px;
  opacity: 0.95;
}

/* CANALES */
.peli-canales {
  max-width: 600px;
  margin-bottom: 10px;
}

/* TEXTO */
.peli-subtitle {
  color: #2b6de0;
  font-family: "Futura", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* SLIDER */
/*CAROUSEL NUEVO*/
.team-carousel{
  position: relative;
  height: 400px;
  margin: 15px auto;
}
.carousel-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.member{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
}

.member img{
  width: 300px;
  border-radius: 15px;
  max-height: 350px;
  object-fit: cover;
}

.member.active{
  transform: translate(-50%,-50%) scale(1);
  z-index: 3;
  opacity: 1;
}

.member.left{
  left: 25%;
  transform: translate(-50%,-50%) scale(0.8);
  opacity: .6;
  z-index: 2;
  filter: grayscale(70%);
}

.btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  padding: 15px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  color: #fff;
  transition: background 0.3s ease;
}

.btn:hover{
  background: rgba(0,0,0,0.9);
}

.prev{
  left: -50px;
}

.next{
  right: -50px;
}
.member.right {
  left: 75%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: .6;
  z-index: 2;
  filter: grayscale(70%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.4);
  color: #fff;

  font-size: 22px;
  line-height: 1;

  border: 2px solid rgba(255,255,255,.6);
}

.carousel-btn:hover {
  background: #ff7300;
  border-color: #fff;
  transform: translateY(-50%) scale(1.08);
}


.carousel-prev {
  left: 25px;
}

.carousel-next {
  right: 25px;
}

/*FOOTER*/
/* FOOTER */

.footer-section {
  background: linear-gradient(90deg, #0e5f7e, #0b2d63);
  color: #fff;
  padding: 70px 0 0;
  position: relative;
  
  border-top: 11px solid #ff6a00;
}

/* LOGO */
.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-email {
  font-size: 14px;
  font-weight: 400; 
  margin-bottom: 20px;
  opacity: 0.9;
}

/* REDES */
.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 25px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  opacity: 0.9;
}

/* TELEFONO */
.footer-phone-img {
  width: 170px;
}

/* TITULOS */
.footer-col h4 {
  font-size: 16px;
  font-weight: 600; /* 🔥 no tan pesado */
  margin-bottom: 18px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  
  color: #fff;              /* 🔥 blanco */
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;         /* 🔥 quitar negrita */

}
.footer-h4{
  font-family: "Futura", Arial, sans-serif;
}
/* TEXTOS */
.footer-col p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
 
}

/* APP */
.playstore {
  width: 150px;
  margin-bottom: 15px;
}

.qr {
  width: 140px; /* 🔥 no tan gigante */
  border-radius: 10px;
}

/* COPYRIGHT */
.footer-bottom {
  background: linear-gradient(90deg, #ff7a00, #ff3c00);
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 400;
  margin-top: 40px;
}

/* BOTON SUBIR */
.scroll-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 70px;
}

.scroll-top a {
  width: 50px;
  height: 50px;
  background: #ff7a00;
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

/* =========================
   RESPONSIVE TV SECTION
   ========================= */

@media (max-width: 768px) {

  .tv-section {
    margin-top: 15px;
    text-align: center;
  }

  .img-tv {
    max-width: 92%;
    transform: none;
    margin: 0 auto 20px;
    display: block;
  }

  .tv-content {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .tv-title {
    font-size: 30px;
    line-height: 0.95;
    margin-bottom: 10px;
  }

  .tv-text {
    font-size: 24px;
    line-height: 0.95;
    margin-bottom: 15px;
  }

  .tv-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tv-small {
    margin-left: 0;
    letter-spacing: 7px;
    font-size: 8px;
  }

  .tv-price {
    justify-content: center;
  }

  .tv-currency {
    font-size: 34px;
  }

  .tv-number {
    font-size: 56px;
  }

  .tv-decimal {
    font-size: 22px;
  }

  .tv-month {
    font-size: 11px;
  }

  .tv-actions {
    justify-content: center;
  }

  .btn-tv {
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 8px;
  }

  .tv-icons {
    margin-top: 30px;
    row-gap: 22px;
  }

  .tv-item {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .tv-item img {
    height: 30px;
  }

  .tv-item h4 {
    font-size: 27px;
  }

  .tv-item p {
    font-size: 11px;
  }

  .tv-note {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.4;
    padding: 0 18px;
    margin-top: 15px;
  }

  .text-center.mt-4 img {
    max-width: 90%;
  }
}
/* =========================
   APP RESPONSIVE MÓVIL
   ========================= */

@media (max-width: 768px) {

  .app-section {
    height: auto;
    min-height: auto;
    
    background: #fff;
    overflow: hidden;
  }

  .app-section::before {
    top: 75px;
    left: -10%;
    width: 120%;
    height: 470px;
    transform: none;
    background-size: cover;
    background-position: center top;
  }

  .app-section::after {
    display: none;
  }

  .app-content {
    width: 100%;
    height: auto;
    max-width: 360px;
    /* margin: 0 auto; */
    /* padding: 0 18px; */

    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .app-title {
    position: relative;
    left: auto;
    top: auto;
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
  }

  .app-title h2 {
    font-size: 26px;
    line-height: .95;
  }

  .app-qr-box {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 180px;
    text-align: center;
    margin-bottom: 12px;
    z-index: 10;
  }

  .app-qr-box h5 {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 9px;
    margin-bottom: 10px;
  }

  .qr-img {
    width: 135px;
    margin: 0 auto 8px;
  }

  .playstore-img {
    width: 118px;
    margin: 0 auto;
    transform: none;
  }

  .app-phone-img {
    position: relative;
    right: auto;
    top: auto;
    width: 245px;
    margin-top: 10px;
    z-index: 9;
  }

  .app-logo-cubo {
    position: relative;
    left: auto;
    bottom: auto;
    width: 150px;
    margin-top: -8px;
    z-index: 10;
  }
}

@media (max-width: 380px) {

  .app-section {
    padding-top: 40px;
    padding-bottom: 45px;
  }

  .app-section::before {
    top: 180px;
    height: 445px;
  }

  .app-title {
    margin-bottom: 105px;
  }

  .app-title h2 {
    font-size: 23px;
  }

  .qr-img {
    width: 125px;
  }

  .playstore-img {
    width: 108px;
  }

  .app-phone-img {
    width: 225px;
  }

  .app-logo-cubo {
    width: 135px;
  }
}
/* =========================
   LINEA DIRECTA RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .linea-section {
    padding: 45px 18px 55px;
  }

  .linea-section .container {
    max-width: 100%;
    padding: 0;
  }

  .linea-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
  }

  .linea-brand {
    margin-bottom: 0;
  }

  .linea-brand h2 {
    font-size: 34px;
    line-height: .9;
    margin-bottom: 8px;
  }

  .linea-brand h2 span {
    font-size: 52px;
  }

  .linea-brand img {
    width: 220px;
    margin-top: 8px;
  }

  .linea-phone img {
    width: 260px;
    max-width: 100%;
  }

  .linea-phone p {
    font-size: 23px;
    margin-top: 8px;
  }

  .linea-services {
    margin-top: 35px;
    padding: 28px 22px;
    border-radius: 24px;

    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .linea-services > div {
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
  }

  .icon-circle {
    width: 62px;
    height: 62px;
  }

  .icon-circle img {
    width: 30px;
    height: 30px;
  }

  .linea-services strong {
    font-size: 24px;
  }

  .linea-services span {
    font-size: 14px;
  }
}

@media (max-width: 380px) {

  .linea-brand h2 {
    font-size: 30px;
  }

  .linea-brand h2 span {
    font-size: 47px;
  }

  .linea-brand img {
    width: 195px;
  }

  .linea-phone img {
    width: 235px;
  }

  .linea-phone p {
    font-size: 21px;
  }

  .linea-services {
    padding: 24px 18px;
  }

  .linea-services strong {
    font-size: 22px;
  }
}

@media (max-width: 480px) {

  .tv-title {
    font-size: 27px;
  }

  .tv-text {
    font-size: 22px;
  }

  .tv-number {
    font-size: 52px;
  }

  .tv-icons .col-6 {
    margin-bottom: 18px;
  }

  .tv-note {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

/* =========================
   CANAL RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .canal-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .canal-personal {
    width: 400px;
    max-width: 100%;
    margin: 0 auto -5px;
  }

  .logo-canal {
    width: 125px;
    margin: 0 auto;
  }

  .canal-title {
    text-align: center;
  }

  .canal-title h2 {
    font-size: 26px;
    line-height: 1;
  }

  .canal-title span {
    font-size: 48px;
  }

  .canal-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
  }

  .btn-canal {
    width: 220px;
    padding: 10px 20px;
    font-size: 14px;
  }
}


@media (max-width: 380px) {

  .canal-personal {
    width: 285px;
  }

  .logo-canal {
    width: 115px;
  }

  .canal-title h2 {
    font-size: 24px;
  }

  .canal-title span {
    font-size: 44px;
  }

  .btn-canal {
    width: 205px;
  }
}


/* =========================
   PELICULAS RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .peli-section {
    padding: 50px 15px 45px;
    background-position: center;
  }

  .peli-logo {
    max-width: 280px;
    width: 100%;
  }

  .peli-canales {
    max-width: 300px;
    width: 100%;
  }

  .peli-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .team-carousel,
  .carousel-container {
    height: 330px;
  }

  .member img {
    width: 220px;
    max-height: 300px;
  }

  .member.left {
    left: 12%;
    transform: translate(-50%, -50%) scale(.65);
    opacity: .35;
  }

  .member.right {
    left: 88%;
    transform: translate(-50%, -50%) scale(.65);
    opacity: .35;
  }

  .member.active {
    transform: translate(-50%, -50%) scale(.95);
  }
}


/* =========================
   FOOTER RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .footer-section {
    padding: 45px 18px 0;
    text-align: center;
  }

  .footer-logo {
    width: 145px;
    margin: 0 auto 18px;
    display: block;
  }

  .footer-social {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-phone-img {
    width: 180px;
    margin-bottom: 30px;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .footer-col h4 {
    margin-bottom: 12px;
  }

  .footer-col ul {
    margin-bottom: 0;
  }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  .playstore {
    width: 145px;
  }

  .qr {
    width: 130px;
  }

  .scroll-top {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    justify-content: center;
    margin: 15px 0 25px;
  }

  .footer-bottom {
    margin-left: -18px;
    margin-right: -18px;
    margin-top: 20px;
    padding: 14px 18px;
    font-size: 12px;
    line-height: 1.4;
  }
}


/* =========================
   EXTRA CELULARES PEQUEÑOS
   ========================= */

@media (max-width: 380px) {

  .canal-title h2 {
    font-size: 27px;
  }

  .canal-title span {
    font-size: 50px;
  }

  .logo-canal {
    width: 145px;
  }

  .btn-canal {
    width: 210px;
  }

  .peli-logo {
    max-width: 240px;
  }

  .peli-canales {
    max-width: 260px;
  }

  .member img {
    width: 200px;
  }

  .footer-phone-img {
    width: 165px;
  }

  .copyright {
    font-size: 11px;
  }
}