:root {
  --primary: #01003f;
  --primary-deep: #050325;
  --secondary: #00c6a2;
  --secondary-strong: #00e3bc;
  --secondary-soft: rgba(0, 198, 162, 0.18);
  --surface: #f3f7fb;
  --surface-strong: #ffffff;
  --surface-dark: #09103f;
  --text: #16203a;
  --text-soft: #5d6785;
  --border: rgba(1, 0, 63, 0.08);
  --shadow-lg: 0 30px 80px rgba(4, 12, 37, 0.16);
  --shadow-md: 0 18px 40px rgba(4, 12, 37, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --section-space: clamp(14px, 2.2vw, 30px);
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef4f9 0%, #ffffff 18%, #f3f7fb 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.solution-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(1, 0, 63, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(1, 0, 63, 0.94);
  box-shadow: 0 16px 40px rgba(1, 0, 63, 0.2);
}

.header-inner {
  width: 100%;
  padding: 0 var(--section-space);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}

.brand-copy em {
  color: var(--secondary);
  font-style: normal;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-item > a:hover,
.nav-item:hover > a,
.nav-item > a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 310px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(5, 9, 46, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-strong));
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 198, 162, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.page-hero {
  position: relative;
  padding: 26px 0 18px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(1, 0, 63, 0.96), rgba(6, 24, 87, 0.94) 60%, rgba(0, 198, 162, 0.24)),
    url("/img/fondo-8.png") center/cover no-repeat;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  z-index: -1;
}

body.solution-internet .page-hero::before {
  background:
    linear-gradient(90deg, rgba(1, 0, 63, 0.88) 0 30%, rgba(1, 0, 63, 0.62) 46%, rgba(1, 0, 63, 0.18) 64%, rgba(1, 0, 63, 0) 100%),
    url("/img/InternetDedicado.webp") right center/cover no-repeat;
}

body.solution-sat .page-hero::before {
  background:
    linear-gradient(140deg, rgba(1, 0, 63, 0.84), rgba(10, 35, 98, 0.56) 60%, rgba(0, 198, 162, 0.1)),
    url("/img/companias-telefonicas-blog-internet-internet-satelital.jpg") center/cover no-repeat;
}

body.solution-4g .page-hero::before {
  background:
    linear-gradient(125deg, rgba(1, 0, 63, 0.82), rgba(8, 28, 92, 0.48) 56%, rgba(0, 198, 162, 0.08)),
    url("/img/LTE-que-es-como-funciona-y-diferencias-con-4G-y-5G-2.jpg") center/cover no-repeat;
  background-size: cover;
}

body.solution-security .page-hero::before {
  background:
    linear-gradient(135deg, rgba(1, 0, 63, 0.84), rgba(5, 20, 68, 0.54) 58%, rgba(0, 198, 162, 0.08)),
    url("/img/cyber-security-article.jpg") center/cover no-repeat;
}

body.solution-ce .page-hero::before {
  background:
    linear-gradient(130deg, rgba(1, 0, 63, 0.82), rgba(9, 34, 82, 0.5) 60%, rgba(0, 198, 162, 0.08)),
    url("/img/cableado-estructurado-portada.jpg") center/cover no-repeat;
  background-size: cover;
}

body.solution-voice .page-hero::before {
  background:
    linear-gradient(135deg, rgba(1, 0, 63, 0.82), rgba(13, 31, 88, 0.5) 56%, rgba(0, 198, 162, 0.1)),
    url("/img/redvoz.jpg") center/cover no-repeat;
}

body.solution-jr .page-hero::before {
  background:
    linear-gradient(140deg, rgba(1, 0, 63, 0.82), rgba(6, 24, 87, 0.5) 52%, rgba(0, 198, 162, 0.08)),
    url("/img/j-r-technology.webp") center/cover no-repeat;
}

.page-grid,
.section,
.footer-inner {
  width: 100%;
}

.page-grid {
  padding: 0 var(--section-space);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 520px);
  gap: 26px;
  align-items: center;
  min-height: 400px;
}

.page-copy {
  padding: 24px 0 18px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(1, 0, 63, 0.45);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
}

.page-copy h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.45rem, 4.2vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.page-copy h1 span,
.section-heading span,
.accent-text {
  color: var(--secondary);
}

