:root {
  --bg-0: #060b14;
  --bg-1: #0a1220;
  --bg-2: #0f2440;
  --text: #edf4ff;
  --muted: rgba(237, 244, 255, 0.74);
  --accent: #8eb8ff;
  --accent-2: #c9dbff;
  --page-bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --ink: #10213b;
  --ink-soft: #5e6c82;
  --line-soft: #d9e3f1;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 20px 60px rgba(17, 37, 66, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--page-bg);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(16, 33, 59, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 59, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 92%);
}

/* =========================
   NAV
========================= */

.navbar-glass {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1030;
  width: min(calc(100% - 32px), 1240px);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(14, 22, 36, 0.78), rgba(8, 13, 23, 0.62));
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  border-radius: 999px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
  padding: 0.52rem 0.75rem;
}

.nav-wrap {
  padding: 0;
}

.navbar-brand {
  color: var(--text) !important;
  padding: 0;
}

.brand-logo {
  display: block;
  height: 38px;
  width: auto;
  max-width: min(285px, 54vw);
  object-fit: contain;
}

.nav-link {
  color: rgba(237, 244, 255, 0.80) !important;
  font-size: 0.84rem;
  font-weight: 650;
  padding: 0.68rem 0.9rem !important;
  border-radius: 999px;
  transition: 0.28s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  color: #ffffff;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle i {
  font-size: 1.55rem;
}

/* =========================
   BUTTONS
========================= */

.btn-premium,
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-premium {
  border: 1px solid rgba(174, 204, 255, 0.30);
  background:
    linear-gradient(135deg, rgba(142, 184, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.09);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-premium:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(84, 125, 209, 0.28);
}

.btn-glass {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
}

.btn-glass:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.btn-nav {
  min-height: 42px;
  padding: 0.7rem 1.05rem;
  font-size: 0.84rem;
  white-space: nowrap;
}

/* =========================
   HERO
   Card del largo del nav, abajo/centrado y título reducido
========================= */

.hero-bg {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px 0 30px;
  background:
    linear-gradient(90deg,
      rgba(5, 13, 26, 0.26),
      rgba(8, 18, 34, 0.10),
      rgba(6, 14, 27, 0.26)),
    url("corporativo.png");
  color: var(--text);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(142, 184, 255, 0.10), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(6, 13, 25, 0.10), rgba(7, 17, 31, 0.34));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: min(calc(100% - 32px), 1240px);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.hero-glass-card {
  width: 100%;
  max-width: 100%;
  margin: 23rem auto 0;
  padding: 1rem clamp(1.2rem, 3vw, 2.3rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.62), rgba(8, 17, 31, 0.40)),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.eyebrow,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.eyebrow {
  margin: 0 auto 0.75rem;
  padding: 0.5rem 0.82rem;
  color: rgba(237, 244, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
}

.hero-glass-card h1 {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.9vw, 2.65rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #c9dbff 40%, #8eb8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-glass-card .lead {
  max-width: 100%;
  margin: 0 auto;
  color: rgba(237, 244, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.05rem;
}

.hero-metrics {
  display: none;
}

.metric-pill {
  text-align: left;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.metric-pill strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.metric-pill span {
  display: block;
  color: rgba(237, 244, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
  position: relative;
  z-index: 1;
  padding: 92px 0;
}

.section-light {
  background: #ffffff;
  color: var(--ink);
}

.section-soft {
  background: linear-gradient(180deg, #edf4fb 0%, #f8fbff 100%);
  color: var(--ink);
}

.section-title {
  max-width: 880px;
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.section-title.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  max-width: 780px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.9;
}

.mini-tag {
  margin-bottom: 1rem;
  padding: 0.44rem 0.76rem;
  color: var(--ink);
  border: 1px solid rgba(16, 33, 59, 0.08);
  background: rgba(16, 33, 59, 0.04);
}

/* =========================
   ABOUT
========================= */

.about-premium-card {
  height: 100%;
  padding: 1.2rem;
  border-radius: 32px;
  border: 1px solid rgba(16, 33, 59, 0.10);
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
}

.about-card-header {
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d1d35 0%, #18375f 100%);
}

.about-card-header span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 244, 255, 0.62);
}

.about-card-header strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.about-point {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.82);
}

.about-point i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: #2858a8;
  background: #edf4ff;
}

.about-point h3,
.mvv-card h3,
.sector-solution-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.about-point p,
.mvv-card p,
.sector-solution-card li,
.service-card p,
.content-card p,
.process-step p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.9rem;
}

.mvv-wrap {
  margin-top: 86px;
}

.mvv-heading {
  max-width: 880px;
  margin: 0 auto 2.6rem;
}

/* =========================
   MISIÓN, VISIÓN Y VALORES
========================= */

.mvv-card,
.mvv-card.featured {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 315px;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 28px;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.13), transparent 32%),
    #ffffff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 54px rgba(17, 37, 66, 0.08);
  transition: 0.28s ease;
}

