/* ==================================================
   FORMULARIO (OVERLAY)
   ==================================================*/

/* === CONTENEDOR PRINCIPAL === */
.form-overlay {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  text-align: left;
  min-height: 13rem;
  position: relative;
  overflow: hidden;
}

/* === IMAGEN === */
.overlay-img {
  position: absolute;
  bottom: 0;
  left: -1rem;
  width: 18rem;
  height: auto;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

/* === TEXTO === */
.overlay-text {
  margin-left: calc(12rem + 1rem);
  line-height: 1.3;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  z-index: 2;
}

/* ==================================================
   RESPONSIVE
   ==================================================*/

@media (max-width: 1000px) {
  .form-overlay {
    position: static;
    transform: none;
    margin: 1rem auto;
    width: auto;
    max-width: 95%;
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-height: 12rem;
  }

  .overlay-img {
  width: 15rem;
}

  .overlay-text {
    margin-left: calc(8rem + 0.5rem);
    font-size: .9rem;
  }
}

/* ==================================================
   DARK MODE
   ==================================================*/

@media (prefers-color-scheme: dark) {
  .form-overlay {
    background-color: #222222e7;
    color: var(--nl-light, #2f2727);
  }
}


/* === BASE === */

.br-mobile {
  display: none;
}

@media (max-width: 768px) {
  .br-mobile {
    display: inline;
  }
}

.br-desktop {
  display: none;
}

@media (min-width: 768px) {
  .br-desktop {
    display: inline;
  }
}


html, body {
  overflow-x: hidden;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-container-mobile {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.arcon-rounded {
  font-family: "Arcon Rounded", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}

.avant-bold {
  font-family: "Avant Bold", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-display: fallback;
}

.montserrat-normal {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

.montserrat-semi-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}

.roboto-condensed-normal {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

.roboto-condensed-semi-bold {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

.roboto-condensed-bold {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}

/* inter-latin-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
}

/* inter-latin-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-italic.woff2) format('woff2-variations');
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--nl-page-bg-current);
  color: var(--nl-page-fg-current);
}

html {
  margin: 0;
  padding: 0;
  background-color: var(--nl-page-bg-current);
  font-size: 16px;
  color: var(--nl-page-fg-current);
}

.sticky-button {
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  z-index: 999;
  display: inline-block;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Dots normales */
.swiper-pagination-bullet {
  background-color: var(--nl-orange) !important;
  opacity: 0.6;
}

/* Dot activo */
.swiper-pagination-bullet-active {
  background-color: var(--nl-orange) !important;
  opacity: 1;
}


.sticky-button.show {
  opacity: 1;
  pointer-events: auto;
}

.sticky-button img {
  display: block;
  width: 18rem; 
  height: auto;
}

a {
  text-decoration: none;
  color: var(--nl-text-light);
}

.icon-left {
  width: 3rem !important;
  height: auto;
  vertical-align: middle;
}


#wifi6 #wifi6 .nl-benefits {
  max-width: 62.5rem;
  margin: 1.25rem auto 0;
}

.nl-benefit h2 {
  color: var(--nl-orange)!important;
  font-size: 2rem;
}


#wifi6 .nl-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

#wifi6 .nl-image img { 
  width: 50rem; 
  height: auto;
}

#wifi6 .nl-benefits { 
  display: flex; 
  flex-direction: column; 
  gap: 1rem;
}

@media (max-width: 1300px) {
  #wifi6 .nl-layout { 
    flex-direction: column; 
    text-align: center; 
  }
  #wifi6 .nl-image img { 
    max-width: 300px; 
    margin: 0 auto; 
  }
}

#servicios .nl-section-cta .nl-section-cta .nl-text-orange {
  color: var(--nl-orange)!important;
}

#servicios .nl-benefits { 
  display: flex; 
  flex-direction: column; 
  gap: 1rem;
  text-align: center;
  padding: 1rem 0rem;
}

#servicios .nl-benefit {
  max-height: 5rem;
  height: 100%;
  border-radius: 0rem 1rem 0rem 1rem;

}

#servicios .servicios-fila {
  display: flex;
  flex-direction: row;
  margin: auto;
  gap: .5rem;
}

