@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-950: #05233d;
  --navy-900: #082f4c;
  --navy-800: #10445e;
  --teal-700: #008f8d;
  --teal-600: #00a4a0;
  --teal-500: #14b8b0;
  --green-600: #5da63f;
  --green-500: #79b84a;
  --green-300: #b8db84;
  --ivory: #fbf8f2;
  --sand: #f3eadc;
  --aqua-50: #effaf8;
  --aqua-100: #dff5ef;
  --sky-100: #e7f4f8;
  --sun-100: #fff1cf;
  --leaf-100: #edf6dc;
  --white: #ffffff;
  --ink: #0a2940;
  --muted: #5b7080;
  --line: rgba(5, 35, 61, 0.11);
  --shadow-soft: 0 22px 70px rgba(5, 35, 61, 0.11);
  --shadow-card: 0 14px 34px rgba(5, 35, 61, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--teal-600);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(5, 35, 61, 0.06);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand__logo {
  width: 156px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 38px);
  margin-left: auto;
  color: var(--navy-950);
  font-size: 0.94rem;
  font-weight: 680;
}

.desktop-nav a {
  position: relative;
  padding-block: 14px;
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  right: -16px;
  top: 50%;
  border-radius: 50%;
  background: var(--teal-600);
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover::before,
.desktop-nav a:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  cursor: pointer;
  font-weight: 780;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button svg,
.inline-link svg,
.service > a svg,
.mobile-nav svg,
.footer__cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-3px);
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.inline-link:focus-visible,
.service a:focus-visible,
.faq__list button:focus-visible {
  outline: 3px solid rgba(0, 164, 160, 0.24);
  outline-offset: 4px;
}

.button--small {
  min-height: 48px;
  padding-inline: 21px;
  font-size: 0.88rem;
}

.button--outline {
  border: 1.5px solid var(--teal-600);
  background: transparent;
  color: var(--navy-950);
}

.button--outline:hover {
  background: var(--teal-600);
  box-shadow: 0 12px 26px rgba(0, 164, 160, 0.22);
  color: var(--white);
}

.button--primary {
  background: linear-gradient(135deg, var(--teal-600), #08a998 60%, var(--green-500));
  box-shadow: 0 16px 34px rgba(0, 164, 160, 0.24);
  color: var(--white);
}

.button--primary:hover {
  box-shadow: 0 20px 42px rgba(0, 164, 160, 0.32);
}

.button--ghost {
  border: 1.5px solid rgba(5, 35, 61, 0.16);
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy-950);
}

.button--ghost:hover {
  border-color: var(--teal-600);
  background: var(--white);
}

.button--light {
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  color: var(--navy-950);
}

.button--full {
  width: 100%;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(121, 184, 74, 0.14), transparent 32%),
    linear-gradient(110deg, #fffdf9 0%, var(--ivory) 52%, #eff9f5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 920px;
  height: 250px;
  left: -170px;
  top: 12px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 239, 216, 0.78), rgba(223, 245, 239, 0.6));
  filter: blur(1px);
  transform: rotate(8deg);
}

.hero__wash {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero__wash--one {
  width: 340px;
  height: 340px;
  right: -150px;
  bottom: 80px;
  border: 64px solid rgba(0, 164, 160, 0.055);
}

.hero__wash--two {
  width: 210px;
  height: 210px;
  left: 35%;
  top: 140px;
  background-image: radial-gradient(rgba(0, 143, 141, 0.22) 1px, transparent 1px);
  background-size: 11px 11px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.hero__grid {
  min-height: 724px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
  padding-block: 72px 58px;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green-500);
}

.hero h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(3.65rem, 5.35vw, 5.9rem);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.hero h1 strong {
  background: linear-gradient(105deg, var(--teal-600), var(--green-500));
  background-clip: text;
  color: transparent;
  font-weight: inherit;
}

.hero__lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 690;
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__proof svg,
.business__copy li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--teal-600);
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero__visual {
  position: relative;
  min-height: 590px;
}

.hero__photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.92);
  border-radius: 48px;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
  transform: rotate(1.2deg);
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(5, 35, 61, 0.12));
  pointer-events: none;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.insight-card,
.impact-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(5, 35, 61, 0.15);
  backdrop-filter: blur(16px);
}

.insight-card {
  padding: 17px;
}

.insight-card > span,
.impact-card > span {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card--trend {
  width: 196px;
  left: -28px;
  top: 38px;
}

.insight-card--trend svg {
  width: 100%;
  margin: 8px 0 4px;
  overflow: visible;
}

.insight-grid {
  fill: none;
  stroke: rgba(5, 35, 61, 0.07);
  stroke-width: 1;
}

.insight-line {
  fill: none;
  stroke: var(--teal-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.insight-card--trend circle {
  fill: var(--green-500);
  stroke: var(--white);
  stroke-width: 2;
}

.insight-card strong {
  color: var(--navy-950);
  font-size: 0.82rem;
}

.insight-card--plan {
  width: 192px;
  left: -16px;
  top: 220px;
}

.insight-card--plan > span {
  margin-bottom: 12px;
}

.insight-card--plan p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 7px 0;
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 690;
}

.insight-card--plan i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--aqua-100);
  color: var(--teal-700);
}

.insight-card--plan svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.impact-card {
  width: 164px;
  right: -26px;
  bottom: 34px;
  padding: 18px;
}

.impact-card > div {
  height: 88px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(5, 35, 61, 0.12);
}

.impact-card i {
  width: 19px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--green-500), var(--teal-600));
}

.hero__promise {
  position: relative;
  z-index: 5;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(5, 35, 61, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  padding: 18px 24px;
  box-shadow: 0 12px 30px rgba(5, 35, 61, 0.07);
  backdrop-filter: blur(14px);
}

.hero__promise > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__promise p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.hero__promise strong {
  color: var(--navy-950);
}

.hero__promise > a {
  color: var(--teal-700);
  font-weight: 760;
}

.promise-dot {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-600);
  color: var(--white);
}

.promise-dot svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.section {
  position: relative;
  padding-block: 118px;
}

#servicios,
#metodo,
#empresas,
#preguntas,
#contacto {
  scroll-margin-top: 100px;
}

.section-kicker--light {
  color: #94e9e2;
}

.section-kicker--light::before {
  background: var(--green-300);
}

.section-heading h2,
.clarity h2,
.method h2,
.business h2,
.values h2,
.faq h2,
.contact h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.7rem, 4.6vw, 5rem);
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.clarity {
  overflow: hidden;
  background: var(--white);
}

.clarity::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: var(--leaf-100);
}

.clarity__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.clarity__headline h2 {
  max-width: 760px;
}

.clarity__story {
  position: relative;
  border-radius: 32px;
  background: var(--ivory);
  padding: 48px 42px 40px;
  box-shadow: var(--shadow-card);
}