.mvv-card h3,
.mvv-card.featured h3 {
  color: var(--ink);
}

.mvv-card p,
.mvv-card.featured p {
  color: var(--ink-soft);
}

.mvv-card .mvv-icon,
.mvv-card.featured .mvv-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  border-radius: 20px;
  font-size: 1.35rem;
  color: #2858a8;
  background: linear-gradient(135deg, #edf4ff, #f8fbff);
  border: 1px solid #dce7f5;
}

.mvv-card:hover,
.mvv-card.featured:hover {
  color: #ffffff;
  transform: translateY(-6px);
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #0d1d35 0%, #153259 100%);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 28px 70px rgba(17, 37, 66, 0.18);
}

.mvv-card:hover h3,
.mvv-card.featured:hover h3 {
  color: #ffffff;
}

.mvv-card:hover p,
.mvv-card.featured:hover p {
  color: rgba(237, 244, 255, 0.78);
}

.mvv-card:hover .mvv-icon,
.mvv-card.featured:hover .mvv-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.62rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.values-list i {
  margin-top: 0.12rem;
  color: #2858a8;
  flex: 0 0 auto;
}

.mvv-card:hover .values-list li,
.mvv-card.featured:hover .values-list li {
  color: rgba(237, 244, 255, 0.82);
}

.mvv-card:hover .values-list i,
.mvv-card.featured:hover .values-list i {
  color: #c9dbff;
}

/* =========================
   SERVICES BY SECTOR
========================= */

.sector-services-section {
  overflow: hidden;
}

.sector-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.sector-solution-card {
  min-height: 100%;
  padding: 1.25rem;
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(17, 37, 66, 0.08);
  transition: 0.28s ease;
}

.sector-solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 116, 216, 0.22);
  box-shadow: 0 28px 70px rgba(17, 37, 66, 0.13);
}

.sector-solution-wide {
  grid-column: span 4;
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.18), transparent 30%),
    #ffffff;
}

.sector-card-head {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  margin-bottom: 1rem;
}

.sector-card-head span {
  display: block;
  margin-bottom: 0.15rem;
  color: #2858a8;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sector-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #2858a8;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #edf4ff, #f8fbff);
  border: 1px solid #dce7f5;
}

.sector-solution-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-solution-card li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
}

.sector-solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2858a8;
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  background: #f8fbff;
  border: 1px solid #dce7f5;
}

/* =========================
   CARDS / PROCESS / TECH
========================= */

.service-card,
.content-card {
  height: 100%;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(17, 37, 66, 0.08);
  transition: 0.28s ease;
}

.service-card:hover,
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(17, 37, 66, 0.13);
}

.icon-badge {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #2858a8;
  font-size: 1.18rem;
  background: linear-gradient(135deg, #edf4ff, #f8fbff);
  border: 1px solid #dce7f5;
}

.service-card h5,
.content-card h5 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.process-card,
.feature-card {
  padding: 2rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
}

.process-step:not(:last-child) {
  border-bottom: 1px solid rgba(16, 33, 59, 0.075);
}

.process-step .num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #244f97;
  background: #eef4fd;
  border: 1px solid #dbe6f5;
  font-weight: 900;
}

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

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid #dce7f5;
  background: #f8fbff;
  color: var(--ink);
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.tech-item i {
  color: #2858a8;
}