.page-copy p {
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.9);
  max-width: 62ch;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-stat {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-media {
  align-self: end;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-media img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.section {
  padding: 16px var(--section-space);
}

.section-shell {
  border-radius: 34px;
  overflow: hidden;
}

.section-tint {
  background:
    linear-gradient(180deg, rgba(0, 198, 162, 0.06), rgba(255, 255, 255, 0.92)),
    #ffffff;
  border-top: 1px solid rgba(1, 0, 63, 0.05);
  border-bottom: 1px solid rgba(1, 0, 63, 0.05);
}

body.solution-jr #soluciones-jr.section-tint {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.92)),
    url("/img/jr-technology-b.webp") center/cover no-repeat;
}

body.solution-jr #soluciones-jr.section-tint::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 42%, rgba(255, 255, 255, 0.5) 62%, rgba(255, 255, 255, 0.14) 100%);
  pointer-events: none;
  z-index: 0;
}

body.solution-jr #soluciones-jr.section-tint > * {
  position: relative;
  z-index: 1;
}

.section-dark {
  background:
    linear-gradient(145deg, rgba(1, 0, 63, 0.98), rgba(7, 25, 84, 0.98));
  color: #ffffff;
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .section-heading span,
.section-dark .card h3,
.section-dark .card p,
.section-dark .list-panel h3,
.section-dark .list-panel p,
.section-dark .list-panel li,
.section-dark .info-panel h3,
.section-dark .info-panel p,
.section-dark .info-panel li,
.section-dark .metric-card strong,
.section-dark .metric-card p {
  color: #ffffff;
}

.section-dark .section-heading p,
.section-dark .card p,
.section-dark .list-panel p,
.section-dark .list-panel li,
.section-dark .info-panel p,
.section-dark .info-panel li,
.section-dark .metric-card p {
  color: rgba(255, 255, 255, 0.76);
}

.section-dark .card,
.section-dark .list-panel,
.section-dark .info-panel,
.section-dark .metric-card,
.section-dark .case-card,
.section-dark .table-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .bullets li::before {
  box-shadow: 0 0 0 8px rgba(0, 198, 162, 0.22);
}

.section-split {
  position: relative;
}

.section-split::before {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  background: linear-gradient(180deg, rgba(1, 0, 63, 0.04), rgba(0, 198, 162, 0.1));
  z-index: 0;
}

.section-split > * {
  position: relative;
  z-index: 1;
}

.section-plain {
  background: transparent;
}

.section-band {
  background:
    linear-gradient(90deg, rgba(1, 0, 63, 0.03), rgba(0, 198, 162, 0.08), rgba(1, 0, 63, 0.03));
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.section-heading span {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  color: var(--primary);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  max-width: 70ch;
  color: var(--text-soft);
  line-height: 1.8;
}

.band-grid,
.two-col,
.three-col,
.four-col,
.metric-grid,
.contact-grid,
.logo-grid,
.product-grid {
  display: grid;
  gap: 20px;
}

.band-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
}

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

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.contact-grid {
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
}

.logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card,
.metric-card,
.contact-card,
.info-panel,
.list-panel,
.product-card,
.table-card,
.feature-banner,
.footer-card,
.case-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(1, 0, 63, 0.08);
  box-shadow: var(--shadow-md);
}

.card,
.metric-card,
.contact-card,
.info-panel,
.list-panel,
.table-card,
.feature-banner,
.case-card {
  padding: 22px;
}

.card:hover,
.metric-card:hover,
.contact-card:hover,
.product-card:hover,
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(4, 12, 37, 0.14);
}

.card,
.metric-card,
.contact-card,
.product-card,
.case-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-icon {
  width: 56px;
  height: 56px;
  padding: 14px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(1, 0, 63, 0.08), rgba(0, 198, 162, 0.18));
}

.card h3,
.metric-card h3,
.contact-card h3,
.product-card h3,
.case-card h3,
.info-panel h3,
.list-panel h3,
.table-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.12rem;
}

.card p,
.metric-card p,
.contact-card p,
.product-card p,
.case-card p,
.info-panel p,
.list-panel p,
.table-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  color: var(--primary);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.feature-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 20px;
  align-items: center;
  background: linear-gradient(145deg, var(--surface-dark), #071954);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.feature-banner h3,
.feature-banner p,
.feature-banner strong,
.feature-banner li {
  color: #ffffff;
}

.feature-banner p,
.feature-banner li {
  color: rgba(255, 255, 255, 0.78);
}

.feature-banner img {
  width: 100%;
  border-radius: 22px;
}

.bullets,
.number-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.bullets li,
.number-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.75;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 8px rgba(0, 198, 162, 0.14);
}

.number-list {
  counter-reset: item;
}

.number-list li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
}

.primary-button,
.secondary-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-button,
.form-submit {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-strong));
  color: var(--primary);
  box-shadow: 0 18px 38px rgba(0, 198, 162, 0.24);
}

.secondary-button {
  border: 1px solid rgba(1, 0, 63, 0.14);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
}

.lead-form {
  display: grid;
  gap: 14px;
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f7fafc;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(0, 198, 162, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 198, 162, 0.12);
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
  grid-column: 1 / -1;
}