@media (max-width: 1300px) {
  #servicios .nl-layout { 
    flex-direction: column; 
    text-align: center; 
  }
  #servicios .nl-image img { 
    max-width: 300px; 
    margin: 0 auto; 
  }
}

:root {
  --nl-cta-bg-dark: #1b1b1b;
  --nl-content-max: 68.75rem;
  --nl-green: #28a745;
  --nl-surface-light: #f5f5f5;
  --nl-black: #000000;
  --nl-page-bg-dark: #0e0e0e;
  --nl-page-fg-dark: #e5e5e5;
  --nl-page-bg: #ffffff;
  --nl-page-fg: #111111;
  --nl-orange: #F6970F;
  --nl-orange-dark: #F46B12;
  --nl-dark: #0e0e0e;
  --nl-light: #f7f7f7;
  --nl-muted: #141414;
  --nl-maxw: 75rem;
  --nl-text-dark: #111111;
  --nl-text-light: #eeeeee;
  --nl-bg-light: #ffffff;
  --nl-bg-dark: #111111;
  --nl-cta-bg-light: #dfdfdf;
  --nl-page-bg-current: var(--nl-page-bg);
  --nl-page-fg-current: var(--nl-page-fg);
  --rem-base-w: calc(100vw / 120);
  --rem-base-h: calc(100vh / 67.5);
  --rem-base: min(var(--rem-base-w), var(--rem-base-h));
}

#elige-netlife {
  padding: 0rem;
}


.btn, .btn-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  width: 100%;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  color: white;
  cursor: pointer;
  height: 100%;
}

.btn-verde {
  background-color: #2db942;
}
.btn-naranja {
  background-color: var(--nl-orange);
}

[class*="btn"]:hover, .nl-cta-action:hover, .nl-benefit:hover {
    transform: scale(1.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.titulo-y-botones {
  font-size: 1.3rem;
  text-align: center;
  color: var(--nl-bg-dark);
}

.titulo-y-botones h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: bold;
}

.titulo-y-botones p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.botones {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.card-titulo {
  width: 100%;
  text-align: center;
}

.card-titulo h3 {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--nl-dark);
}

/* === HEADER === */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
}

.header .logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1.25rem;
  margin: 0px 3.125rem;
  gap: 0.5rem;
}

.header .logo {
  width: 12.5rem;
  height: auto;
}

.header .logo-text {
  margin: 0;
  font-size: 1.125rem;
  color: white;
  white-space: nowrap;
  text-align: center;
}

.header .buttons-container, .buttons-container-desktop, .buttons-container-mobile {
  display: flex;
  gap: 1.25rem;
  background-color: black;
  padding: 1rem;
}

.buttons-container-desktop {
    margin: 0px 3.125rem;
}

.btn-negro, .tippy-box[data-theme~='netlife'] {
  border: 2px solid white;
  background-color: var(--nl-text-dark);
  font-family: "Avant Bold";
  text-align: center;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .header .logo-container {
    flex-direction: column;
  }
  .header .logo-text {
    margin-top: 0.3125rem;
  }
}


/* === BANNER === */

.banner-desktop {
  position: relative;
  padding-bottom: 1rem;
}

.banner-mobile {
  position: relative;
}

.banner-desktop .form-overlay {
  position: absolute;
  top: 38%;
  right: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(-50%);
  max-width: 30%;
  max-height: 70%;
}

.banner-swiper {
  display: block;
}

.banner-swiper-mobile {
  display: none;
}


/* === MARQUEE === */

.marquee {
  overflow: hidden;
  width: 100%;
  padding: 0.375rem 1rem;
  background: var(--nl-bg-light);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 1.2rem;
  color: var(--nl-dark);
  box-sizing: border-box;
}

.marquee__inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  --duration: 15s;
  animation: marquee-linear var(--duration) linear infinite;
}

.marquee__text {
  display: inline-block;
  padding-right: 3rem;
  line-height: 1.4;
}

.marquee__text a {
  text-decoration: underline;
  color: var(--nl-dark);
  text-decoration-thickness: 1px;
}

.marquee:hover .marquee__inner {
  animation-play-state: paused;
}

