/* mini-bootstrap utilities merged into main stylesheet */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

:root {
  --bs-white: #fff;
  --bs-black: #000;
  --bs-dark: #212529;
  --bs-success: #198754;
  --bs-warning: #ffc107;
  --bs-secondary: #6c757d;
  --bs-secondary-subtle: rgba(108, 117, 125, 0.35);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 0.75rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y, 0));
  margin-inline: calc(-0.5 * var(--gutter-x, 1.5rem));
  flex-direction: row-reverse;
}

.row > * {
  width: 100%;
  padding-top: var(--gutter-y, 0);
  padding-inline: calc(0.5 * var(--gutter-x, 1.5rem));
}

.g-3 { --gutter-x: 1rem; --gutter-y: 1rem; }
.g-4 { --gutter-x: 1.5rem; --gutter-y: 1.5rem; }

.col-md-3, .col-md-6, .col-lg-3, .col-lg-6 { flex: 0 0 auto; }

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-6 { width: 50%; }
  .text-md-start { text-align: left !important; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-6 { width: 50%; }
  .g-lg-5 { --gutter-x: 3rem; --gutter-y: 3rem; }
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
  .align-items-lg-center { align-items: center !important; }
  .mt-lg-0 { margin-top: 0 !important; }
}

.order-1 { order: 1; }
.order-2 { order: 2; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }
.justify-content-center { justify-content: center; }
.ms-auto { margin-left: auto; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }

.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pb-0 { padding-bottom: 0 !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }

.text-center { text-align: center; }
.text-white { color: var(--bs-white) !important; }
.text-white-50 { color: rgba(255, 255, 255, .5) !important; }
.text-light { color: #f8f9fa !important; }
.text-secondary { color: var(--bs-secondary) !important; }
.opacity-75 { opacity: .75 !important; }
.small { font-size: .875rem; }

.bg-dark { background-color: var(--bs-dark); }
.bg-black { background-color: var(--bs-black); }
.border-bottom { border-bottom: 1px solid; }
.border-secondary-subtle { border-color: var(--bs-secondary-subtle); }

.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.display-5 { font-size: clamp(2.2rem, 6vw, 3rem); line-height: 1.1; }
.h6 { font-size: 1rem; margin: 0 0 .5rem; }

.rounded-pill { border-radius: 999px; }
.sticky-top { position: sticky; top: 0; z-index: 1020; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: .5rem;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
}

.btn-success { background-color: var(--bs-success); color: #fff; padding: 5px 15px;}
.btn-warning { background-color: var(--bs-warning); color: #1f1f1f; }

.form-control,
.form-check-input,
button,
input {
  font: inherit;
}

.form-control {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: .375rem;
  padding: .5rem .75rem;
}

.form-control-lg { padding: .75rem 1rem; font-size: 1.1rem; }
.form-check { display: flex; align-items: flex-start; gap: .5rem; text-align: left;}
.form-check-input { margin-top: .2rem; }

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.navbar-brand { display: inline-flex; align-items: center; text-decoration: none; }
.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  color: #fff;
}

.navbar-toggler-icon {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.navbar-toggler-icon::before { top: -6px; }
.navbar-toggler-icon::after { top: 6px; }

.collapse { display: none; width: 100%; }
.collapse.show { display: block; }
.navbar-collapse { margin-top: .5rem; }

.navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-toggler { display: none; }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    width: auto;
    margin-top: 0;
  }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
}

:root {
  --nl-dark: #0c0c0c;
  --nl-orange: #ee7431;
  --nl-orange-soft: #f78713;
  --nl-secondary: #f2d238;
  --nl-blue: #ee7431;
  --nl-blue-deep: #c55e24;
  --nl-blue-soft: #f78713;
  --nl-ice: #fff3e8;
  --nl-hero-overlay: rgba(0, 0, 0, 0.58);
}

@font-face{
  font-family: "ITCAvantGardeStd-DemiObl-bold";
  src:  url("../fonts/itc-avant-garde-std-bold.woff2") format("woff2"),
        url("../fonts/itc-avant-garde-std-bold.ttf") format("ttf"),
        url("../fonts/itc-avant-garde-std-bold.otf") format("otf"),
        2url("../fonts/itc-avant-garde-std-bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html, body, *{
  font-family: "ITCAvantGardeStd-DemiObl-bold" !important;
}

body {
  background: #f8f9fa;
}

.brand-logo {
  width: 275px;
  max-width: 38vw;
  height: auto;
}

.hero-section {
    position: relative;
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../imgs/background.webp) center / cover no-repeat;
    isolation: isolate;
}

.hero-copy-col {
  position: relative;
  isolation: isolate;
  text-align: center;
}

.personajes{
  width: auto;
  margin-bottom: -20%;
}

.hero-copy-col > * {
  position: relative;
  z-index: 1;
}

.hero-wa-form {
    background: #000000;
    border: 1px solid rgb(252 162 2);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 95%;
    max-width: 520px;
    margin: 0 auto;
}

.hero-plan-current {
    justify-self: anchor-center;
}

.old {
  position: relative;
  display: inline-block;
}

.old::before,
.old::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: 50%;
  height: 5px;
  background: darkred;
  transform-origin: center;
}