.story-quote {
  position: absolute;
  left: 32px;
  top: -42px;
  color: var(--teal-600);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.clarity__story p {
  position: relative;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--teal-700);
  font-size: 0.9rem;
  font-weight: 780;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading--split h2 {
  max-width: 850px;
}

.section-heading--split > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.services {
  isolation: isolate;
  overflow: hidden;
  background: var(--aqua-50);
}

.services__blob {
  position: absolute;
  z-index: -1;
  width: 760px;
  height: 280px;
  left: -150px;
  top: -160px;
  border-radius: 50%;
  background: rgba(121, 184, 74, 0.1);
  transform: rotate(-6deg);
}

.services::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: 50px;
  border-radius: 50%;
  border: 72px solid rgba(0, 164, 160, 0.055);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.service {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(5, 35, 61, 0.07);
  border-radius: 34px;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 10px 28px rgba(5, 35, 61, 0.055);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -96px;
  bottom: -96px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.05;
}

.service:hover {
  box-shadow: 0 24px 50px rgba(5, 35, 61, 0.13);
  transform: translateY(-8px) rotate(-0.4deg);
}

.service--sun {
  background: var(--sun-100);
}

.service--navy {
  border-color: transparent;
  background: var(--navy-950);
  color: var(--white);
}

.service--mint {
  background: var(--aqua-100);
}

.service--sky {
  background: var(--sky-100);
}

.service--leaf {
  background: var(--leaf-100);
}

.service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.service__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-700);
  box-shadow: 0 10px 24px rgba(5, 35, 61, 0.08);
}

.service--navy .service__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #8be0d7;
}

.service__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service__number {
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service--navy .service__number {
  color: #8be0d7;
}

.service__tag {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 6px 10px;
  color: var(--teal-700);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service--navy .service__tag {
  background: rgba(255, 255, 255, 0.09);
  color: #a9ebe5;
}

.service h3 {
  max-width: 310px;
  margin: 0;
  color: var(--navy-950);
  font-size: 1.65rem;
  font-weight: 770;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service--navy h3 {
  color: var(--white);
}

.service > p {
  margin: 15px 0 24px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.service--navy > p {
  color: rgba(255, 255, 255, 0.68);
}

.service > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--teal-700);
  font-size: 0.84rem;
  font-weight: 780;
}

.service--navy > a {
  color: #8be0d7;
}

.method {
  background: var(--white);
}

.method__frame {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.24fr);
  gap: 76px;
  overflow: hidden;
  border-radius: 50px;
  background:
    radial-gradient(circle at 3% 100%, rgba(121, 184, 74, 0.18), transparent 28%),
    linear-gradient(135deg, var(--ivory), #edf9f6);
  padding: clamp(52px, 7vw, 88px);
}

.method__frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  right: -150px;
  top: -170px;
  border: 58px solid rgba(0, 164, 160, 0.07);
  border-radius: 50%;
}

.method__intro h2 {
  font-size: clamp(2.6rem, 4vw, 4.25rem);
}

.method__intro > p:last-of-type {
  margin: 24px 0 32px;
  color: var(--muted);
  line-height: 1.75;
}

.method__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.method__steps article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(5, 35, 61, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  padding: 26px;
  box-shadow: 0 12px 26px rgba(5, 35, 61, 0.06);
}

.method__steps article:nth-child(2),
.method__steps article:nth-child(4) {
  transform: translateY(26px);
}

.method__steps article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--aqua-100);
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 880;
}

.method__steps article:nth-child(2) > span,
.method__steps article:nth-child(4) > span {
  background: var(--leaf-100);
  color: var(--green-600);
}

.method__steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.18rem;
}

.method__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.business {
  padding-top: 0;
  background: var(--white);
}

.business__frame {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.02fr);
  align-items: center;
  gap: clamp(58px, 7vw, 96px);
  overflow: hidden;
  border-radius: 50px;
  background:
    radial-gradient(circle at 90% 8%, rgba(20, 184, 176, 0.18), transparent 27%),
    var(--navy-950);
  padding: clamp(58px, 7vw, 92px);
  color: var(--white);
}

.business__frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 270px;
  height: 270px;
  left: -130px;
  bottom: -140px;
  border-radius: 50%;
  background: rgba(121, 184, 74, 0.11);
}

.business h2 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(2.8rem, 4.3vw, 4.7rem);
}

.business__copy > p:not(.section-kicker) {
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.business__copy ul {
  display: grid;
  gap: 13px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.business__copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.business-board {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.95);
  padding: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
  color: var(--navy-950);
  transform: rotate(1deg);
}

.business-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.business-board__head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.business-board__head span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 760;
}

.business-board__head strong {
  font-size: 1.15rem;
}

.board-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: var(--aqua-100);
  padding: 8px 11px;
  color: var(--teal-700) !important;
}

.board-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(0, 164, 160, 0.12);
}

.business-board__welcome {
  padding: 23px 0;
}

.business-board__welcome p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.business-board__welcome strong {
  font-size: 1rem;
}

.board-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.board-cards article {
  border-radius: 20px;
  background: var(--aqua-50);
  padding: 18px;
}

.board-cards article:nth-child(2) {
  background: var(--sun-100);
}

.board-cards span {
  color: var(--muted);
  font-size: 0.68rem;
}

.board-cards strong {
  display: block;
  margin: 8px 0;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.board-cards small {
  color: var(--muted);
  font-size: 0.72rem;
}

.board-cards p {
  margin: 0;
  color: var(--green-600);
  font-size: 0.67rem;
  font-weight: 780;
}

.progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5, 35, 61, 0.08);
}

.progress i {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-600), var(--green-500));
}

.board-chart {
  margin-top: 13px;
  border-radius: 20px;
  background: var(--ivory);
  padding: 18px 18px 13px;
}

.board-chart__title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.board-chart__title span {
  color: var(--muted);
  font-size: 0.7rem;
}

.board-chart__title strong {
  color: var(--green-600);
  font-size: 0.82rem;
}

.board-bars {
  height: 112px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 15px;
}

.board-bars i {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--teal-500), var(--teal-700));
}

.board-bars i:nth-child(3n) {
  background: linear-gradient(180deg, var(--green-300), var(--green-600));
}

.values {
  overflow: hidden;
  background: var(--ivory);
}

.values__grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.15fr) repeat(3, minmax(0, 0.62fr));
  gap: 18px;
}

.values__title {
  padding-right: 42px;
}

.values__title h2 {
  font-size: clamp(2.7rem, 4vw, 4.25rem);
}

.values__grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(5, 35, 61, 0.08);
  border-radius: 30px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(5, 35, 61, 0.055);
}

.values__grid article:nth-child(3) {
  background: var(--aqua-100);
  transform: translateY(26px);
}

.values__grid article:nth-child(4) {
  background: var(--leaf-100);
}