/* =========================
   FAQ / PREGUNTAS FRECUENTES
========================= */

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(142, 184, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(115deg, transparent 0%, transparent 42%, rgba(142, 184, 255, 0.10) 42%, transparent 58%),
    radial-gradient(circle at 85% 18%, rgba(16, 33, 59, 0.08), transparent 24%);
}

.faq-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.20), transparent 34%),
    #ffffff;
  box-shadow: 0 22px 65px rgba(17, 37, 66, 0.10);
}

.faq-intro .section-title {
  margin-bottom: 1rem;
}

.faq-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.15rem;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #0d1d35 0%, #153259 100%);
  box-shadow: 0 20px 50px rgba(17, 37, 66, 0.18);
}

.faq-highlight-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-highlight strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.98rem;
  font-weight: 900;
}

.faq-highlight span {
  display: block;
  color: rgba(237, 244, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.65;
}

.faq-accordion {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(17, 37, 66, 0.08);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
  transition-delay: var(--delay, 0ms);
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 116, 216, 0.24);
  box-shadow: 0 26px 68px rgba(17, 37, 66, 0.12);
}

.faq-item.is-open {
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.13), transparent 34%),
    #ffffff;
}

.faq-question {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-question span {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.faq-question i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #2858a8;
  background: #edf4ff;
  border: 1px solid #dce7f5;
  transition:
    transform 0.32s ease,
    color 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
  color: #ffffff;
  background: linear-gradient(135deg, #0d1d35, #153259);
  border-color: rgba(255, 255, 255, 0.10);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(.22, .61, .36, 1);
}

.faq-answer>div {
  padding: 0 1.35rem 1.35rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.faq-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.faq-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 575.98px) {

  .faq-intro,
  .faq-highlight,
  .faq-item {
    border-radius: 22px;
  }

  .faq-intro {
    padding: 1.2rem;
  }

  .faq-question {
    min-height: auto;
    padding: 1rem;
  }

  .faq-question span {
    font-size: 0.94rem;
  }

  .faq-question i {
    width: 38px;
    height: 38px;
  }

  .faq-answer>div {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .faq-highlight {
    flex-direction: column;
  }
}

/* =========================
   CONTACT
========================= */

.contact-section {
  padding-bottom: 72px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 2rem;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #0d1d35 0%, #153259 100%);
  box-shadow: 0 28px 74px rgba(10, 28, 52, 0.22);
}

.cta-band .section-title,
.cta-band .mini-tag,
.cta-band .mini-tag i {
  color: #ffffff;
}

.cta-band .section-subtitle {
  color: rgba(255, 255, 255, 0.78) !important;
}

.cta-band .mini-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(17, 37, 66, 0.08);
  transition: 0.28s ease;
}

.contact-info-card:hover {
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(17, 37, 66, 0.12);
}

.contact-info-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #2858a8;
  font-size: 1.25rem;
  background: #edf4ff;
  flex: 0 0 auto;
}

.contact-info-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-info-card strong {
  display: block;
  font-size: 0.98rem;
  word-break: break-word;
}

/* Redes sociales */
.social-contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: -0.6rem 0 2rem;
}

.social-contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 68px;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.13), transparent 34%),
    #ffffff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 18px 50px rgba(17, 37, 66, 0.08);
  transition: 0.28s ease;
}

.social-contact-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #2858a8;
  background: #edf4ff;
  font-size: 1.2rem;
}

.social-contact-card:hover {
  color: #ffffff;
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #0d1d35 0%, #153259 100%);
  box-shadow: 0 26px 64px rgba(17, 37, 66, 0.16);
}

.social-contact-card:hover i {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  padding: 1.3rem;
  border-radius: 34px;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at top left, rgba(142, 184, 255, 0.16), transparent 32%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(17, 37, 66, 0.10);
}