.old::before {
  transform: rotate(20deg);
}

.old::after {
  transform: rotate(-20deg);
}

.planCard__split {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 140, 0, .30), rgba(255, 140, 0, .12));
  border: 1px solid rgba(255, 200, 120, .35);
}

.pill__label {
  font-weight: 800;
  font-size: 12px;
  opacity: .95;
  line-height: 1.05;
}

.pill__value {
  font-weight: 900;
  color: var(--accent-2);
}


.form-label-cta{
  color: var(--nl-orange-soft);
  font-size: 2.4rem;
  font-weight: 900;
}

.hero-wa-form .form-label,
.hero-wa-form .form-check-label {
  color: #f8fbff;
}

.hero-wa-form .form-control {
  border-radius: 999px;
  border: 2px solid var(--nl-secondary);
  background: #ffffff;
  color: #1f2937;
}

.hero-wa-form .form-control::placeholder {
  color: #6b7280;
}

.hero-wa-form .form-control:focus {
  border-color: var(--nl-secondary);
  box-shadow: 0 0 0 0.25rem rgba(242, 210, 56, 0.25);
}
.msgCopy {
    text-align: right;
    max-width: 80%;
}
h1.display-5.fw-bold.mb-3 {
    font-size: 2rem;
}

span.wifi {
    height: 200px;
    width: auto;
    display: flex;
    position: absolute;
    top: 50dvh;
    right: 10dvw;
}



span.wifi1 {
    height: 200px;
    width: auto;
    display: flex;
    position: absolute;
    top: 10dvh;
    left: 10dvw;
}

span.wifi2 {
    height: 200px;
    width: auto;
    display: flex;
    position: absolute;
    top: 130dvh;
    right: 6dvw;
}

span.wifi3 {
    height: 200px;
    width: auto;
    display: flex;
    position: absolute;
    top: 150dvh;
    left: 6dvw;
}

span.wifi,
span.wifi1,
span.wifi2,
span.wifi3 {
    z-index: -1;
    pointer-events: none;
}

span.bagTxt {
    
    display: inline-block;
    padding: 0 0.75rem;
    border-radius: 30px;
}


.hero-wa-form .form-check-input:checked {
  background-color: var(--nl-secondary);
  border-color: var(--nl-secondary);
}

.hero-wa-submit {
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
}