.values__grid article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
}

.values__grid h3 {
  margin: auto 0 12px;
  color: var(--navy-950);
  font-size: 1.45rem;
}

.values__grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.65;
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.08fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq__intro > p:not(.section-kicker) {
  max-width: 460px;
  margin: 24px 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__list article {
  overflow: hidden;
  border: 1px solid rgba(5, 35, 61, 0.09);
  border-radius: 24px;
  background: var(--ivory);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.faq__list article.is-open {
  border-color: rgba(0, 164, 160, 0.35);
  background: var(--aqua-50);
  box-shadow: 0 14px 30px rgba(5, 35, 61, 0.06);
}

.faq__list button {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  color: var(--navy-950);
  cursor: pointer;
  text-align: left;
  font-weight: 760;
}

.faq__list button i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(5, 35, 61, 0.08);
}

.faq__list button i::before,
.faq__list button i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-700);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq__list button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__list article.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq__answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 70px 0 24px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
  transition: padding 240ms ease;
}

.faq__list article.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__list article.is-open .faq__answer > p {
  padding-bottom: 24px;
}

.contact {
  padding-top: 0;
  background: var(--white);
}

.contact__frame {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 0.94fr);
  gap: clamp(56px, 8vw, 110px);
  overflow: hidden;
  border-radius: 52px;
  background:
    radial-gradient(circle at 3% 96%, rgba(121, 184, 74, 0.25), transparent 32%),
    linear-gradient(135deg, var(--teal-700), #007a78);
  padding: clamp(54px, 7vw, 90px);
}

.contact__frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  right: -210px;
  top: -230px;
  border: 72px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.contact h2 {
  color: var(--white);
  font-size: clamp(2.9rem, 4.4vw, 4.8rem);
}

.contact__copy > p:not(.section-kicker) {
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.78;
}

.contact__email {
  display: inline-flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 780;
}

.contact__note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.contact__note > span {
  width: 58px;
  height: 58px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 850;
}

.contact__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact__note strong {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 18px;
  border-radius: 34px;
  background: var(--white);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.form-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 4px;
}

.form-heading span {
  color: var(--teal-700);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--navy-950);
  font-size: 1.45rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label:not(.privacy-check) {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-size: 0.73rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(5, 35, 61, 0.12);
  border-radius: 15px;
  outline: 0;
  background: var(--ivory);
  padding: 14px 15px;
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form select {
  min-height: 50px;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 164, 160, 0.12);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--teal-600);
}