.marquee:focus-within .marquee__inner {
  animation-play-state: paused;
}

/* === BENEFICIOS === */

.beneficios-container {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  gap: 2rem;
  box-sizing: border-box;
}

.beneficio-item {
  flex: 1 1 23%;
  text-align: center;
  box-sizing: border-box;
}

.beneficio-item img {
  width: 100%;
  max-width: 7rem;
  height: auto;
  padding-bottom: 1rem;
}

/* === SERVICIOS === */

.card-face .servicios {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 1rem;
}

.card-face .servicios img {
  width: 8rem;
  padding: 0 0.5rem;
}

.swiper-slide .servicio-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 25rem;
  overflow: hidden;
  padding: 0;
}

.swiper-slide .servicio-imagen-small {
  width: 13rem;
  margin-bottom: 2rem;
}

.swiper-slide .servicio-imagen-medium {
  margin-bottom: 2rem;
}

.contenedor-servicios {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.servicios-swiper {
  width: 100%;
  max-width: 70rem;
  height: auto;
}

.servicio-item {
  display: inline-block;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.servicio-item:hover {
  transform: scale(1.05);
}

.servicio-imagen {
  display: block;
  width: 100%;
  max-width: 20rem;
  height: auto;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

/* === FOOTER === */

.nl-footer {
  padding: 0.9375rem 1.25rem;
  background: #000;
  font-size: 0.875rem;
  color: #fff;
}

.nl-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 75rem;
  margin: 0 auto;
}

.nl-footer-logo {
  height: 2.5rem;
  max-width: 11.25rem;
}

.nl-footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}

.nl-footer-right a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

.nl-footer-right a:hover {
  text-decoration: underline;
}

/* === UTILS === */

.nl-title {
  margin: 0 0 .5rem 0;
  line-height: 1.2;
  color: var(--nl-dark);
}

.nl-title--orange {
  color: var(--nl-orange)!important;
}

.nl-subtitle {
  margin: -2rem 0 1rem 0;
  font-size: 2.5rem;
}

.nl-text {
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
}

.nl-benefits {
  display: grid;
  grid-template-columns: repeat(1,minmax(0,1fr));
  gap: 1rem;
}

.nl-benefit strong {
  display: block;
  margin-bottom: .25rem;
}

.nl-grid {
  display: grid;
  grid-template-columns: repeat(1,minmax(0,1fr));
  margin-top: 1rem;
  gap: 1rem;
}

.nl-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  min-height: 13rem;
  border-radius: 1rem;
  background: var(--nl-cta-bg-light);
  color: var(--nl-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  margin-bottom: 3rem;
  font-size: 1.4rem;
}

.nl-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nl-card img {
  width: 10rem;
  filter: drop-shadow(1px 1px 1px #222);
  align-self: center;
}

.nl-card-text {
  margin: 0;
}

/* ============================= */
/* CTA BANNER */
/* ============================= */

.nl-cta-banner {
  position: relative;
  overflow: hidden;
}

/* Franja naranja */
.nl-cta-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15rem;
  background: var(--nl-orange-dark);
  z-index: 0;
}

/* Layout */
.nl-cta-grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  position: relative;
  max-height: 23rem;
  z-index: 2;
}

/* Imagen */
.nl-cta-figure {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}

.nl-cta-img {
  width: 24rem;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Texto */
.nl-cta-copy {
  flex: 1 1 auto;
  max-width: 25rem;
  padding-bottom: .5rem;
  color: #fff;
  text-align: center;
}

.nl-cta-label {
  font-size: 2.8rem;
  margin-bottom: 0.4rem;
}

.nl-cta-phone {
  font-size: 3.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.nl-cta-sub {
  font-size: 1.5rem;
  margin-top: 0.75rem;
  letter-spacing: 0.06rem;
}


.nl-benefit {
  font-size: 1.2rem;
}

.nl-benefit h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  line-height: 1.2;
}

.nl-benefit p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.35;
}

.nl-heading-block .nl-stitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nl-section {
    padding-top: 2rem;
}

.nl-section-header h1 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nl-section-header h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nl-section-header p {
  margin: 0rem 0rem 1em;
  font-size: 2rem;
}