.form-intro {
  padding: 1.5rem;
  border-radius: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(142, 184, 255, 0.25), transparent 30%),
    linear-gradient(135deg, #0d1d35 0%, #153259 100%);
}

.form-intro .mini-tag {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.form-intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.form-intro p {
  margin: 0;
  color: rgba(237, 244, 255, 0.78);
  line-height: 1.8;
}

.premium-form {
  padding: 1.2rem;
}

.premium-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  border: 1px solid #dce7f5;
  border-radius: 16px;
  outline: none;
  padding: 0.92rem 1rem;
  background: #f8fbff;
  color: var(--ink);
  font: inherit;
  transition: 0.25s ease;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: rgba(58, 116, 216, 0.44);
  box-shadow: 0 0 0 4px rgba(58, 116, 216, 0.10);
  background: #ffffff;
}

.premium-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  min-height: 54px;
  background: linear-gradient(135deg, #0d1d35, #153259);
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-align: center;
}

/* =========================
   FOOTER / BACK TO TOP
========================= */

.footer {
  padding: 24px 0 38px;
  color: rgba(237, 244, 255, 0.55);
  background: #08111f;
  font-size: 0.92rem;
}

.divider {
  height: 1px;
  margin: 1.1rem 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.footer-copy {
  text-align: center;
  color: rgba(237, 244, 255, 0.62);
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(174, 204, 255, 0.22);
  background: rgba(10, 18, 32, 0.72);
  color: var(--text);
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 1040;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  color: #fff;
  transform: translateY(-2px);
}

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

@media (max-width: 1199.98px) {
  .sector-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-solution-wide {
    grid-column: span 2;
  }
}

@media (max-width: 991.98px) {
  .navbar-glass {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
    padding: 0.55rem;
  }

  .brand-logo {
    height: 34px;
    max-width: min(250px, 56vw);
  }

  .nav-toggle {
    display: grid;
  }

  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 15, 28, 0.92);
  }

  .navbar-nav {
    align-items: stretch !important;
    margin-bottom: 0.9rem;
  }

  .nav-link {
    padding: 0.82rem 0.95rem !important;
    border-radius: 14px;
  }

  .btn-nav {
    width: 100%;
  }

  .hero-bg {
    min-height: 78vh;
    align-items: flex-end;
    padding: 104px 0 34px;
    background:
      linear-gradient(180deg, rgba(5, 13, 26, 0.16), rgba(7, 17, 31, 0.42)),
      url("corporativo.png") center 30% / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 20px);
  }

  .hero-glass-card {
    border-radius: 24px;
    margin: 0 auto 0;
  }

  .hero-glass-card h1 {
    font-size: clamp(1.85rem, 7vw, 2.75rem);
    line-height: 1.02;
  }

  .hero-glass-card .lead {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .about-grid,
  .contact-info-row,
  .contact-form-wrap,
  .social-contact-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .mvv-wrap {
    margin-top: 64px;
  }

  .mvv-card,
  .mvv-card.featured {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .navbar-glass {
    border-radius: 20px;
  }

  .brand-logo {
    height: 30px;
    max-width: min(215px, 58vw);
  }

  .hero-bg {
    min-height: 74vh;
    padding: 96px 0 28px;
  }

  .hero-glass-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .eyebrow,
  .mini-tag {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero-glass-card h1 {
    font-size: clamp(1.7rem, 8.6vw, 2.35rem);
    letter-spacing: -0.05em;
  }

  .hero-glass-card .lead,
  .section-subtitle {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .sector-solutions-grid {
    grid-template-columns: 1fr;
  }

  .sector-solution-wide {
    grid-column: span 1;
  }

  .mvv-card,
  .sector-solution-card,
  .service-card,
  .content-card,
  .about-premium-card,
  .contact-form-wrap,
  .cta-band {
    border-radius: 22px;
  }

  .process-card,
  .feature-card,
  .premium-form,
  .form-intro {
    padding: 1.15rem;
  }

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

  .contact-info-card,
  .social-contact-card {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer {
    padding-bottom: 34px;
    font-size: 0.85rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}