.form-status {
  margin: 0;
  border-radius: 14px;
  background: var(--aqua-100);
  padding: 12px 14px;
  color: var(--teal-700);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer {
  background: var(--ivory);
  padding: 80px 0 24px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: 58px;
}

.brand__logo--footer {
  width: 176px;
}

.footer__brand p {
  max-width: 320px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer__main > div:not(.footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__main strong {
  margin-bottom: 5px;
  color: var(--navy-950);
  font-size: 0.85rem;
}

.footer__main a {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer__main a:hover {
  color: var(--teal-700);
}

.footer__cta {
  border-radius: 24px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 26px rgba(5, 35, 61, 0.07);
}

.footer__cta p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer__cta > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--teal-700) !important;
  font-weight: 780;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer__bottom > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__settings {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.footer__settings:hover {
  color: var(--teal-700);
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  width: min(760px, calc(100% - 32px));
  left: 50%;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(5, 35, 61, 0.96);
  padding: 18px 20px 18px 24px;
  box-shadow: 0 20px 54px rgba(5, 35, 61, 0.26);
  color: var(--white);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.cookie-banner strong {
  font-size: 0.88rem;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__actions > button:first-child {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.74rem;
  white-space: nowrap;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service:nth-child(2),
.service:nth-child(5),
.method__steps article:nth-child(2),
.method__steps article:nth-child(4) {
  transition-delay: 80ms;
}

.service:nth-child(3),
.service:nth-child(6) {
  transition-delay: 150ms;
}

@media (max-width: 1120px) {
  .shell {
    width: min(100% - 44px, 1040px);
  }

  .desktop-nav {
    gap: 22px;
    font-size: 0.86rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5.8vw, 5rem);
  }

  .insight-card--trend {
    left: -12px;
  }

  .insight-card--plan {
    left: -5px;
  }

  .impact-card {
    right: -8px;
  }

  .method__frame {
    gap: 46px;
    padding: 58px;
  }

  .business__frame,
  .contact__frame {
    gap: 50px;
    padding: 60px;
  }

  .values__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values__title {
    grid-column: 1 / -1;
    max-width: 760px;
    margin-bottom: 28px;
    padding-right: 0;
  }
}

@media (max-width: 920px) {
  .header__inner {
    min-height: 104px;
  }

  .brand__logo {
    width: 146px;
  }

  .desktop-nav,
  .header__cta {
    display: none;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    display: grid;
    margin-left: auto;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy-950);
    transition: transform 180ms ease;
  }

  .menu-button.is-open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    border-top: 0 solid var(--line);
    background: var(--white);
    padding-inline: 24px;
    transition:
      grid-template-rows 220ms ease,
      padding 220ms ease,
      border-width 220ms ease;
  }

  .mobile-nav::before {
    content: "";
    min-height: 0;
  }

  .mobile-nav.is-open {
    grid-template-rows: repeat(6, auto);
    border-top-width: 1px;
    padding-block: 14px 22px;
  }

  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    color: var(--navy-950);
    font-weight: 700;
  }

  .mobile-nav a:last-child {
    margin-top: 10px;
    border: 0;
    border-radius: 999px;
    background: var(--teal-600);
    padding: 0 18px;
    color: var(--white);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 72px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 9vw, 5.6rem);
  }

  .hero__visual {
    min-height: 620px;
  }

  .hero__photo {
    inset-inline: 5%;
  }

  .insight-card--trend {
    left: 0;
  }

  .insight-card--plan {
    left: 2%;
  }

  .impact-card {
    right: 0;
  }

  .hero__promise {
    margin-top: 30px;
  }

  .clarity__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .clarity__headline,
  .faq__intro {
    max-width: 720px;
  }

  .faq__intro {
    position: static;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading--split > p {
    max-width: 620px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method__frame {
    grid-template-columns: 1fr;
  }

  .method__intro {
    max-width: 700px;
  }

  .business__frame,
  .contact__frame {
    grid-template-columns: 1fr;
  }

  .business__copy,
  .contact__copy {
    max-width: 700px;
  }

  .business-board {
    width: min(100%, 660px);
  }

  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 600px);
  }

  .header__inner {
    min-height: 88px;
  }

  .brand__logo {
    width: 120px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero::before {
    width: 520px;
    height: 190px;
    left: -250px;
  }

  .hero__grid {
    gap: 38px;
    padding-block: 54px 34px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.64rem;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15.5vw, 4.25rem);
    line-height: 0.94;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .hero__proof {
    display: grid;
  }

  .hero__visual {
    min-height: 475px;
  }

  .hero__photo {
    inset-inline: 0;
    border-width: 6px;
    border-radius: 34px;
    transform: none;
  }

  .insight-card--trend {
    width: 150px;
    left: -5px;
    top: 22px;
    padding: 13px;
  }

  .insight-card--plan {
    width: 154px;
    left: -5px;
    top: 170px;
    padding: 13px;
  }

  .insight-card--plan p {
    font-size: 0.64rem;
  }

  .impact-card {
    width: 130px;
    right: -5px;
    bottom: 18px;
    padding: 13px;
  }

  .impact-card > div {
    height: 64px;
    gap: 6px;
  }

  .impact-card i {
    width: 15px;
  }

  .hero__promise {
    display: grid;
    border-radius: 22px;
    padding: 20px;
  }

  .hero__promise > div {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero__promise p {
    width: 100%;
    padding-left: 46px;
    font-size: 0.82rem;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .clarity h2,
  .method h2,
  .business h2,
  .values h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .clarity__grid,
  .faq__grid {
    gap: 44px;
  }

  .clarity__story {
    border-radius: 26px;
    padding: 42px 24px 28px;
  }

  .story-quote {
    left: 18px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: 330px;
    border-radius: 28px;
  }

  .method__frame,
  .business__frame,
  .contact__frame {
    width: calc(100% - 20px);
    border-radius: 34px;
    padding: 34px 20px;
  }

  .method__steps {
    grid-template-columns: 1fr;
  }

  .method__steps article {
    min-height: 188px;
  }

  .method__steps article:nth-child(2),
  .method__steps article:nth-child(4) {
    transform: none;
  }

  .business-board {
    border-radius: 26px;
    padding: 18px;
    transform: none;
  }

  .board-cards {
    grid-template-columns: 1fr;
  }

  .board-bars {
    height: 88px;
    gap: 4px;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .values__title {
    margin-bottom: 10px;
  }

  .values__grid article {
    min-height: 260px;
  }

  .values__grid article:nth-child(3) {
    transform: none;
  }

  .faq__list button {
    min-height: 76px;
    padding: 18px;
  }

  .faq__answer > p {
    padding-inline: 18px;
  }

  .contact-form {
    border-radius: 26px;
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 58px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__bottom > div {
    flex-wrap: wrap;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__actions {
    justify-content: space-between;
  }

  .cookie-banner__actions .button {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* TelecomBox accent in the BoxServicios navigation */

.nav-telecom {
  color: #086cd7;
}

/* TelecomBox page */

.telecom-page {
  --navy-950: #082842;
  --navy-900: #0a3557;
  --navy-800: #124667;
  --teal-700: #075fbf;
  --teal-600: #0877e8;
  --teal-500: #13a9df;
  --green-500: #12a9df;
  --green-300: #8fdbf4;
  --ivory: #f7fbff;
  --sand: #eaf3fb;
  --aqua-50: #eef8ff;
  --aqua-100: #dff2ff;
  --sky-100: #e1f3ff;
  --sun-100: #eaf2ff;
  --leaf-100: #e4f7ff;
  --ink: #0a2b44;
  --muted: #597186;
  min-height: 100vh;
  background: #f7fbff;
  color: var(--ink);
}

.telecom-family-bar {
  background: #082842;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.telecom-family-bar .shell {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.telecom-family-bar span {
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.telecom-family-bar a {
  transition: color 160ms ease;
}

.telecom-family-bar a:hover {
  color: #fff;
}

.telecom-header {
  background: rgba(255, 255, 255, 0.94);
}

.telecom-header .header__inner {
  min-height: 108px;
}

.telecom-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.telecom-logo {
  width: 162px;
  display: inline-flex;
}

.telecom-logo img {
  width: 100%;
  height: auto;
}

.telecom-logo--footer {
  width: 205px;
}

.telecom-page .button--primary {
  background: linear-gradient(135deg, #0d8ee8, #076ee0 56%, #0754b9);
  box-shadow: 0 16px 34px rgba(7, 110, 224, 0.25);
}

.telecom-page .button--primary:hover {
  box-shadow: 0 20px 44px rgba(7, 110, 224, 0.35);
}

.telecom-page .button--outline {
  border-color: #0877e8;
}

.telecom-page .button--outline:hover {
  background: #0877e8;
  box-shadow: 0 12px 26px rgba(7, 110, 224, 0.22);
}

.telecom-page .button:focus-visible,
.telecom-page .desktop-nav a:focus-visible,
.telecom-page .inline-link:focus-visible,
.telecom-page .faq__list button:focus-visible {
  outline-color: rgba(8, 119, 232, 0.28);
}

.telecom-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(25, 172, 226, 0.2), transparent 30%),
    linear-gradient(118deg, #fafdff 0%, #f0f8ff 48%, #e5f4ff 100%);
}

.telecom-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 840px;
  height: 250px;
  left: -150px;
  top: 72px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(219, 241, 255, 0.8), rgba(236, 246, 255, 0.34));
  transform: rotate(8deg);
}

.telecom-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.telecom-orbit--one {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 25px;
  border: 68px solid rgba(8, 119, 232, 0.055);
}

.telecom-orbit--two {
  width: 240px;
  height: 240px;
  left: 42%;
  top: 110px;
  background-image: radial-gradient(rgba(8, 119, 232, 0.2) 1.4px, transparent 1.4px);
  background-size: 13px 13px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.telecom-hero__grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(45px, 6vw, 88px);
  padding-block: 66px 50px;
}

.telecom-hero__copy {
  position: relative;
  z-index: 2;
}

.telecom-hero h1 {
  margin: 0;
  color: #082842;
  font-size: clamp(3.8rem, 5.8vw, 6.4rem);
  font-weight: 830;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.telecom-hero h1 strong {
  background: linear-gradient(105deg, #08a9df, #0877e8 58%, #064daa);
  background-clip: text;
  color: transparent;
  font-weight: inherit;
}

.telecom-hero__lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #587187;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.telecom-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.telecom-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  margin: 30px 0 0;
  padding: 0;
  color: #124667;
  font-size: 0.76rem;
  font-weight: 700;
  list-style: none;
}

.telecom-hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.telecom-hero__proof svg,
.telecom-business__copy li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: #0877e8;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.telecom-console {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.95);
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 35%, rgba(15, 139, 226, 0.28), transparent 28%),
    linear-gradient(145deg, #082842, #0a3d69 60%, #075bab);
  padding: 28px;
  box-shadow: 0 28px 80px rgba(7, 58, 104, 0.22);
  transform: rotate(1deg);
}

.telecom-console::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -150px;
  top: -150px;
  border: 54px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.telecom-console__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.telecom-console__head > div {
  display: grid;
  gap: 5px;
}

.telecom-console__head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 770;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.telecom-console__head strong {
  color: #fff;
  font-size: 1.15rem;
}

.telecom-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 11px;
}

.telecom-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ce2c3;
  box-shadow: 0 0 12px #3ce2c3;
}

.telecom-network {
  position: relative;
  height: 330px;
  margin-block: 18px 10px;
}

.network-core,
.network-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.network-core {
  width: 106px;
  height: 106px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(145deg, #0ca8e2, #096ee0);
  color: #fff;
  box-shadow:
    0 0 0 20px rgba(15, 160, 225, 0.08),
    0 0 48px rgba(9, 128, 226, 0.4);
  transform: translate(-50%, -50%);
}

.network-core svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.network-node {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #bfeaff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.network-node svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.network-node--one {
  left: 8%;
  top: 17%;
}

.network-node--two {
  right: 7%;
  top: 15%;
}

.network-node--three {
  left: 13%;
  bottom: 10%;
}

.network-node--four {
  right: 12%;
  bottom: 9%;
}

.network-line {
  position: absolute;
  z-index: 1;
  width: 31%;
  height: 2px;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, rgba(33, 186, 235, 0.16), rgba(56, 205, 245, 0.8));
  transform-origin: left center;
}

.network-line::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 10%;
  top: 50%;
  border-radius: 50%;
  background: #46ddf4;
  box-shadow: 0 0 12px #46ddf4;
  transform: translateY(-50%);
}

.network-line--one {
  transform: rotate(207deg);
}

.network-line--two {
  transform: rotate(-29deg);
}

.network-line--three {
  transform: rotate(149deg);
}

.network-line--four {
  transform: rotate(32deg);
}

.telecom-console__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.telecom-console__cards article {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  padding: 17px;
  backdrop-filter: blur(12px);
}

.telecom-console__cards span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 720;
  text-transform: uppercase;
}

.telecom-console__cards strong {
  margin-top: 8px;
  color: #fff;
  font-size: 1.28rem;
}

.telecom-console__cards small {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.55);
}

.signal-bars {
  height: 32px;
  display: flex;
  align-items: end;
  gap: 4px;
  margin-top: auto;
}

.signal-bars b {
  width: 7px;
  border-radius: 999px;
  background: #42d9ee;
}

.signal-bars b:nth-child(1) {
  height: 25%;
}

.signal-bars b:nth-child(2) {
  height: 50%;
}

.signal-bars b:nth-child(3) {
  height: 75%;
}

.signal-bars b:nth-child(4) {
  height: 100%;
}

.telecom-hero__promise {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  border: 1px solid rgba(8, 72, 125, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  padding: 18px 24px;
  box-shadow: 0 12px 30px rgba(7, 63, 108, 0.07);
  backdrop-filter: blur(14px);
}

.telecom-hero__promise > div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.telecom-hero__promise p {
  margin: 0;
  color: #5b7387;
  font-size: 0.91rem;
}

.telecom-hero__promise > a {
  margin-left: auto;
  color: #0769ce;
  font-weight: 760;
}

.telecom-intro {
  background: #fff;
}

.telecom-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(55px, 8vw, 130px);
}

.telecom-intro h2 {
  margin: 0;
  color: #082842;
  font-size: clamp(3.1rem, 5.3vw, 5.5rem);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.telecom-intro__text {
  border-radius: 34px;
  background: #eef7ff;
  padding: clamp(28px, 4vw, 48px);
  color: #4f6a80;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.telecom-intro__text p {
  margin: 0;
}

.telecom-intro__text p + p {
  margin-top: 22px;
  color: #0c3a5c;
  font-weight: 680;
}

.telecom-services {
  background:
    radial-gradient(circle at 5% 12%, rgba(12, 154, 226, 0.09), transparent 22%),
    #f3f9ff;
}

.telecom-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.telecom-service {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(8, 61, 101, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  padding: 28px;
  box-shadow: 0 14px 36px rgba(7, 55, 97, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.telecom-service:nth-child(2),
.telecom-service:nth-child(5) {
  background: linear-gradient(145deg, #eaf7ff, #fff);
}

.telecom-service--primary {
  border-color: rgba(8, 119, 232, 0.2);
  background:
    radial-gradient(circle at 92% 8%, rgba(19, 169, 223, 0.16), transparent 30%),
    linear-gradient(145deg, #ffffff, #eef8ff);
  box-shadow: 0 20px 50px rgba(7, 73, 127, 0.11);
}

.telecom-service--primary > i {
  background: #0877e8;
  color: #fff;
}

.telecom-service:hover {
  border-color: rgba(8, 119, 232, 0.24);
  box-shadow: 0 22px 52px rgba(7, 73, 127, 0.12);
  transform: translateY(-7px);
}

.telecom-service__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.telecom-service__top > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #e0f4ff, #dcecff);
  color: #0871dc;
}

.telecom-service__top svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.telecom-service__top small {
  color: rgba(8, 46, 73, 0.28);
  font-size: 1rem;
  font-weight: 840;
}

.telecom-service > i {
  align-self: flex-start;
  margin-top: 28px;
  border-radius: 999px;
  background: #e8f4ff;
  padding: 6px 10px;
  color: #0870d9;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.telecom-service h3 {
  margin: 17px 0 0;
  color: #082842;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.telecom-service > p {
  margin: 16px 0 24px;
  color: #60778a;
  line-height: 1.68;
}

.telecom-service > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #0767ca;
  font-size: 0.86rem;
  font-weight: 790;
}

.telecom-service > a svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.telecom-service > a:hover svg {
  transform: translateX(4px);
}

.telecom-method {
  background: #fff;
}

.telecom-method__frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(50px, 7vw, 110px);
  overflow: hidden;
  border-radius: 52px;
  background:
    radial-gradient(circle at 10% 20%, rgba(29, 175, 229, 0.2), transparent 30%),
    linear-gradient(135deg, #082842, #093d6c 70%, #085ba8);
  padding: clamp(45px, 6vw, 82px);
  box-shadow: 0 26px 72px rgba(6, 47, 81, 0.17);
}

.telecom-method__intro {
  align-self: center;
}

.telecom-method__intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 4.6vw, 5rem);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.telecom-method__intro > p:not(.section-kicker) {
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
}

.telecom-method__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.telecom-method__steps article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  color: #fff;
  backdrop-filter: blur(14px);
}

.telecom-method__steps article:nth-child(2),
.telecom-method__steps article:nth-child(4) {
  transform: translateY(22px);
}

.telecom-method__steps article > span {
  color: #6dddf5;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.telecom-method__steps strong {
  font-size: 1.3rem;
}

.telecom-method__steps p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.58;
}

.telecom-business {
  background: #eef7ff;
}

.telecom-business__grid {
  display: grid;
  grid-template-columns: minmax(480px, 1.03fr) minmax(0, 0.97fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.telecom-business__panel {
  border: 8px solid #fff;
  border-radius: 44px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(7, 59, 103, 0.15);
  transform: rotate(-1deg);
}

.telecom-business__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.telecom-business__panel-head span {
  color: #082842;
  font-size: 1.05rem;
  font-weight: 800;
}

.telecom-business__panel-head small {
  border-radius: 999px;
  background: #e8f5ff;
  padding: 7px 10px;
  color: #0968cc;
  font-weight: 740;
}

.telecom-business__site {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #082f50, #075da9);
  padding: 22px;
  color: #fff;
}

.telecom-business__site span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.telecom-business__site strong {
  grid-column: 1;
  font-size: 1.25rem;
}

.telecom-business__site i {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: 999px;
  background: rgba(50, 222, 190, 0.15);
  padding: 8px 10px;
  color: #63f1d2;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.telecom-business__lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.telecom-business__lines article {
  border-radius: 22px;
  background: #eff7fd;
  padding: 17px;
}

.telecom-business__lines span {
  color: #0872df;
  font-size: 1.8rem;
  font-weight: 830;
}

.telecom-business__lines p {
  margin: 6px 0 0;
  color: #61778a;
  font-size: 0.72rem;
  font-weight: 690;
  line-height: 1.35;
}

.telecom-business__alert {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid rgba(8, 97, 187, 0.1);
  border-radius: 22px;
  padding: 16px;
}

.telecom-business__alert svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: #dff4ff;
  padding: 10px;
  fill: none;
  stroke: #0770db;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.telecom-business__alert p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: #6c7f8f;
  font-size: 0.77rem;
}

.telecom-business__alert strong {
  color: #0b304c;
  font-size: 0.88rem;
}

.telecom-business__copy h2 {
  margin: 0;
  color: #082842;
  font-size: clamp(3.05rem, 5vw, 5.3rem);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.telecom-business__copy > p:not(.section-kicker) {
  margin: 27px 0 0;
  color: #5b7387;
  line-height: 1.72;
}

.telecom-business__copy ul {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.telecom-business__copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #123e5e;
  font-size: 0.92rem;
  font-weight: 690;
}

.telecom-faq {
  background: #fff;
}

.telecom-contact {
  background: #f1f8ff;
}

.telecom-contact .contact__frame {
  background:
    radial-gradient(circle at 5% 15%, rgba(31, 180, 230, 0.22), transparent 27%),
    linear-gradient(130deg, #082842, #093d6c 60%, #0758a4);
}

.telecom-contact .contact__frame::after {
  border-color: rgba(23, 173, 225, 0.13);
}

.telecom-contact .contact__note > span {
  background: rgba(42, 190, 232, 0.16);
  color: #77e5fa;
}

.telecom-contact .contact-form {
  background: rgba(255, 255, 255, 0.98);
}

.telecom-footer {
  background: #061d31;
}

.telecom-footer__brand p {
  margin-top: 16px;
}

@media (max-width: 1120px) {

  .telecom-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(450px, 1.18fr);
  }

  .telecom-method__frame {
    grid-template-columns: 1fr;
  }

  .telecom-method__intro {
    max-width: 720px;
  }

  .telecom-business__grid {
    grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
    gap: 55px;
  }
}

@media (max-width: 920px) {

  .telecom-header .header__inner {
    min-height: 96px;
  }

  .telecom-logo {
    width: 146px;
  }

  .telecom-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 72px 42px;
  }

  .telecom-hero__copy {
    max-width: 720px;
  }

  .telecom-console {
    width: min(100%, 680px);
    justify-self: center;
  }

  .telecom-hero__promise {
    margin-top: 24px;
  }

  .telecom-intro__grid,
  .telecom-business__grid {
    grid-template-columns: 1fr;
  }

  .telecom-intro__grid {
    gap: 50px;
  }

  .telecom-business__panel {
    width: min(100%, 650px);
  }

  .telecom-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .telecom-family-bar .shell {
    min-height: 38px;
    justify-content: center;
  }

  .telecom-family-bar span {
    display: none;
  }

  .telecom-logo {
    width: 122px;
  }

  .telecom-logo--footer {
    width: 180px;
  }

  .telecom-hero__grid {
    padding-block: 52px 34px;
  }

  .telecom-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
    line-height: 0.94;
  }

  .telecom-hero__lead {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .telecom-hero__actions {
    display: grid;
  }

  .telecom-hero__proof {
    display: grid;
  }

  .telecom-console {
    border-width: 5px;
    border-radius: 34px;
    padding: 18px;
    transform: none;
  }

  .telecom-console__head {
    align-items: center;
  }

  .telecom-console__head strong {
    font-size: 0.95rem;
  }

  .telecom-live {
    padding: 7px 9px;
    font-size: 0.6rem;
  }

  .telecom-network {
    height: 280px;
  }

  .network-core {
    width: 84px;
    height: 84px;
  }

  .network-core svg {
    width: 38px;
  }

  .network-node {
    width: 48px;
    height: 48px;
  }

  .network-node svg {
    width: 22px;
  }

  .telecom-console__cards {
    grid-template-columns: 1fr;
  }

  .telecom-console__cards article:last-child {
    display: none;
  }

  .telecom-hero__promise {
    display: grid;
    border-radius: 22px;
    padding: 20px;
  }

  .telecom-hero__promise > div {
    display: grid;
  }

  .telecom-hero__promise > a {
    margin-left: 0;
  }

  .telecom-intro h2,
  .telecom-business__copy h2,
  .telecom-method__intro h2 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .telecom-intro__text {
    border-radius: 26px;
    padding: 26px 22px;
  }

  .telecom-services__grid {
    grid-template-columns: 1fr;
  }

  .telecom-service {
    min-height: 345px;
    border-radius: 28px;
  }

  .telecom-method__frame {
    width: calc(100% - 20px);
    border-radius: 34px;
    padding: 34px 20px;
  }

  .telecom-method__steps {
    grid-template-columns: 1fr;
  }

  .telecom-method__steps article {
    min-height: 190px;
  }

  .telecom-method__steps article:nth-child(2),
  .telecom-method__steps article:nth-child(4) {
    transform: none;
  }

  .telecom-business__panel {
    border-width: 5px;
    border-radius: 30px;
    padding: 16px;
    transform: none;
  }

  .telecom-business__lines {
    grid-template-columns: 1fr;
  }

  .telecom-business__lines article {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .telecom-business__lines p {
    margin: 0;
  }

  .telecom-business__site {
    grid-template-columns: 1fr;
  }

  .telecom-business__site i {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 8px;
  }
}

/* BoxServicios main gateway */

.box-page {
  --box-blue: #0877e8;
  --box-blue-dark: #0753ad;
  --box-green: #5da63f;
  --box-green-dark: #2f7d39;
  min-height: 100vh;
  background: var(--ivory);
}

.box-header {
  background: rgba(255, 253, 249, 0.94);
}

.box-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.box-brand__logo {
  width: 164px;
  display: inline-flex;
  align-items: center;
}

.box-brand__logo img {
  width: 100%;
  height: auto;
}

.box-brand__logo--footer {
  width: 210px;
}

.nav-energy {
  color: var(--teal-700);
}

.box-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(93, 166, 63, 0.15), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(8, 119, 232, 0.16), transparent 30%),
    linear-gradient(118deg, #fffdf8 0%, #f6fbf8 46%, #eef7ff 100%);
}

.box-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 860px;
  height: 250px;
  left: -170px;
  top: 80px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(224, 246, 235, 0.72), rgba(239, 249, 255, 0.18));
  transform: rotate(7deg);
}

.box-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.box-orbit--one {
  width: 400px;
  height: 400px;
  right: -165px;
  bottom: 20px;
  border: 68px solid rgba(8, 119, 232, 0.052);
}

.box-orbit--two {
  width: 320px;
  height: 320px;
  left: -145px;
  bottom: -120px;
  border: 54px solid rgba(93, 166, 63, 0.055);
}

.box-hero__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: clamp(64px, 8vw, 128px);
  padding-block: 88px 64px;
}

.box-hero__copy h1 {
  max-width: 800px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(4rem, 6.7vw, 7.2rem);
  font-weight: 790;
  letter-spacing: -0.072em;
  line-height: 0.92;
}

.box-hero__copy h1 strong {
  background: linear-gradient(90deg, var(--teal-700), var(--box-blue));
  background-clip: text;
  color: transparent;
  font-weight: inherit;
}

.box-hero__lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.box-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.box-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 680;
  list-style: none;
}

.box-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.box-hero__proof svg,
.box-choice-card li svg {
  width: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.box-hub {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 35, 61, 0.08);
  border-radius: 44px;
  background:
    radial-gradient(circle at 14% 18%, rgba(93, 166, 63, 0.16), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(8, 119, 232, 0.18), transparent 34%),
    #fff;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.box-hub::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  bottom: -130px;
  border-radius: 50%;
  border: 44px solid rgba(8, 119, 232, 0.055);
}

.box-hub__logo {
  width: min(290px, 74%);
  margin: -12px auto 8px;
}

.box-hub__logo img {
  width: 100%;
  height: auto;
}

.box-hub__routes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.box-hub__route {
  min-height: 112px;
  display: grid;
  grid-template-columns: 54px 1fr 20px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(5, 35, 61, 0.08);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.84);
  padding: 18px 20px;
  box-shadow: 0 12px 26px rgba(5, 35, 61, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.box-hub__route:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(5, 35, 61, 0.12);
}

.box-hub__route--energy:hover {
  border-color: rgba(0, 164, 160, 0.35);
}

.box-hub__route--telecom:hover {
  border-color: rgba(8, 119, 232, 0.35);
}

.box-hub__route-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.box-hub__route--energy .box-hub__route-icon {
  background: var(--aqua-100);
  color: var(--teal-700);
}

.box-hub__route--telecom .box-hub__route-icon {
  background: #e7f3ff;
  color: var(--box-blue);
}

.box-hub__route-icon svg,
.box-compare__steps svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.box-hub__route > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.box-hub__route small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.box-hub__route strong {
  margin-top: 3px;
  color: var(--navy-950);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.box-hub__route em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.box-hub__route > svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.box-hub__route--energy > svg {
  color: var(--teal-700);
}

.box-hub__route--telecom > svg {
  color: var(--box-blue);
}

.box-hero__promise {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(5, 35, 61, 0.08);
}

.box-hero__promise strong {
  color: var(--navy-950);
}

.box-hero__promise p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.box-hero__promise > a {
  color: var(--teal-700);
  font-size: 0.88rem;
  font-weight: 780;
}

.box-choice {
  overflow: hidden;
  background: #fff;
}

.box-choice::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -150px;
  top: 80px;
  border-radius: 50%;
  border: 58px solid rgba(8, 119, 232, 0.045);
}

.box-choice__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.box-choice-card {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 42px;
  padding: clamp(34px, 4vw, 52px);
  box-shadow: var(--shadow-card);
}

.box-choice-card--energy {
  border: 1px solid rgba(0, 164, 160, 0.13);
  background:
    radial-gradient(circle at 92% 8%, rgba(121, 184, 74, 0.18), transparent 30%),
    linear-gradient(145deg, #f5fcf9, #eaf8f3);
}

.box-choice-card--telecom {
  border: 1px solid rgba(8, 119, 232, 0.14);
  background:
    radial-gradient(circle at 92% 8%, rgba(19, 169, 223, 0.17), transparent 30%),
    linear-gradient(145deg, #f7fbff, #eaf4ff);
}

.box-choice-card__head {
  min-height: 118px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}

.box-choice-card__head > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.box-choice-card__logo {
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: #fff;
  padding: 12px 18px;
  box-shadow: 0 12px 30px rgba(5, 35, 61, 0.09);
}

.box-choice-card__logo--energy {
  width: 190px;
}

.box-choice-card__logo--telecom {
  width: 205px;
}

.box-choice-card__logo img {
  width: 100%;
  height: auto;
}

.box-choice-card h3 {
  max-width: 560px;
  margin: 42px 0 0;
  color: var(--navy-950);
  font-size: clamp(2.25rem, 3.5vw, 4rem);
  font-weight: 790;
  letter-spacing: -0.058em;
  line-height: 1;
}

.box-choice-card > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.box-choice-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.box-choice-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 680;
}

.box-choice-card--telecom li svg {
  stroke: var(--box-blue);
}

.box-choice-card .button {
  width: fit-content;
  margin-top: auto;
}

.box-choice-card--telecom .button--primary {
  background: linear-gradient(135deg, #0d8ee8, #076ee0 56%, #0754b9);
  box-shadow: 0 16px 34px rgba(7, 110, 224, 0.25);
}

.box-compare {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(93, 166, 63, 0.12), transparent 25%),
    radial-gradient(circle at 92% 10%, rgba(8, 119, 232, 0.13), transparent 27%),
    var(--aqua-50);
}

.box-compare__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: end;
  gap: clamp(50px, 7vw, 100px);
  margin-bottom: 54px;
}

.box-compare__intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 790;
  letter-spacing: -0.062em;
  line-height: 0.99;
}

.box-compare__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.box-compare__steps article {
  min-height: 188px;
  border: 1px solid rgba(5, 35, 61, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  padding: 22px;
  box-shadow: 0 10px 26px rgba(5, 35, 61, 0.05);
}

.box-compare__steps article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #fff;
  color: var(--teal-700);
  box-shadow: 0 8px 18px rgba(5, 35, 61, 0.08);
}

.box-compare__steps article:nth-child(2) > span {
  color: var(--box-blue);
}

.box-compare__steps strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.92rem;
}