.split-media {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(1, 0, 63, 0.08);
  box-shadow: var(--shadow-md);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
}

.logo-row img,
.logo-grid img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: saturate(0) brightness(0.35);
  opacity: 0.88;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(1, 0, 63, 0.02), rgba(0, 198, 162, 0.08));
}

.product-copy {
  padding: 18px;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
}

.offset-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.stacked-cards {
  display: grid;
  gap: 18px;
}

.stacked-cards .card:nth-child(2),
.stacked-cards .metric-card:nth-child(2) {
  transform: translateX(18px);
}

.stacked-cards .card:nth-child(3),
.stacked-cards .metric-card:nth-child(3) {
  transform: translateX(36px);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar {
  padding: 22px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(1, 0, 63, 0.08);
  box-shadow: var(--shadow-md);
}

.pillar strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.06rem;
}

.pillar p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

body.solution-internet .pillar {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(0,198,162,0.08));
}

body.solution-sat .card,
body.solution-sat .list-panel,
body.solution-sat .info-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(236, 247, 252, 0.95));
}

body.solution-4g .product-card img {
  background:
    linear-gradient(180deg, rgba(1, 0, 63, 0.03), rgba(0, 198, 162, 0.12));
}

body.solution-security .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(240, 247, 245, 0.96));
}

body.solution-ce .product-card {
  border-radius: 18px;
}

body.solution-voice .card,
body.solution-voice .list-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(238, 250, 247, 0.92));
}

body.solution-jr .feature-banner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

body.solution-jr .slider-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(236, 248, 246, 0.96));
}

body.solution-jr #soluciones-jr .section-heading {
  max-width: 62ch;
}

body.solution-jr #soluciones-jr .section-heading h2 {
  max-width: 16ch;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

body.solution-jr #soluciones-jr .section-heading p {
  max-width: 58ch;
}

.solutions-slider {
  position: relative;
  display: grid;
  gap: 22px;
}

.slider-frame {
  overflow: hidden;
  border-radius: 30px;
}

.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
}

.slider-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(1, 0, 63, 0.08);
  box-shadow: var(--shadow-lg);
}

.slider-media {
  position: relative;
  background: linear-gradient(160deg, rgba(1, 0, 63, 0.9), rgba(0, 198, 162, 0.5));
}

.slider-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 0, 63, 0.12), rgba(1, 0, 63, 0.38));
}

.slider-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(0, 198, 162, 0.12);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-copy h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.slider-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
  font-size: 1rem;
  max-width: 48ch;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(1, 0, 63, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.slider-arrow:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: #ffffff;
}

.slider-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(1, 0, 63, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot.is-active {
  background: var(--secondary);
  transform: scale(1.15);
}

.table-card th,
.table-card td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(1, 0, 63, 0.08);
  text-align: left;
  color: var(--text-soft);
}

.table-card th {
  color: var(--primary);
  font-weight: 800;
}

.table-card tr:last-child td {
  border-bottom: 0;
}

.contact-map {
  overflow: hidden;
  border-radius: 30px;
  min-height: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(1, 0, 63, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

footer {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(1, 0, 63, 0.98), rgba(5, 18, 73, 0.98));
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 36px var(--section-space);
}

.footer-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 70px;
  height: auto;
}

.footer-card p,
.footer-card li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  margin: 0;
}

.footer-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(0, 198, 162, 0.18);
}

.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-note {
  width: 100%;
  padding: 0 var(--section-space) 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #26d366, #1faa52);
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.34);
  z-index: 1000;
}

.sr-fade {
  visibility: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(243, 247, 251, 0.98));
  pointer-events: none;
}

.page-grid {
  align-items: center;
}

.hero-media {
  position: relative;
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 198, 162, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 44px rgba(1, 0, 63, 0.18);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-shell,
.section-plain {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-shell::before,
.section-plain::before {
  display: none;
}

.section-shell > *,
.section-plain > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 76ch;
}

.section-heading h2 {
  max-width: 20ch;
}

.three-col,
.two-col,
.four-col,
.product-grid,
.logo-grid,
.metric-grid,
.band-grid,
.pillars {
  position: relative;
  z-index: 1;
}

.card,
.list-panel,
.info-panel,
.product-card,
.metric-card,
.case-card,
.table-card {
  backdrop-filter: blur(8px);
}

:is(body.solution-internet, body.solution-security, body.solution-sat) .page-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 460px);
}

:is(body.solution-internet, body.solution-security, body.solution-sat) .hero-media {
  transform: none;
}

:is(body.solution-internet, body.solution-security, body.solution-sat) .hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