.nl-section-header .nl-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nl-container {
  max-width: 103.125rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.nl-section-wrap {
  padding-left: 2rem;
  padding-right: 2rem;
}

.nl-section-header {
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  text-align: center;
  row-gap: .75rem;
}

.nl-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nl-text-center {
  text-align: center !important;
}

.nl-stitle {
  margin: 0;
  max-width: 60ch;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-align: center;
}

.nl-benefit {
  padding: 0.9rem!important;
  background: var(--nl-cta-bg-light)!important;
  color: var(--nl-dark);
}
.nl-section-cta {
  position: relative;
  padding: 2rem;
  color: #111;
  overflow: hidden;
  background: linear-gradient(135deg, #fdfdfd, #e6ecf5);
}

/* Capa de partículas (grandes) */
.nl-section-cta::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background-image: radial-gradient(rgba(0,0,0,0.12) 2px, transparent 2px);
  background-size: 35px 35px;
  animation: particlesFast 20s linear infinite;
  z-index: 1;
}

/* Capa de partículas (finas, para dar profundidad) */
.nl-section-cta::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: particlesFaster 35s linear infinite;
  z-index: 1;
  opacity: 0.6;
}

@keyframes particlesFast {
  from { transform: translate(0,0); }
  to   { transform: translate(150px, 150px); }
}

@keyframes particlesFaster {
  from { transform: translate(0,0); }
  to   { transform: translate(-180px, -180px); }
}

/* Contenido encima de todo */
.nl-section-cta > * {
  position: relative;
  z-index: 2;
}

/* Capa principal de partículas */
.nl-section-cta::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background-image: radial-gradient(rgba(0,0,0,0.12) 2px, transparent 2px);
  background-size: 35px 35px;
  animation: particlesFast 20s linear infinite;
  z-index: 1;
}

/* Segunda capa (profundidad distinta) */
.nl-section-cta::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: particlesFaster 40s linear infinite;
  z-index: 1;
  opacity: 0.6;
}

@keyframes particlesFast {
  from { transform: translate(0,0); }
  to   { transform: translate(150px, 150px); }
}

@keyframes particlesFaster {
  from { transform: translate(0,0); }
  to   { transform: translate(-200px, -200px); }
}

/* Contenido encima */
.nl-section-cta > * {
  position: relative;
  z-index: 2;
}

/* === Modo oscuro === */
@media (prefers-color-scheme: dark) {
  .nl-section-cta {
    background: #0d0d0d;
    color: #fff;
  }
  .nl-section-cta::before {
    background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
  }
  .nl-section-cta::after {
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  }
}


.nl-btn--cta {
  box-shadow: 0 0.375rem 1rem rgba(0,0,0,.15);
  white-space: nowrap;
}

.nl-btn {
  display: inline-block;
  padding: 1rem 1.35rem;
  border-radius: 624.9375rem;
  border: 0;
  background-color: var(--nl-orange)!important;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  color: #fff!important;
  font-size: 1.5rem;
}

.nl-section + .nl-section {
  margin-top: 1.5rem;
}

.nl-text-pequeño {
  font-size: 1.5rem;
}

.nl-section-cta .nl-cta-grid {
  display: flex !important;
  flex-direction: row;
  align-items: center !important;
  padding-bottom: 0;
  gap: 1rem;
}

.nl-section-cta .nl-cta-figure {
  display: flex !important;
  align-items: flex-end !important;
  position: static !important;
  bottom: 0;
  right: 0;
  margin: 0 0.75rem;
}

.nl-section-cta .nl-cta-img {
  display: block;
  align-self: flex-end;
}

.nl-text-half {
  width: 80%;
}

/* === MEDIA QUERIES === */

@media (max-width:30rem) {
  .beneficio-item img {
    max-width: 8rem;
  }

  .titulo-y-botones h2 {
    font-size: 1.8rem;
  }

  .titulo-y-botones p {
    font-size: 1rem;
  }

  .planes-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 1.8rem !important;
  }
  .sticky-button {
  bottom: 1rem;
  right: .5rem;
}
.nl-benefit {
  font-size: .9rem;
}