.hero-plan-card {
  background: linear-gradient(145deg, #050505, #0f0f0f 55%, #141414);
  border: 2px solid #fc7a2b;
  border-radius: 1.4rem;
  padding: 0.9rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.hero-plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.hero-plan-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  letter-spacing: 0.04em;
}

.hero-plan-kicker {
  margin: 0;
  color: #fc7a2b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.hero-plan-legacy {
  margin-bottom: 0.65rem;
}

.hero-plan-legacy-speed,
.hero-plan-current-speed {
  margin: 0 0 0.5rem;
  text-align: center;
  color: #fc7a2b;
  line-height: 0.9;
}

.hero-plan-legacy-speed strong,
.hero-plan-current-speed strong {
  font-size: 5.4rem;
  font-weight: 900;
}

.hero-plan-current-speed {
  margin: 0 0 0.45rem;
  color: #f2d238;
  padding: 20px;
}

.hero-plan-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.45rem;
  margin-bottom: 0.65rem;
  padding: 0px 25px;
}

.hero-plan-specs-old {
  opacity: 0.78;
}

.hero-plan-spec {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.55rem;
  padding: 0.4rem 0.45rem;
  min-height: 48px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero-plan-spec span {
  display: block;
  color: #ffffff;
  font-size: 0.56rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}

.hero-plan-spec strong {
  display: block;
  margin-top: 0.12rem;
  color: #f2d238;
  font-size: 0.86rem;
  line-height: 1;
}

img.imgCards {
  width: 100%;
  border-radius: 20px;
  margin: 20px 0px;
}

.priceCard {
  display: flex;

  justify-content: center;
  align-items: center;
}

.hero-plan-price.cent {
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.crossed {
  position: relative;
}

.crossed::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: #d51515;
  transform: rotate(-20deg);
  transform-origin: center;
}

.hero-plan-current .hero-plan-spec strong {
  color: #f2d238;
}

.hero-plan-current+.hero-plan-specs .hero-plan-spec {
  background: rgba(252, 122, 43, 0.16);
  border: 1px solid rgba(252, 122, 43, 0.34);
}

.hero-plan-price-wrap {
  margin: 0.7rem 0 0.55rem;
  text-align: center;
}

.hero-plan-label {
  margin: 0 0 0.28rem;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.hero-plan-price {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
}

.hero-plan-price-note {
  margin: 0.25rem 0 0;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero-plan-old-price {
  color: #ffffff;
  opacity: 0.7;
  text-decoration: line-through;
  margin-right: 0.35rem;
}

.hero-plan-price-small {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
}

.hero-plan-services {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.35rem;
  justify-items: stretch;
}

.hero-plan-servicesB {
    margin-top: 0.55rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    gap: 0.35rem;
    align-items: center;
}

.hero-plan-servicesA{
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: 1fr;
      justify-items: center;
  gap: 0.35rem;
}

.hero-plan-servicesB span,
.hero-plan-servicesA span {
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.62rem;
  text-align: center;
  font-weight: 700;
  padding: 0.32rem 0.3rem;
}

.hero-plan-services span {
    border-radius: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.62rem;
    text-align: center;
    font-weight: 700;
    padding: 0.32rem 0.3rem;
    display: flex;
    justify-content: center;
}

.hero-plan-services span img,
.hero-plan-servicesA span img{
  height: 30px;
}

.terms-strip {
  background: #0c0c0c;
  color: #f1f1f1;
  font-size: 0.77rem;
  line-height: 1.45;
  padding: 0.9rem 0;
  z-index: 90000 !important;
    position: relative;
}

.plans-section,
.benefits-section {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("../imgs/back\ planes.webp") center/cover no-repeat;
}

.plans-section {
  isolation: isolate;
}

.plan-card {
  background: linear-gradient(160deg, #646463 0%, #000000 45%, #000000 100%);
  border: 2px solid rgba(252, 122, 43, 0.72);
  border-radius: 1.3rem;
  padding: 1.2rem;
  height: 100%;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.plan-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: #ffe7d1;
  color: var(--nl-orange);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.plan-card-head small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.plan-card h3 {
  color: #ffffff;
  font-size: 2.1rem;
  margin: 0;
  line-height: 1;
}

.plan-card h3 strong {
  color: #fc7a2b;
  font-size: 3.4rem;
  line-height: 0.9;
}

.plan-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 600;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0;
  display: grid;
  gap: 0.6rem;
}

.plan-features li {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(252, 122, 43, 0.32);
  color: #ffffff;
  border-radius: 0.65rem;
  padding: 0.7rem 0.85rem;
  font-weight: 600;
}

.plan-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plan-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(252, 122, 43, 0.38);
  color: #ffffff;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-price {
  margin: auto 0 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
}

.plan-price span {
  font-size: 1.1rem;
  color: #fc7a2b;
  font-weight: 600;
}

.plan-btn {
  width: 100%;
  border-radius: 0.9rem;
  background: #fc7a2b;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.plan-btn:hover {
  background: #f78713;
  color: #fff;
}

.plan-card-featured {
  background: linear-gradient(160deg, #6d6d6c 0%, #2f2f2e 45%, #000000 100%);
  color: #fff;
  border: 3px solid var(--nl-secondary);
  position: relative;
}

.plan-card-featured .plan-chip {
  background: var(--nl-secondary);
  color: #221d11;
}

.plan-card-featured .plan-card-head small,
.plan-card-featured .plan-sub {
  color: rgba(255, 255, 255, 0.84);
}

.plan-card-featured h3,
.plan-card-featured .plan-price {
  color: #fff;
}

.plan-card-featured .plan-price span {
  color: var(--nl-secondary);
}

.plan-card-featured .plan-features li {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(242, 210, 56, 0.35);
}

.plan-card-featured .plan-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(242, 210, 56, 0.35);
}

.plan-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff7ef;
  color: var(--nl-orange);
  border: 1px solid #f1c7ab;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.32rem 1.2rem;
}

.plan-btn-featured {
  background: var(--nl-orange);
}

.plan-btn-featured:hover {
  background: var(--nl-orange-soft);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.9rem;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}

.benefit-card img {
  width: 72px;
  height: auto;
}

.benefit-card .mb-0 {
    color: #000000;
}

.footer-link {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--nl-orange);
}

.whatsapp-float {
  position: fixed;
  right: 0rem;
  bottom: 0rem;
  z-index: 1030;
  display: inline-flex;
  
}

.whatsapp-float img {
  width: 40dvh;
  height: auto;
}

#app-content {
  min-height: 60vh;
}