:is(body.solution-internet, body.solution-security, body.solution-sat) .card,
:is(body.solution-internet, body.solution-security, body.solution-sat) .metric-card,
:is(body.solution-internet, body.solution-security, body.solution-sat) .info-panel,
:is(body.solution-internet, body.solution-security, body.solution-sat) .list-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.95));
}

:is(body.solution-internet, body.solution-security, body.solution-sat) .three-col .card {
  border-top: 3px solid rgba(0, 198, 162, 0.3);
}

:is(body.solution-internet, body.solution-security, body.solution-sat) .metric-card strong {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
}

body.solution-security .metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.solution-sat .feature-banner,
body.solution-internet .feature-banner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

body.solution-sat .feature-banner img,
body.solution-internet .feature-banner img {
  max-width: 290px;
  justify-self: center;
}

:is(body.solution-4g, body.solution-ce) .page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
}

:is(body.solution-4g, body.solution-ce) .hero-media {
  transform: none;
}

:is(body.solution-4g, body.solution-ce) .section-heading h2 {
  max-width: 22ch;
}

:is(body.solution-4g, body.solution-ce) .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

:is(body.solution-4g, body.solution-ce) .product-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  overflow: hidden;
  border-radius: 22px;
}

:is(body.solution-4g, body.solution-ce) .product-card img {
  width: 130px;
  height: 130px;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 auto;
  background: transparent;
}

:is(body.solution-4g, body.solution-ce) .product-copy {
  padding: 24px 24px 24px 8px;
}

body.solution-4g .product-card,
body.solution-ce .product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 251, 0.95));
}

body.solution-4g .logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.solution-voice .page-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 430px);
}

body.solution-voice .hero-media {
  transform: none;
}

body.solution-voice #plataformas .two-col {
  counter-reset: voicePlatform;
  gap: 18px;
}

body.solution-voice #plataformas .card {
  position: relative;
  padding-left: 86px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 247, 0.95));
}

body.solution-voice #plataformas .card::before {
  counter-increment: voicePlatform;
  content: counter(voicePlatform, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 24px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 198, 162, 0.16), rgba(0, 198, 162, 0.28));
  color: var(--primary);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

body.solution-voice .case-card {
  background:
    radial-gradient(circle at top right, rgba(0, 198, 162, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.96));
}


@media (max-width: 1080px) {
  .page-grid,
  .band-grid,
  .two-col,
  .three-col,
  .four-col,
  .metric-grid,
  .offset-grid,
  .pillars,
  .contact-grid,
  .product-grid,
  .feature-banner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stacked-cards .card:nth-child(2),
  .stacked-cards .metric-card:nth-child(2),
  .stacked-cards .card:nth-child(3),
  .stacked-cards .metric-card:nth-child(3) {
    transform: none;
  }

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

  .slider-card {
    grid-template-columns: 1fr;
  }

  .slider-media {
    min-height: 280px;
  }

  :is(body.solution-internet, body.solution-security, body.solution-sat) .hero-stats,
  :is(body.solution-internet, body.solution-security, body.solution-sat) .metric-grid,
  :is(body.solution-4g, body.solution-ce) .product-grid,
  :is(body.solution-internet, body.solution-sat) .feature-banner,
  body.solution-4g .logo-grid {
    grid-template-columns: 1fr;
  }

  :is(body.solution-4g, body.solution-ce) .product-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  :is(body.solution-4g, body.solution-ce) .product-copy {
    padding: 0 24px 24px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-toggle img {
    width: 24px;
    height: 24px;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    padding: 18px;
    border-radius: 24px;
    background: rgba(3, 8, 44, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item,
  .nav-item > a,
  .header-cta {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .nav-item:hover .nav-dropdown {
    display: grid;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .page-grid,
  .section,
  .footer-inner {
    width: 100%;
  }

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

  .page-copy,
  .hero-media,
  .card,
  .metric-card,
  .contact-card,
  .info-panel,
  .list-panel,
  .table-card,
  .case-card,
  .feature-banner,
  .footer-card {
    padding: 24px;
  }

  .lead-grid,
  .logo-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .section-shell {
    border-radius: 24px;
  }

  :is(body.solution-4g, body.solution-ce) .product-card img {
    width: 100%;
    height: auto;
    max-width: 180px;
    padding-top: 24px;
  }

  body.solution-voice #plataformas .card {
    padding-left: 24px;
    padding-top: 82px;
  }

  body.solution-voice #plataformas .card::before {
    left: 24px;
    top: 22px;
  }

  .section-split::before {
    inset: 58% 0 0 0;
  }

  .contact-map iframe {
    min-height: 360px;
  }

  .slider-copy {
    padding: 24px;
  }

  .slider-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .slider-dots {
    justify-content: center;
  }
}