.sticky-button img {
  bottom: 1rem;
  right: .5rem;
  width: 10rem;
}
}

@media (max-width:31.25rem) {
  .btn {
    font-size: 1.2rem;
  }
  .btn-form {
    font-size: .7rem;
  }
}

@media (max-width:37.5rem) {
  .beneficios-container {
    flex-direction: column;
    align-items: center;
  }

  .beneficio-item {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }

  .beneficio-item img {
    max-width: 10rem;
  }

  .nl-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .nl-section-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nl-stitle {
    font-size: 1.05rem;
  }

  .nl-benefit {
    padding: 0.8rem!important;
  }

  .nl-benefit h3 {
    font-size: .95rem;
  }

  .nl-benefit p {
    font-size: .9rem;
  }

  .nl-text-pequeño {
    font-size: .9rem;
  }

  .nl-section-header p {
    font-size: 1.2rem;
  }

  .nl-subtitle {
    margin: -1rem 0 1rem 0;
    font-size: 1.2rem;
  }

  .nl-text {
    padding: 0rem 1rem 0rem;
    font-size: 1.2rem;
  }

  .titulo-y-botones h2 {
    font-size: 2rem;
  }

  .titulo-y-botones p {
    font-size: 1.1rem;
  }

  .botones {
    gap: 1rem;
  }

  .planes-btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 1.2rem !important;
  }

  .servicio-imagen {
    max-width: 15rem;
  }
}

@media (max-width:48rem) {
  .nl-footer-container {
    flex-direction: column;
    text-align: center;
    gap: 0.625rem;
  }

  .nl-footer-right {
    justify-content: center;
  }
}