.box-compare__steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.box-compare__frame {
  overflow: hidden;
  border: 1px solid rgba(5, 35, 61, 0.1);
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 28px 78px rgba(5, 35, 61, 0.14);
}

.box-compare__bar {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(5, 35, 61, 0.08);
  background: #fff;
  padding: 0 24px;
}

.box-compare__bar > div {
  display: flex;
  gap: 7px;
}

.box-compare__bar i {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: #d6e2e8;
}

.box-compare__bar i:nth-child(1) {
  background: #69b94a;
}

.box-compare__bar i:nth-child(2) {
  background: #00a4a0;
}

.box-compare__bar i:nth-child(3) {
  background: #0877e8;
}

.box-compare__bar span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 680;
}

.box-compare__bar strong {
  color: var(--teal-700);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.box-compare__iframe {
  width: 100%;
  height: 1180px;
  display: block;
  border: 0;
  background: #fff;
}

.box-compare__note {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
}

.box-contact {
  background: #fff;
}

.box-contact__frame {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 8% 100%, rgba(93, 166, 63, 0.2), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(8, 119, 232, 0.22), transparent 30%),
    linear-gradient(125deg, #05233d, #083c62 58%, #0756a4);
  padding: clamp(48px, 6vw, 78px);
  box-shadow: 0 28px 80px rgba(5, 35, 61, 0.2);
}

.box-contact__frame h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.box-contact__frame > div > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.box-contact__actions {
  display: grid;
  gap: 12px;
}

.button--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.box-footer {
  background: var(--ivory);
}

.telecom-family-home {
  color: #fff !important;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .box-hero__grid {
    grid-template-columns: 1fr 420px;
    gap: 54px;
  }

  .box-hero__copy h1 {
    font-size: clamp(3.7rem, 7vw, 5.8rem);
  }

  .box-compare__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .box-hero__grid {
    grid-template-columns: 1fr;
    padding-block: 72px 48px;
  }

  .box-hub {
    max-width: 660px;
  }

  .box-choice__grid {
    grid-template-columns: 1fr;
  }

  .box-choice-card {
    min-height: 540px;
  }

  .box-contact__frame {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .box-contact__actions {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .box-brand__logo {
    width: 132px;
  }

  .box-hero__copy h1 {
    font-size: clamp(3.15rem, 14vw, 4.4rem);
  }

  .box-hero__lead {
    font-size: 1rem;
  }

  .box-hero__proof {
    display: grid;
  }

  .box-hub {
    border-radius: 30px;
    padding: 22px;
  }

  .box-hub__logo {
    width: 230px;
  }

  .box-hub__route {
    grid-template-columns: 48px 1fr 18px;
    padding: 16px;
  }

  .box-hub__route-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .box-hero__promise {
    grid-template-columns: auto 1fr;
    padding-block: 22px;
  }

  .box-hero__promise > a {
    grid-column: 2;
  }

  .box-choice-card {
    min-height: auto;
    border-radius: 30px;
    padding: 28px 22px;
  }

  .box-choice-card__head {
    min-height: 100px;
  }

  .box-choice-card__logo--energy,
  .box-choice-card__logo--telecom {
    width: 150px;
  }

  .box-choice-card h3 {
    margin-top: 32px;
  }

  .box-compare__steps {
    grid-template-columns: 1fr;
  }

  .box-compare__steps article {
    min-height: auto;
  }

  .box-compare__frame {
    border-radius: 26px;
  }

  .box-compare__bar {
    grid-template-columns: auto 1fr;
    padding-inline: 16px;
  }

  .box-compare__bar strong {
    display: none;
  }

  .box-compare__iframe {
    height: 1450px;
  }

  .box-contact__frame {
    border-radius: 30px;
    padding: 38px 24px;
  }

  .box-contact__actions,
  .box-contact__actions .button {
    width: 100%;
  }

  .box-brand__logo--footer {
    width: 185px;
  }
}

/* BoxServicios: prioridad a consultoría energética y comparador */
.box-hero--energy-first {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 164, 160, 0.18), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(8, 119, 232, 0.11), transparent 29%),
    linear-gradient(118deg, #fffdf8 0%, #f0faf6 52%, #f1f8ff 100%);
}

.box-hero--energy-first .box-hero__copy h1 strong {
  background: linear-gradient(90deg, var(--teal-700), var(--box-green-dark) 58%, var(--box-blue));
  background-clip: text;
  color: transparent;
}

.box-hub--energy-first .box-hub__logo {
  width: min(250px, 68%);
  margin-bottom: 2px;
}

.box-hub__route--featured {
  min-height: 132px;
  border-color: rgba(0, 164, 160, 0.23);
  background:
    radial-gradient(circle at 92% 10%, rgba(93, 166, 63, 0.14), transparent 31%),
    linear-gradient(135deg, rgba(240, 252, 247, 0.98), rgba(255, 255, 255, 0.96));
}

.box-hub__route--featured strong {
  font-size: 1.28rem;
}

.box-hub__route--compare:hover {
  border-color: rgba(0, 164, 160, 0.35);
}

.box-hub__route--compare .box-hub__route-icon {
  background: linear-gradient(145deg, #e8fbf5, #e9f5ff);
  color: var(--teal-700);
}

.box-hub__route--compare > svg {
  color: var(--teal-700);
}

.box-hub__route--compact {
  min-height: 96px;
}

.box-compare__copy > p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.box-choice__grid--energy-first {
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  align-items: stretch;
}

.box-choice-card--featured {
  min-height: 640px;
}

.box-choice-card--secondary {
  min-height: 640px;
  padding-inline: clamp(30px, 3vw, 42px);
}

.box-choice-card--secondary .box-choice-card__head {
  min-height: 102px;
  flex-direction: column;
}

.box-choice-card--secondary .box-choice-card__logo--telecom {
  width: min(220px, 100%);
}

.box-choice-card--secondary h3 {
  margin-top: 34px;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
}

.box-choice-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.box-choice-card__actions .button {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .box-choice__grid--energy-first {
    grid-template-columns: 1fr;
  }

  .box-choice-card--featured,
  .box-choice-card--secondary {
    min-height: 540px;
  }

  .box-choice-card--secondary .box-choice-card__head {
    min-height: 118px;
    flex-direction: row;
  }
}

@media (max-width: 720px) {
  .box-hub__route--featured,
  .box-hub__route--compact {
    min-height: auto;
  }

  .box-choice-card--featured,
  .box-choice-card--secondary {
    min-height: auto;
  }

  .box-choice-card--secondary .box-choice-card__head {
    min-height: 100px;
    flex-direction: column;
  }

  .box-choice-card__actions,
  .box-choice-card__actions .button {
    width: 100%;
  }
}