@media (max-width:1700px) {
    
    span.wifi1 {
    height: 125px;
    }
    
    span.wifi {
    height: 150px;
    right: 6dvw;
    }
    
    
    span.wifi3 {
    height: 150px;
    top: 171dvh;
    left: 4dvw;
    }
    
    span.wifi2 {
    height: 150px;
    top: 201dvh;
    right: 4dvw;
    }
    
    
}

@media (max-width:1500px) {

span.wifi3 {
    height: 140px;
    top: 200dvh;
    left: 0dvw;
}

span.wifi2 {
    height: 150px;
    top: 256dvh;
    right: -5dvw;
}
span.wifi1 {
    height: 125px;
    top: 5dvh;
}

span.wifi {
    height: 150px;
    /* right: 6dvw; */
    right: -2dvw;
}

}

@media (max-width: 575.98px) {
  .hero-wa-form {
    width: 100%;
  }
  
  
 .bagTxt {
    left: 20dvw;
    position: relative;
}
  
 .wifi,
 .wifi1,
 .wifi2,
 .wifi3{
      display:none !important;
  }

  .hero-plan-card {
    max-width: 100%;
  }

  .hero-plan-current-speed strong,
  .hero-plan-legacy-speed strong {
    font-size: 4.5rem;
  }

  .hero-plan-spec strong {
    font-size: 0.76rem;
  }

  .hero-plan-services span {
    font-size: 0.58rem;
  }

  .hero-copy-col::before {
    inset: 0;
    background-size: contain;
    background-position: center top;
    opacity: 0.35;
  }

  .plan-card h3 {
    font-size: 1.6rem;
  }

  .plan-card h3 strong {
    font-size: 2.8rem;
  }

  .plan-price {
    font-size: 1.7rem;
  }

  .whatsapp-float img {
    width: 243px;
  }
}

img.btnWp {
    width: 50%;
}