@media (max-width:60.25rem) {
  .form-mobile {
    margin: 1rem;
    justify-content: center;
  }

  .beneficios-container {
    justify-content: space-between;
  }

  .beneficio-item {
    flex: 1 1 30%;
  }

  .beneficio-item img {
    max-width: 12rem;
  }

  .icon-left {
    width: 2.5rem !important;
    height: auto;
  }

  .nl-stitle {
    font-size: 1.2rem;
  }

  .nl-benefit {
    padding: 0.85rem!important;
  }

  .nl-benefit h3 {
    font-size: .98rem;
  }

  .nl-benefit p {
    font-size: .92rem;
  }

  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header .logo {
    width: 12.5rem;
  }

  .header .logo-container {
    margin: 1.25rem 0rem 0rem;
    padding: 0rem;
  }

  .header .logo-text {
    font-size: 1.2rem;
  }

  .header .buttons-container {
    margin: 1.25rem 0;
    gap: 0.625rem;
  }

  .banner-desktop {
    display: none;
  }

  .swiper-slide {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .servicio-imagen {
    max-width: 15rem;
  }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablets */
@media (max-width: 64rem) { /* 1024px */
  .nl-cta-grid {
    min-height: 18rem;
    gap: 1.5rem;
  }

  .nl-cta-banner::after {
    height: 12rem;
  }

  .nl-cta-img {
    width: 20rem;
  }

  .nl-cta-copy {
    padding-bottom: 2rem;
  }

  .nl-cta-phone {
    font-size: 2.5rem;
    white-space: nowrap;
  }

  .nl-cta-label {
    font-size: 1rem;
  }

  .nl-cta-sub {
    font-size: 0.9rem;
  }
}

/* Móviles */
@media (max-width: 40rem) { /* 640px */
  .nl-cta-grid {
    min-height: 10rem;
    gap: 1rem;
  }

  /* Fondo naranja más alto */
  .nl-cta-banner::after {
    height: 13rem;
  }

  /* Imagen más pequeña */
  .nl-cta-img {
    width: 10rem;
  }

  .nl-cta-copy {
    max-width: 18rem;
    padding-bottom: 2.2rem;
  }

  .nl-cta-phone {
    font-size: 1.6rem;
    white-space: nowrap;
    line-height: 1;
  }

  .nl-cta-label {
    font-size: 0.85rem;
  }

  .nl-cta-sub {
    font-size: 0.75rem;
  }
}



@media (prefers-reduced-motion:reduce) {
  .marquee__inner {
    animation: none;
  }
}

@media screen and (max-width:118.75rem) {
  .planes-container {
    padding: 4rem 6rem !important;
  }

  .titulo-y-botones {
    margin: 0 !important;
  }
}

@media screen and (max-width:81.25rem) {
  .planes-container {
    padding: 4rem 0rem !important;
  }
}

@media(max-width:37.5rem) {
  .nl-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nl-section + .nl-section {
    margin-top: 1rem;
  }
}

@media(max-width:56.25rem) {
  .nl-section {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .nl-section + .nl-section {
    margin-top: 1.2rem;
  }
}

@media(max-width:60rem) {
  .banner-swiper {
    display: none;
  }

  .banner-swiper-mobile {
    display: block;
  }

  .buttons-container-desktop {
    display: none !important;
  }
} 

@media(min-width:1000px) {
  .form-overlay iframe {
    height: 40rem !important;
    width: 40rem !important;
  }
}

@media(min-width:1280px) {
  html {
    font-size: calc(100vw/120);
  }
}

@media(min-width:60.1rem) {
  .banner-mobile {
    display: none!important;
  }
  .buttons-container-mobile {
    display: none !important;
  }
}

@media(min-width:64rem) {
  .nl-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  .nl-title {
    font-size: 2.5rem;
  }
}

@media(min-width:768px) and (max-width:1024px) {
  .banner-swiper-mobile .swiper-wrapper {
    display: flex!important;
  }

  .banner-swiper-mobile .swiper-slide {
    flex: 0 0 100%!important;
    width: 100%!important;
  }
}

@media(min-width:960px) and (max-width:1278px) {
  .banner-desktop .form-overlay {
    zoom: 70%;
  }
}

@media(min-width:1278px) and (max-width:1500px) {
  .banner-desktop .form-overlay {
    zoom:80% !important;
  }
}

@media(min-width:768px) and (max-width:1279.98px) {
  html {
    font-size: 18px;
  }
}

@media(min-width:80rem) {
  .nl-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .nl-benefits {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

/* === DARK MODE === */

.form-mobile {
    background-color: var(--nl-cta-bg-light);
  }

@media (prefers-color-scheme:dark) {
  html {
    margin: 0;
    padding: 0;
    background-color: var(--nl-page-bg-current);
    color: var(--nl-page-fg-current);
  }

  body {
    margin: 0;
    padding: 0;
    background-color: var(--nl-page-bg-current);
    color: var(--nl-page-fg-current);
  }

  .form-mobile {
    background-color: var(--nl-cta-bg-dark);
  }

  .nl-cta--dark {
    color: var(--nl-text-light);
  }

  a {
    color: var(--nl-text-light);
  }

  .nl-title {
    color: #eaeaea;
  }

  .nl-subtitle {
    color: #ddd;
  }

  .nl-card {
    background: #1e1e1e;
    color: var(--nl-surface-light);
  }

  .nl-card-text {
    color: #d8d8d8;
  }

  :root {
    --nl-page-bg-current: var(--nl-page-bg-dark);
    --nl-page-fg-current: var(--nl-page-fg-dark);
  }

  .titulo-y-botones {
    color: var(--nl-bg-light);
  }

  .card-titulo h3 {
    color: var(--nl-bg-light);
  }
}

@media(prefers-color-scheme:dark) {
  .nl-benefit {
    border-color: rgba(255,255,255,.08)!important;
    background: #202020!important;
    color: #d9d9d9!important;
  }

}

@font-face {
  font-family: "Avant Bold";
  src: url("assets/fonts/avant-bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arcon Rounded";
  src: url("assets/fonts/Arcon-Rounded.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@keyframes marquee-linear {
  from { transform: translateX(0);
}to {
  transform: translateX(-50%);
}}

@media screen and (max-width:72rem) {
.servicios-fila {
  flex-direction: column !important;
}}

/* === PLANES === */

.planes-home {
  display: flex;
  justify-content: center;
  align-items: center;
}

.planes-pro {
  justify-content: center;
  align-items: center;
  display: none;
}

.planes-pyme {
  justify-content: center;
  align-items: center;
  display: none;
}

.planes-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.planes-container a {
  color: white;
}

.planes-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #d9d9d9;
  font-weight: bold;
  font-size: 1.3rem;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.planes-btn.active {
  background-color: var(--nl-orange);
}
.banner-desktop .form-overlay {
  max-width: 24%;
}


.nl-numero {
  font-size: 4rem;
}

@media(max-width:60rem) {
  .nl-numero {
    font-size: 2rem;
  }
}

/* ==================================================
   Card Planes (solo estilos usados en la card actual)

/* ---------- Swiper ---------- */

.planes .swiper-slide {
  display: flex;
  justify-content: center;
}


@media screen and (max-width:25rem) {
  .planes .card {
    zoom: 95% !important;
  }
}

@media screen and (max-width:22rem) {
  .planes .card {
    zoom: 80% !important;
  }
}


/* ---------- Card base ---------- */

.planes .card {
  width: 23rem;
  min-height: 32rem;
  max-height: 50rem;
  background: #fff;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.planes .card:hover {
  transform: scale(1.02);
}

.planes .btn-naranja{
  background-color: var(--nl-orange-dark);
}

/* ---------- Descuento ---------- */

.card-descuento {
  color: var(--nl-orange-dark);
  border-radius: 1.5rem 1rem 0 0;
}

/* ---------- Contenedor interno ---------- */

.card-container {
  padding: 0rem .5rem 1.5rem;
  display: flex;
  flex-direction: column;
}

/* ---------- Precio ---------- */

.planes .card-precio {
  background: var(--nl-orange-dark);
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.5rem;
  margin: 0rem -.5rem 1rem;
  padding: 0.5rem;
}

.card-text .final, .card-text .medio {
  font-size: .8rem;
  line-height: .2rem;
}

.card-text .medio {
  font-size: 1rem;
}

/* ---------- Flex helper ---------- */

.s2s {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin: auto;
}

.s2s .promo {
  font-size: 1.4rem;
}

/* ---------- Beneficios ---------- */

.card-benefits {
  padding-top: 1rem;
}

.planes .card-benefit {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  margin: 0.1rem;
}

.planes .card-benefit h2 {
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}

/* ---------- Imágenes ---------- */

.planes .card-img {
  width: 12rem;
  margin: auto;
}

.planes .swiper-slide img {
  width: 65%;
  padding: 0.5rem 0;
}

/* ---------- Textos dentro de card ---------- */

.planes .card-text {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}

.planes .imp {
  font-size: 1.5rem;
}

.planes .final {
  font-size: 1rem;
}

.planes .card-text .precio, .planes .descuento {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin: 0rem .5rem 0rem;
}

.planes .descuento {
  font-size: 5rem;
  line-height: 2.5rem;
}

.planes .card-megas{
  background-color: var(--nl-black);
  font-size: 1rem;
  color: white;
  padding: 1rem;
  align-items: center;
}

.planes .card-megas h2 {
  margin: 0rem;
}

.planes .card-text .precio-decimales,
.planes .card-text .signo {
  font-size: 2.6rem;
  margin-top: 0.625rem;
}

.planes .card-text .signo {
  margin-right: 0.3125rem;
}

.card-text .sombra {
  text-shadow: .08rem .08rem .1rem #00000080;
}

.planes .card-text .facturas {
  font-size: 1.3rem;
  margin: 0rem;
  line-height: 1rem;
}

.planes .card-text .dto {
  font-size: 1.8rem;
}

.card-benefits ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
} 
.card-benefits li { 
  padding-left: 16px; 
} 
.card-benefits li::before {
  content: "•"; 
  padding-right: 8px; }

.inter-thin {
  font-weight: 100;
  font-family: 'Inter', sans-serif;
}

.inter-extra-light {
  font-weight: 200;
  font-family: 'Inter', sans-serif;
}

.inter-light {
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.inter-regular {
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.inter-medium {
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.inter-semibold {
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.inter-bold {
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.inter-extra-bold {
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

.inter-black {
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}

.inter-italic {
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

.inter-bold-italic {
  font-weight: 700;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

.nl-text-pequeño {
  font-size: 1rem;
}
