/* 1. Variables */
:root {
  --color-primary: #00A7B5;
  --color-primary-dark: #008895;
  --color-petrol: #263E5F;
  --color-gold: #DBB361;
  --color-text: #0B1624;
  --color-body: #263238;
  --color-muted: #6B7280;
  --color-bg: #F7F8FA;
  --color-soft: #EEF7F8;
  --color-white: #FFFFFF;
  --color-border: #DFE6EA;
  --shadow-soft: 0 18px 50px rgba(11, 22, 36, .08);
  --shadow-medium: 0 24px 70px rgba(11, 22, 36, .13);
  --shadow-card: 0 10px 28px rgba(38, 62, 95, .09);
  --radius-card: 8px;
  --radius-panel: 16px;
  --header-height: 86px;
}

/* 2. Base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  color: var(--color-body);
  background: var(--color-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

a:hover {
  color: var(--color-petrol);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: 3.6rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: .65rem;
}

p {
  margin-bottom: 1rem;
}

::selection {
  color: var(--color-white);
  background: var(--color-primary);
}

/* 3. Utilidades */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  padding: .75rem 1rem;
  color: var(--color-white);
  background: var(--color-petrol);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.section-offset {
  padding-top: calc(var(--header-height) + 3rem);
}

.section-block {
  position: relative;
  padding: 6.5rem 0;
}

.section-soft {
  background: var(--color-bg);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--color-primary-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 3px;
}

.eyebrow-light {
  color: var(--color-white);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: .78rem 1.35rem;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  --bs-btn-color: var(--color-white);
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-color: var(--color-white);
  --bs-btn-hover-bg: var(--color-primary-dark);
  --bs-btn-hover-border-color: var(--color-primary-dark);
  --bs-btn-active-bg: var(--color-primary-dark);
  --bs-btn-active-border-color: var(--color-primary-dark);
  box-shadow: 0 10px 24px rgba(0, 167, 181, .22);
}

.btn-outline-primary {
  --bs-btn-color: var(--color-petrol);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-color: var(--color-white);
  --bs-btn-hover-bg: var(--color-primary);
  --bs-btn-hover-border-color: var(--color-primary);
  --bs-btn-active-bg: var(--color-primary);
  --bs-btn-active-border-color: var(--color-primary);
  background: rgba(255, 255, 255, .72);
}

.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.nav-link:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 .2rem rgba(0, 167, 181, .2);
}

.hover-lift {
  will-change: transform;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-soft {
  animation: floatSoft 7s ease-in-out infinite;
}

/* 4. Navbar */
.site-header {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, background 0.4s ease, border-color 0.4s ease;
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  background: rgba(15, 31, 61, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-header.is-visible .nav-link {
  color: rgba(255, 255, 255, 0.85);
  padding: .5rem 1rem;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.site-header.is-visible .nav-link:hover {
  color: var(--gl-white);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-visible .nav-link.active {
  color: var(--gl-teal-light);
  background: rgba(0, 168, 181, 0.18);
}

.site-header.is-visible .nav-link-cta {
  color: var(--gl-navy-deep);
  background: var(--gl-white);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-header.is-visible .nav-link-cta:hover,
.site-header.is-visible .nav-link-cta.active {
  background: var(--gl-teal-light);
  color: var(--gl-navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 168, 181, 0.3);
}

.site-header.is-visible .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header.is-visible .navbar-toggler-icon {
  filter: invert(1);
}

.navbar {
  min-height: var(--header-height);
  padding: .85rem 0;
}

.navbar-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
  opacity: 0.85;
}

.navbar-nav {
  gap: .25rem;
}

.nav-link {
  color: var(--color-petrol);
  font-weight: 700;
  padding: .7rem .9rem;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-dark);
  background: var(--color-soft);
}

.nav-link-cta {
  color: var(--color-white);
  background: var(--color-petrol);
}

.nav-link-cta:hover,
.nav-link-cta.active {
  color: var(--color-white);
  background: var(--color-primary);
}

.navbar-toggler {
  border-color: rgba(38, 62, 95, .18);
  border-radius: 8px;
}

/* 5. Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 5.75rem;
  background:
    linear-gradient(135deg, rgba(0, 167, 181, .10) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, var(--color-soft) 0%, var(--color-white) 84%);
}

.hero-copy-col {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
}

.hero-copy {
  max-width: 660px;
  color: var(--color-muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 2rem 0 1.5rem;
}

.hero-meta,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero-meta {
  color: var(--color-petrol);
  font-weight: 700;
}

.hero-meta span {
  padding: .45rem .75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.hero-stats {
  margin-top: 1.4rem;
}

.hero-stats div {
  min-width: 112px;
  padding: .95rem 1rem;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(38, 62, 95, .10);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 24px rgba(11, 22, 36, .06);
}

.hero-stats strong {
  display: block;
  color: var(--color-petrol);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stats small {
  display: block;
  color: var(--color-muted);
  margin-top: .35rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-image-card {
  position: relative;
  z-index: 2;
  width: min(430px, 82vw);
  padding: 1rem 1rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(238, 247, 248, .92));
  border: 1px solid rgba(38, 62, 95, .10);
  border-radius: 24px 24px 8px 8px;
  box-shadow: var(--shadow-medium);
}

.hero-image-card img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: bottom center;
}

.hero-shape,
.visual-ring {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  width: 240px;
  height: 80px;
  border-radius: 999px;
  opacity: .32;
  transform: rotate(-22deg);
}

.hero-shape-one {
  right: 4%;
  top: 120px;
  background: var(--color-primary);
}

.hero-shape-two {
  left: 4%;
  bottom: 120px;
  width: 180px;
  background: var(--color-gold);
  animation-delay: -2s;
}

.visual-ring {
  border: 2px solid rgba(0, 167, 181, .22);
  border-radius: 999px;
}

.visual-ring-one {
  width: 360px;
  height: 360px;
  right: 7%;
  top: 6%;
}

.visual-ring-two {
  width: 230px;
  height: 230px;
  left: 7%;
  bottom: 10%;
  border-color: rgba(219, 179, 97, .42);
  animation-delay: -3s;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .7rem;
  align-items: center;
  min-width: 190px;
  padding: .85rem .95rem;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(38, 62, 95, .10);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.floating-card strong,
.floating-card small {
  grid-column: 2;
}

.floating-card strong {
  color: var(--color-text);
  line-height: 1.1;
}

.floating-card small {
  color: var(--color-muted);
}

.floating-card-one {
  left: 0;
  top: 18%;
}

.floating-card-two {
  right: 0;
  top: 46%;
}

.floating-card-three {
  left: 8%;
  bottom: 8%;
}

.floating-dot {
  grid-row: 1 / span 2;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
}

.floating-dot-gold {
  background: var(--color-gold);
}

.floating-dot-petrol {
  background: var(--color-petrol);
}

/* 5b. Hero v2 */
:root {
  --gl-teal:        #00A8B5;
  --gl-teal-light:  #4DC5CF;
  --gl-teal-glow:   rgba(0, 168, 181, 0.5);
  --gl-navy:        #203860;
  --gl-navy-deep:   #0F1F3D;
  --gl-navy-darker: #081428;
  --gl-gold:        #D8B060;
  --gl-gold-light:  #E8C885;
  --gl-white:       #FFFFFF;
  --gl-white-soft:  rgba(255, 255, 255, 0.85);
  --gl-white-mute:  rgba(255, 255, 255, 0.6);
  --gl-white-fade:  rgba(255, 255, 255, 0.12);
  --gl-white-glass: rgba(255, 255, 255, 0.06);
}

@keyframes hero-v2-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloatOrganic {
  0%   { transform: translate3d(0,    0px,  0) scale(1.000)  rotate(0deg); }
  25%  { transform: translate3d(0,  -3px,  0) scale(1.002)  rotate(0.12deg); }
  50%  { transform: translate3d(0,  -5px,  0) scale(1.003)  rotate(-0.15deg); }
  75%  { transform: translate3d(0,  -2px,  0) scale(1.001)  rotate(0.10deg); }
  100% { transform: translate3d(0,    0px,  0) scale(1.000)  rotate(0deg); }
}

@keyframes hero-v2-scrollDot {
  0%   { transform: translate(-50%, 0);   opacity: 1; }
  50%  { transform: translate(-50%, 8px); opacity: 0.3; }
  100% { transform: translate(-50%, 0);   opacity: 1; }
}

@keyframes hero-v2-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.85); }
}

.hero-v2 {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'Inter Tight', Arial, sans-serif;
}

.hero-v2__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(1.1) brightness(0.85);
  z-index: 0;
}

.hero-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 0%, var(--gl-navy-darker) 100%),
    linear-gradient(180deg, var(--gl-navy-darker) 0%, rgba(8,20,40,0.4) 30%, rgba(8,20,40,0.4) 70%, var(--gl-navy-darker) 100%),
    linear-gradient(135deg, rgba(0,168,181,0.15) 0%, transparent 50%, rgba(216,176,96,0.1) 100%);
}

.hero-v2__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .07;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

.hero-v2__content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 140px 80px;
}

.hero-v2__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 16px;
  background: var(--gl-white-glass);
  border: 1px solid var(--gl-white-fade);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  margin-bottom: 40px;
  animation: hero-v2-fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.hero-v2__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--gl-teal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gl-teal-glow);
  animation: hero-v2-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-v2__eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gl-white-soft);
  font-family: 'Inter Tight', Arial, sans-serif;
}

.hero-v2__title {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  font-size: clamp(52px, 7.5vw, 110px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 900px;
  will-change: transform;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation:
    hero-v2-fadeUp    1s  cubic-bezier(0.16,1,0.3,1) 0.25s both,
    heroFloatOrganic  7s  ease-in-out                2s    infinite;
}

.hero-v2__title-line1 {
  display: block;
  font-weight: 700;
  font-style: normal;
  color: var(--gl-white);
}

.hero-v2__title-line2 {
  display: block;
  white-space: nowrap;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  padding-bottom: 0.2em;
  background: linear-gradient(115deg, var(--gl-teal-light) 0%, var(--gl-teal) 30%, var(--gl-gold-light) 70%, var(--gl-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.05em;
}

/* ── Word rotator (hero headline) ───────────────────────── */
.word-rotator {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  line-height: inherit;
  overflow: visible;
}

.word-rotator__sizer {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
}

.word-rotator__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  background: linear-gradient(115deg, var(--gl-teal-light) 0%, var(--gl-teal) 30%, var(--gl-gold-light) 70%, var(--gl-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0;
  transform: translateY(110%);
  will-change: transform, opacity;
}

.word-rotator__item.is-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.word-rotator__item.is-exit {
  animation: wordExitUp 0.38s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.word-rotator__item.is-entering {
  animation: wordEnterUp 0.38s cubic-bezier(0.4, 0, 0.6, 1) 0.04s forwards;
}

@keyframes wordExitUp {
  from { transform: translateY(0);     opacity: 1; }
  to   { transform: translateY(-110%); opacity: 0; }
}

@keyframes wordEnterUp {
  from { transform: translateY(110%);  opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.hero-v2__subtitle {
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 20px rgba(15, 31, 61, 0.6);
  max-width: 580px;
  margin-bottom: 40px;
  animation: hero-v2-fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

.hero-v2__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: hero-v2-fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}

.hero-v2__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--gl-white);
  color: var(--gl-navy-deep);
  border-radius: 999px;
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 32px var(--gl-teal-glow), 0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease, color .22s ease;
}

.hero-v2__cta-primary svg {
  transition: transform .22s ease;
  flex-shrink: 0;
}

.hero-v2__cta-primary:hover {
  background: var(--gl-teal-light);
  color: var(--gl-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gl-teal-glow), 0 0 0 1px rgba(255,255,255,0.15) inset;
}

.hero-v2__cta-primary:hover svg {
  transform: translate(2px, -2px);
}

.hero-v2__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  border: 1px solid var(--gl-white-fade);
  color: var(--gl-white);
  border-radius: 999px;
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.hero-v2__cta-secondary:hover {
  background: var(--gl-white-glass);
  border-color: rgba(255,255,255,0.25);
  color: var(--gl-white);
}

.hero-v2__trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: 13px;
  margin-bottom: 64px;
  animation: hero-v2-fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}

.hero-v2__trust strong {
  font-weight: 600;
  color: var(--gl-white);
  text-shadow: 0 1px 12px rgba(15, 31, 61, 0.5);
}

.hero-v2__trust svg {
  flex-shrink: 0;
}

.hero-v2__cards-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.hero-v2__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.hero-v2__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 140px;
  padding: 20px 18px;
  background: var(--gl-white-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gl-white-fade);
  border-radius: 20px;
  will-change: translate, scale;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: translate 0.35s cubic-bezier(0.16,1,0.3,1),
              scale 0.35s cubic-bezier(0.16,1,0.3,1),
              border-color 0.35s cubic-bezier(0.16,1,0.3,1),
              background 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s cubic-bezier(0.16,1,0.3,1),
              opacity 0.35s cubic-bezier(0.16,1,0.3,1);
  opacity: 0;
}

.hero-v2__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,168,181,0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-v2__card:hover::before {
  opacity: 1;
}

.hero-v2__miniviz {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero-v2__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: hero-v2-fadeUp 1s cubic-bezier(0.16,1,0.3,1) 1.5s both;
  transition: opacity 0.4s ease;
}

.hero-v2__scroll-hint-text {
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl-white-mute);
}

.hero-v2__scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1px solid var(--gl-white-fade);
  border-radius: 12px;
  position: relative;
}

.hero-v2__scroll-dot {
  width: 3px;
  height: 6px;
  background: var(--gl-teal-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: hero-v2-scrollDot 2s ease-in-out infinite;
}

.hero-v2__card:hover {
  translate: 0 -8px;
  scale: 1.02;
  border-color: rgba(0,168,181,0.45);
  background: linear-gradient(180deg, rgba(0,168,181,0.18) 0%, rgba(0,168,181,0.06) 100%);
  box-shadow: 0 16px 50px rgba(0,168,181,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.hero-v2__card--featured {
  justify-content: center;
}

.hero-v2__card-stat {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--gl-white);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 144;
}

.hero-v2__card-chart {
  display: block;
  width: 140px;
  height: 32px;
  margin-top: 0;
}

.hero-v2__card-label {
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gl-white-soft);
  line-height: 1.3;
  text-align: center;
}

@keyframes cardFloatOrganic {
  0%   { translate: 0   0px; rotate: 0deg; }
  33%  { translate: 0  -4px; rotate: 0.10deg; }
  66%  { translate: 0  -2px; rotate: -0.08deg; }
  100% { translate: 0   0px; rotate: 0deg; }
}

@keyframes hero-v2-glowPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(0,168,181,0.2), inset 0 1px 0 rgba(255,255,255,0.1); }
  50%       { box-shadow: 0 16px 50px rgba(0,168,181,0.4), inset 0 1px 0 rgba(255,255,255,0.15); }
}

.hero-v2__card-icon {
  color: var(--gl-teal-light);
  filter: drop-shadow(0 0 6px rgba(0,168,181,0.4));
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1), filter 0.35s ease;
}

.hero-v2__card:hover .hero-v2__card-icon {
  color: var(--gl-gold-light);
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(232,200,133,0.5));
}

.hero-v2__card-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--gl-teal-light);
  letter-spacing: 0.02em;
  margin: 6px 0 8px;
}

.hero-v2__cards--revealed .hero-v2__card--featured {
  animation:
    hero-v2-fadeUp     0.8s  cubic-bezier(0.16,1,0.3,1) 0s     both,
    cardFloatOrganic   5s    ease-in-out                0.8s   infinite;
}

.hero-v2__cards--revealed .hero-v2__card:nth-child(2) {
  animation:
    hero-v2-fadeUp     0.8s  cubic-bezier(0.16,1,0.3,1) 0.08s  both,
    cardFloatOrganic   5.5s  ease-in-out                0.88s  infinite;
}

.hero-v2__cards--revealed .hero-v2__card:nth-child(3) {
  animation:
    hero-v2-fadeUp     0.8s  cubic-bezier(0.16,1,0.3,1) 0.16s  both,
    cardFloatOrganic   4.8s  ease-in-out                0.96s  infinite;
}

.hero-v2__cards--revealed .hero-v2__card:nth-child(4) {
  animation:
    hero-v2-fadeUp     0.8s  cubic-bezier(0.16,1,0.3,1) 0.24s  both,
    cardFloatOrganic   5.2s  ease-in-out                1.04s  infinite;
}

.hero-v2__cards--revealed .hero-v2__card:nth-child(5) {
  animation:
    hero-v2-fadeUp     0.8s  cubic-bezier(0.16,1,0.3,1) 0.32s  both,
    cardFloatOrganic   4.6s  ease-in-out                1.12s  infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2__card { opacity: 1 !important; }
}

@media (max-width: 900px) {
  .hero-v2__content {
    padding: 100px 24px 60px;
  }

  .hero-v2__title {
    font-size: clamp(40px, 9vw, 72px);
  }

  .hero-v2__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-v2__card--featured {
    grid-column: 1 / -1;
  }

  .hero-v2__cards-wrap {
    padding: 0 24px 60px;
  }
}

@media (max-width: 600px) {
  .hero-v2__content {
    padding: 80px 16px 40px;
  }

  .hero-v2__title {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hero-v2__subtitle {
    font-size: 15px;
  }

  .hero-v2__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-v2__cta-primary,
  .hero-v2__cta-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .hero-v2__card--featured {
    grid-column: 1 / -1;
  }

  .hero-v2__cards-wrap {
    padding: 0 16px 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2__video {
    display: none;
  }

  .hero-v2__overlay {
    background: linear-gradient(180deg, var(--gl-navy-darker) 0%, var(--gl-navy) 100%);
  }

  .hero-v2__eyebrow,
  .hero-v2__title,
  .hero-v2__subtitle,
  .hero-v2__ctas,
  .hero-v2__trust,
  .hero-v2__scroll-hint,
  .hero-v2__card,
  .hero-v2__card--featured,
  .hero-v2__card:nth-child(2),
  .hero-v2__card:nth-child(3),
  .hero-v2__card:nth-child(4),
  .hero-v2__card:nth-child(5) {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-v2__scroll-hint {
    display: none;
  }

  .hero-v2__scroll-dot {
    animation: none;
  }

  .hero-v2__eyebrow-dot {
    animation: none;
  }

  .site-header {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}

/* 5c. Contact cards v2 */
.trust-strip-v2 {
  position: relative;
  z-index: 2;
  padding: 48px 0 32px;
  background: var(--color-bg);
}

.contact-cards-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card-v2 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}

.contact-card-v2:hover {
  transform: translateY(-4px);
  border-color: var(--gl-teal);
  background: linear-gradient(180deg, rgba(0,168,181,0.06) 0%, rgba(0,168,181,0.02) 100%);
  box-shadow: 0 16px 40px rgba(0,168,181,0.15);
  color: var(--color-text);
}

.contact-card-v2__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.contact-card-v2:hover .contact-card-v2__icon {
  transform: scale(1.05);
}

.contact-card-v2__icon--teal {
  background: var(--gl-teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,168,181,0.3);
}

.contact-card-v2__icon--gold {
  background: var(--gl-gold);
  color: var(--gl-navy-deep);
  box-shadow: 0 4px 12px rgba(216,176,96,0.3);
}

.contact-card-v2__icon--navy {
  background: var(--gl-navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(32,56,96,0.3);
}

.contact-card-v2__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.contact-card-v2__label {
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-v2__value {
  font-family: 'Inter Tight', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-v2__arrow {
  color: var(--color-muted);
  opacity: 0;
  pointer-events: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-card-v2:hover .contact-card-v2__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .contact-cards-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-v2:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .contact-cards-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-card-v2:last-child {
    grid-column: auto;
  }
}

/* 6. Secciones */
.trust-strip {
  margin-top: -2.8rem;
  position: relative;
  z-index: 2;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: .65rem 1.25rem;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(11, 22, 36, .12),
    0 1px 0 rgba(255, 255, 255, .9) inset;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .75rem 1.75rem;
  color: var(--color-petrol);
  text-decoration: none;
  border-radius: 14px;
  transition: background .22s ease, color .22s ease;
}

.trust-item:hover {
  background: rgba(0, 167, 181, .07);
  color: var(--color-primary-dark);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary), #17BBC7);
  border-radius: 12px;
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 167, 181, .30);
  transition: transform .22s ease, box-shadow .22s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 26px rgba(0, 167, 181, .38);
}

.trust-icon-gold {
  background: linear-gradient(135deg, var(--color-gold), #C99A3E);
  box-shadow: 0 8px 20px rgba(219, 179, 97, .32);
}

.trust-item:hover .trust-icon-gold {
  box-shadow: 0 12px 26px rgba(219, 179, 97, .42);
}

.trust-icon-petrol {
  background: linear-gradient(135deg, var(--color-petrol), #1E3050);
  box-shadow: 0 8px 20px rgba(38, 62, 95, .28);
}

.trust-item:hover .trust-icon-petrol {
  box-shadow: 0 12px 26px rgba(38, 62, 95, .36);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.trust-label {
  color: var(--color-muted);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  line-height: 1;
}

.trust-value {
  color: var(--color-petrol);
  font-weight: 700;
  font-size: .94rem;
  line-height: 1.2;
}

.trust-sep {
  width: 1px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(38, 62, 95, .14) 30%,
    rgba(38, 62, 95, .14) 70%,
    transparent 100%
  );
}

/* 7. Cards / servicios */
.service-card,
.course-card,
.process-grid article {
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 112px;
  height: 112px;
  background: var(--color-soft);
  border-radius: 28px;
  transform: rotate(18deg);
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  color: var(--color-white);
  background: var(--color-petrol);
  border-radius: 14px;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

#servicios .col-md-6:nth-child(odd) .service-icon {
  background: var(--color-primary);
}

#servicios .col-md-6:nth-child(3n) .service-icon {
  color: var(--color-text);
  background: var(--color-gold);
}

.service-card p,
.course-card li,
.process-grid p {
  color: var(--color-muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .45rem;
  color: var(--color-petrol);
  font-weight: 800;
}

.service-link::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-gold);
  transition: width .2s ease;
}

.service-link:hover::after {
  width: 34px;
}

/* 8. Cursos — buscador y filtros inline */
.catalog-search-wrap {
  margin: 2rem 0 2.5rem;
}

.catalog-search-bar {
  position: relative;
  max-width: 540px;
  margin: 0 auto 1.25rem;
}

.catalog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-muted);
  pointer-events: none;
  transition: color .2s ease;
}

.catalog-search-bar:focus-within .catalog-search-icon {
  color: var(--color-primary);
}

.catalog-search-input {
  width: 100%;
  padding: .85rem 1rem .85rem 2.8rem;
  font-size: .97rem;
  font-family: inherit;
  background: var(--color-white);
  border: 1.5px solid rgba(38, 62, 95, .14);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(38, 62, 95, .06);
  color: var(--color-text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
}

.catalog-search-input::placeholder { color: var(--color-muted); }

.catalog-search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 167, 181, .12), 0 2px 10px rgba(38, 62, 95, .06);
}

.course-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin: 0;
}

.course-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: .38rem .9rem;
  font-size: .82rem;
  font-family: inherit;
  font-weight: 700;
  color: var(--color-petrol);
  background: var(--color-soft);
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.course-filter-btn:hover {
  background: rgba(0, 167, 181, .1);
  color: var(--color-primary);
  border-color: rgba(0, 167, 181, .3);
}

.course-filter-btn.is-active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 167, 181, .28);
}

.course-area {
  display: inline-flex;
  align-items: center;
  padding: .4rem .75rem;
  color: var(--color-petrol);
  background: var(--color-soft);
  border: 1px solid rgba(0, 167, 181, .18);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
}

/* Tarjeta de curso oculta durante filtrado */
.course-col--hidden {
  display: none !important;
}

.course-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(38, 62, 95, .06);
}

.course-card .course-area,
.course-card h3,
.course-card ul {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.course-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-soft);
}

.course-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(11, 22, 36, .32));
}

.course-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.course-card:hover .course-visual img {
  transform: scale(1.04);
}

.course-visual-gold {
  background: #F5E8C6;
}

.course-visual-petrol {
  background: #E9EEF5;
}

.course-card .course-area {
  align-self: flex-start;
  margin-top: 1.25rem;
}

.course-card h3 {
  margin-top: 1rem;
  min-height: 3.9rem;
}

.course-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0 0 1.3rem;
  margin-top: auto;
  list-style: none;
}

.course-card li {
  padding: .35rem .6rem;
  background: var(--color-bg);
  border-radius: 999px;
  font-size: .92rem;
}

/* 9. Proyectos integrales */
.project-section {
  background:
    linear-gradient(90deg, rgba(238, 247, 248, .8) 0%, rgba(255, 255, 255, 0) 42%),
    var(--color-white);
}

.project-image {
  overflow: hidden;
  margin: 2rem 0 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.project-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.process-grid article {
  padding: 1.35rem;
  border-left: 4px solid var(--color-primary);
}

.process-grid article:nth-child(2n) {
  border-left-color: var(--color-gold);
}

.process-wide {
  grid-column: 1 / -1;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: .85rem;
  color: var(--color-gold);
  font-weight: 800;
}

/* 10. Empresas */
.corporate-block {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .82);
  background:
    linear-gradient(120deg, rgba(0, 167, 181, .18) 0%, rgba(38, 62, 95, 0) 44%),
    var(--color-petrol);
}

.corporate-block::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -70px;
  width: 310px;
  height: 110px;
  background: rgba(219, 179, 97, .25);
  border-radius: 999px;
  transform: rotate(-16deg);
}

.corporate-block .container {
  position: relative;
  z-index: 3;
}

.corporate-block h2 {
  color: var(--color-white);
}

.corporate-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.corporate-metrics span {
  padding: .8rem 1rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-card);
}

.enterprise-panel {
  padding: 1rem;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-panel);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.enterprise-panel-header {
  display: flex;
  gap: .45rem;
  padding: .35rem .4rem 1rem;
}

.enterprise-panel-header span {
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
}

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

.feature-list li {
  padding: 1rem 1.1rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-card);
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: .6rem;
  height: .6rem;
  margin-right: .7rem;
  background: var(--color-gold);
  border-radius: 50%;
}

/* 11. Aula virtual */
.aula-section {
  background: var(--color-white);
}

.virtual-classroom {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--color-soft);
  border: 1px solid rgba(0, 167, 181, .18);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
}

.virtual-classroom p {
  max-width: 760px;
  color: var(--color-muted);
  margin-bottom: 0;
}

.classroom-dashboard {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(38, 62, 95, .10);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 32px rgba(11, 22, 36, .08);
}

.dashboard-topbar {
  display: flex;
  gap: .35rem;
  padding: .8rem;
  background: var(--color-petrol);
}

.dashboard-topbar span {
  width: 9px;
  height: 9px;
  background: var(--color-white);
  border-radius: 50%;
  opacity: .7;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  padding: 1rem;
}

.dashboard-progress {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: var(--color-petrol);
  background: conic-gradient(var(--color-primary) 72%, var(--color-border) 0);
  border-radius: 50%;
}

.dashboard-progress strong,
.dashboard-progress span {
  grid-area: 1 / 1;
}

.dashboard-progress span {
  margin-top: 2.15rem;
  color: var(--color-muted);
  font-size: .72rem;
}

.dashboard-list {
  display: grid;
  align-content: center;
  gap: .7rem;
}

.dashboard-list span {
  display: block;
  height: 12px;
  background: var(--color-bg);
  border-radius: 999px;
}

.dashboard-list span:nth-child(2) {
  width: 72%;
}

.dashboard-list span:nth-child(3) {
  width: 52%;
  background: rgba(219, 179, 97, .45);
}

/* 12. Sponsors */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.sponsor-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 1rem;
  color: var(--color-petrol);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  font-weight: 800;
  text-align: center;
}

.sponsor-placeholder {
  position: relative;
}

.sponsor-placeholder::before {
  content: "";
  position: absolute;
  top: .7rem;
  left: .7rem;
  width: 26px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 999px;
}

/* 13. Formulario */
.contact-section {
  background:
    linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.contact-benefits {
  padding: 1.25rem;
  margin-top: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.contact-benefits h3 {
  font-size: 1rem;
}

.contact-benefits ul {
  display: grid;
  gap: .55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-benefits li {
  color: var(--color-muted);
}

.contact-benefits li::before {
  content: "";
  display: inline-block;
  width: .55rem;
  height: .55rem;
  margin-right: .55rem;
  background: var(--color-primary);
  border-radius: 50%;
}

.contact-list {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}

.contact-list p {
  padding-left: 1rem;
  border-left: 3px solid var(--color-gold);
}

.contact-form {
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-medium);
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: var(--color-border);
  border-radius: 8px;
}

textarea.form-control {
  min-height: 140px;
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-status {
  display: none;
  padding: .9rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-card);
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  color: #0F5132;
  background: #D1E7DD;
  border: 1px solid #A3CFBB;
}

.form-status.is-error {
  display: block;
  color: #842029;
  background: #F8D7DA;
  border: 1px solid #F1AEB5;
}

/* 14. Footer */
.site-footer {
  color: rgba(255, 255, 255, .78);
  background: var(--color-petrol);
  padding: 4rem 0 1.5rem;
}

.site-footer img {
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-bottom__brand {
  margin-bottom: 0;
  filter: brightness(1.6) saturate(1.1) drop-shadow(0 0 10px rgba(0,168,181,0.35));
  opacity: 0.9;
  flex-shrink: 0;
}

.site-footer h2 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: .45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .82);
}

.site-footer a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .92rem;
}

/* 15. Legal */
.legal-main {
  padding: calc(var(--header-height) + 3rem) 0 5rem;
  background: var(--color-bg);
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

.legal-card h1 {
  font-size: 2.4rem;
}

.legal-card h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.legal-card p,
.legal-card li {
  color: var(--color-muted);
}

.legal-note {
  padding: 1rem;
  color: var(--color-petrol);
  background: var(--color-soft);
  border-left: 4px solid var(--color-gold);
  border-radius: 6px;
}

/* 16. Animaciones */
@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-12px) rotate(-5deg);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 17. Responsive */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }

  .virtual-classroom {
    grid-template-columns: 1fr minmax(240px, 330px);
  }

  .virtual-classroom .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 78px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .navbar-collapse {
    padding: 1rem 0 .35rem;
  }

  .navbar-nav {
    align-items: stretch;
  }

  .hero {
    padding-bottom: 4rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .floating-card-one {
    left: 2%;
  }

  .floating-card-two {
    right: 2%;
  }

  .virtual-classroom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767.98px) {
  .section-block {
    padding: 4.5rem 0;
  }

  .section-offset {
    padding-top: calc(var(--header-height) + 2rem);
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .section-heading {
    text-align: left;
  }

  .hero-visual {
    min-height: 470px;
    margin-top: 1rem;
  }

  .hero-image-card {
    width: min(360px, 78vw);
  }

  .floating-card {
    min-width: 160px;
    padding: .72rem .8rem;
  }

  .floating-card-one {
    top: 8%;
  }

  .floating-card-two {
    top: auto;
    bottom: 22%;
  }

  .floating-card-three {
    left: 0;
  }

  .course-filters {
    justify-content: flex-start;
  }

  .catalog-search-bar {
    max-width: 100%;
  }

  .process-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .virtual-classroom,
  .legal-card {
    padding: 1.25rem;
  }

  .trust-strip-inner {
    justify-content: flex-start;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    width: 170px;
  }

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

  .hero-meta span,
  .trust-strip-inner span {
    width: 100%;
  }

  .hero-stats div {
    flex: 1 1 100%;
  }

  .hero-shape,
  .visual-ring {
    display: none;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: .75rem;
  }

  .hero-visual {
    display: block;
    min-height: auto;
  }

  .hero-image-card {
    width: 100%;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }
}

/* 18. Premium refinement */
:root {
  --font-premium: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-premium: 0 34px 90px rgba(11, 22, 36, .14);
  --shadow-premium-soft: 0 18px 48px rgba(11, 22, 36, .08);
  --border-subtle: rgba(38, 62, 95, .10);
}

body {
  font-family: var(--font-premium);
  color: var(--color-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 167, 181, .07), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(219, 179, 97, .10), transparent 28rem),
    var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 5.25rem;
  font-weight: 780;
  line-height: .98;
}

h2 {
  font-size: 3.15rem;
  font-weight: 760;
  line-height: 1.03;
}

h3 {
  font-weight: 720;
}

.section-block {
  padding: 8rem 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 4rem;
}

.section-heading p,
.hero-copy {
  font-size: 1.18rem;
  line-height: 1.68;
}

.eyebrow {
  color: var(--color-primary-dark);
  font-size: .78rem;
  letter-spacing: .08em;
}

.site-header {
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(38, 62, 95, .06);
}

.nav-link {
  font-size: .95rem;
}

.btn {
  min-height: 48px;
  padding: .85rem 1.45rem;
}

.btn-primary {
  background-image: linear-gradient(135deg, var(--color-primary), #17BBC7);
  box-shadow: 0 16px 34px rgba(0, 167, 181, .25);
}

.hero {
  min-height: 780px;
  padding-bottom: 7rem;
  background:
    radial-gradient(circle at 78% 36%, rgba(0, 167, 181, .18), transparent 24rem),
    radial-gradient(circle at 86% 70%, rgba(219, 179, 97, .18), transparent 20rem),
    linear-gradient(180deg, #FBFDFD 0%, var(--color-soft) 54%, var(--color-white) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(38, 62, 95, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 62, 95, .025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 72%);
}

.hero-copy-motion {
  animation: heroTextIn .9s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-visual-motion {
  animation: heroVisualIn 1s cubic-bezier(.2, .8, .2, 1) .08s both;
}

.hero-visual {
  min-height: 620px;
  align-items: center;
}

.hero-image-card {
  width: min(620px, 92vw);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 7%;
  height: 36%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(0, 167, 181, .24), rgba(0, 167, 181, 0) 68%);
  filter: blur(18px);
}

.hero-image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(11, 22, 36, .18));
}

.hero-image-glow {
  position: absolute;
  inset: 8% 5% 9%;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .95), transparent 42%),
    radial-gradient(circle at 48% 50%, rgba(0, 167, 181, .22), transparent 58%);
  border-radius: 50%;
  filter: blur(2px);
}

.hero-image-base {
  position: absolute;
  left: 17%;
  right: 12%;
  bottom: 5%;
  z-index: 1;
  height: 52px;
  background: linear-gradient(90deg, rgba(38, 62, 95, 0), rgba(38, 62, 95, .18), rgba(38, 62, 95, 0));
  border-radius: 50%;
  filter: blur(9px);
}

.floating-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .64);
  box-shadow: 0 22px 50px rgba(11, 22, 36, .12);
  backdrop-filter: blur(18px);
  animation: premiumCardIn .78s cubic-bezier(.2, .8, .2, 1) both;
}

.floating-card-two {
  animation-delay: .14s;
}

.floating-card-three {
  animation-delay: .24s;
}

.floating-card-one {
  left: -2%;
  top: 17%;
}

.floating-card-two {
  right: -2%;
  top: 48%;
}

.floating-card-three {
  left: 8%;
  bottom: 7%;
}

.hero-stats div,
.service-card,
.course-card,
.process-grid article,
.contact-form,
.contact-benefits,
.virtual-classroom,
.featured-program {
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-premium-soft);
}

.service-card,
.course-card,
.contact-form,
.virtual-classroom,
.featured-program {
  border-radius: 22px;
}

.service-card {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 248, 250, .82)),
    var(--color-white);
}

.service-card::after {
  width: 150px;
  height: 150px;
  opacity: .72;
  filter: blur(.2px);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.premium-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(0, 167, 181, .10), transparent 30rem),
    linear-gradient(180deg, var(--color-bg), #FFFFFF);
}

.featured-program {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
  gap: 0;
  overflow: hidden;
  margin: -1.5rem 0 3rem;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px);
}

.featured-program-media {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}

.featured-program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .65s cubic-bezier(.2, .8, .2, 1);
}

.featured-program:hover .featured-program-media img {
  transform: scale(1.045);
}

.featured-program-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
}

.featured-program-content h3 {
  font-size: 2.75rem;
  line-height: 1.04;
}

.featured-program-content p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.featured-program + .catalog-search-wrap {
  margin-top: 2rem;
}

.course-card {
  border-radius: 20px;
}

.course-visual {
  aspect-ratio: 16 / 10;
}

.project-section {
  background:
    radial-gradient(circle at 18% 32%, rgba(0, 167, 181, .09), transparent 25rem),
    linear-gradient(180deg, #FFFFFF, #F9FBFC);
}

.project-image {
  border-radius: 24px;
  box-shadow: var(--shadow-premium-soft);
}

.process-grid article {
  border-left: 0;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 248, 250, .9)),
    var(--color-white);
}

.process-grid span {
  color: var(--color-primary-dark);
}

.corporate-block {
  min-height: 720px;
  display: flex;
  align-items: center;
  margin-top: -120px;
  padding-top: calc(6.5rem + 120px);
  z-index: 2;
  clip-path: url(#empresas-clip);
  background: #07111F;
}

.corporate-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .94) 0%, rgba(7, 17, 31, .82) 42%, rgba(7, 17, 31, .55) 100%),
    url("../img/fondos/servicios-empresas.jpg") center / cover no-repeat;
  transform: scale(var(--corporate-scale, 1.04)) translate3d(0, var(--corporate-y, 0px), 0);
  transform-origin: center;
  transition: transform .18s linear;
  will-change: transform;
}

.corporate-block::after {
  background: radial-gradient(circle, rgba(0, 167, 181, .30), transparent 68%);
  filter: blur(20px);
}

.enterprise-panel {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
}

.feature-list li {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.virtual-classroom {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 167, 181, .12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(238, 247, 248, .90));
}

.classroom-dashboard {
  border-radius: 18px;
  box-shadow: 0 28px 64px rgba(11, 22, 36, .12);
}

.contact-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(219, 179, 97, .11), transparent 26rem),
    radial-gradient(circle at 90% 30%, rgba(0, 167, 181, .11), transparent 28rem),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
}

.form-control,
.form-select {
  min-height: 52px;
  background-color: rgba(255, 255, 255, .92);
}

.site-footer {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 167, 181, .16), transparent 24rem),
    #111D2D;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes premiumCardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: auto;
  }

  .featured-program {
    grid-template-columns: 1fr;
  }

  .featured-program-media {
    min-height: 320px;
  }

  .corporate-block {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-heading p,
  .hero-copy {
    font-size: 1.04rem;
  }

  .section-block {
    padding: 5rem 0;
  }

  .hero-image-card img {
    max-height: 420px;
  }

  .featured-program-content {
    padding: 1.5rem;
  }

  .featured-program-content h3 {
    font-size: 1.8rem;
  }
}

/* 19. Hero fine tuning */
.hero {
  min-height: 780px;
  padding-bottom: 5.8rem;
}

.hero .container {
  max-width: 1440px;
}

.hero-title {
  max-width: 790px;
  margin-bottom: 1.15rem;
  font-size: 4.45rem;
  line-height: 1.03;
}

.hero-title-line {
  display: block;
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero-title-highlight::after,
.hero-title-highlight::before {
  display: none;
}

.hero-copy {
  max-width: 690px;
}

.hero-actions {
  margin-top: 1.75rem;
  margin-bottom: 1.1rem;
}

.hero-visual-motion {
  min-width: 0;
}

.hero-visual {
  min-height: 640px;
  justify-content: flex-start;
  transform: translateX(12px) translateY(-34px);
}

.hero-image-card {
  width: 820px;
  max-width: none;
  margin-left: -30px;
  overflow: visible;
  transform: translateY(-28px);
}

.hero-image-card img {
  width: 142%;
  max-width: none;
  max-height: 760px;
  transform: translateX(-23%) translateY(0);
  transform-origin: bottom center;
}

.hero-image-card::before {
  left: 15%;
  right: 0;
  bottom: -3%;
  height: 24%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, .96), rgba(255, 255, 255, .36) 42%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse at center, rgba(0, 167, 181, .18), rgba(0, 167, 181, 0) 78%);
  filter: blur(17px);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  left: 13%;
  right: -1%;
  bottom: -2%;
  z-index: 4;
  height: 18%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 253, 253, 0), rgba(251, 253, 253, .78) 58%, rgba(251, 253, 253, .98));
  border-radius: 0 0 44% 44%;
}

.hero-image-glow {
  inset: 2% -4% 4% 4%;
  background:
    radial-gradient(circle at 54% 40%, rgba(255, 255, 255, .95), transparent 36%),
    radial-gradient(circle at 52% 52%, rgba(0, 167, 181, .28), transparent 58%),
    radial-gradient(circle at 70% 65%, rgba(219, 179, 97, .18), transparent 45%);
}

.hero-image-base {
  left: 18%;
  right: 1%;
  bottom: -3%;
  height: 62px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 72%),
    linear-gradient(90deg, rgba(38, 62, 95, 0), rgba(38, 62, 95, .10), rgba(38, 62, 95, 0));
  filter: blur(11px);
}

.floating-card-one {
  left: auto;
  right: -2%;
  top: 25%;
}

.floating-card-two {
  right: 0;
  top: 52%;
}

.floating-card-three {
  left: 8%;
  bottom: 15%;
}

.visual-ring-one {
  width: 460px;
  height: 460px;
  right: 4%;
  top: 7%;
}

.visual-ring-two {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: 9%;
}

.hero-title-line {
  animation: heroLineIn .82s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-title-line:nth-child(2) {
  animation-delay: .08s;
}

.hero-title-line:nth-child(3) {
  animation-delay: .16s;
}

.hero-title-line:nth-child(4) {
  animation-delay: .24s;
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroUnderlineIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes heroUnderlineGlowIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .hero .hero-copy-col {
    flex: 0 0 49%;
    max-width: 49%;
  }

  .hero .hero-visual-motion {
    flex: 0 0 51%;
    max-width: 51%;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .hero-image-card {
    width: 720px;
    margin-left: -40px;
  }

  .hero-image-card img {
    max-height: 670px;
  }

  .hero-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    max-width: 780px;
    font-size: 3.25rem;
  }

  .hero-visual {
    min-height: 575px;
    justify-content: center;
    transform: translateY(-18px);
  }

  .hero-image-card {
    width: min(760px, 100%);
    margin-left: 0;
    transform: translateY(-8px);
  }

  .hero-image-card img {
    width: 132%;
    max-height: 620px;
    transform: translateX(-18%) translateY(0);
  }

  .floating-card-one {
    left: auto;
    right: 2%;
    top: 16%;
  }

  .floating-card-two {
    right: 2%;
    top: 54%;
  }
}

@media (max-width: 767.98px) {
  .hero-title-line {
    display: inline;
  }

  .hero-title-line::after {
    content: " ";
  }

  .hero-title-line:last-child::after {
    content: "";
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image-card img {
    width: 142%;
    max-height: 520px;
    transform: translateX(-23%) translateY(0);
  }
}

@media (max-width: 575.98px) {
  .hero-visual {
    display: block;
    min-height: auto;
  }

  .hero-image-card {
    width: 100%;
  }

  .hero-image-card img {
    width: 145%;
    max-height: 440px;
    transform: translateX(-25%) translateY(0);
  }

  .floating-card-one {
    left: auto;
    right: 0;
  }

  .hero-image-card::after {
    height: 20%;
  }
}

/* ================================================
   20. Moderno 2026 — Fuente, animaciones, bento,
       marquee, wave separators, proyectos nuevo
   ================================================ */

/* ---------- Fuente moderna ---------- */
:root {
  --font-premium: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Texto gradiente blanco/cyan ---------- */
.gradient-text-white {
  background: linear-gradient(
    140deg,
    #ffffff 0%,
    rgba(0, 167, 181, .95) 55%,
    var(--color-gold) 100%
  );
  color: var(--color-white);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.12em;
}

/* ---------- Reveal variantes direccionales ---------- */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .75s ease, transform .75s ease;
  pointer-events: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .75s ease, transform .75s ease;
  pointer-events: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(.93) translateY(14px);
  transition: opacity .75s ease, transform .75s ease;
  pointer-events: none;
}

.reveal-left.reveal-visible,
.reveal-right.reveal-visible,
.reveal-scale.reveal-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ---------- Retraso escalonado ---------- */
.stagger-1 { transition-delay: .22s; }
.stagger-2 { transition-delay: .32s; }
.stagger-3 { transition-delay: .42s; }
.stagger-4 { transition-delay: .52s; }
.stagger-5 { transition-delay: .62s; }
.stagger-6 { transition-delay: .72s; }

/* ---------- Marquee ticker ---------- */
.marquee-strip {
  overflow: hidden;
  padding: .9rem 0;
  background: var(--color-petrol);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.marquee-track {
  display: flex;
  gap: 2.8rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
  will-change: transform;
}

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

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255, 255, 255, .48);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Wave separadores ---------- */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  display: block;
}

.wave-soft-to-dark {
  background: #ffffff;
  margin-bottom: -2px;
}

.wave-soft-to-dark svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-dark-to-dark {
  background: #07111F;
  margin-bottom: -2px;
}

.wave-dark-to-dark svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* ---------- Proyectos — nuevo diseño bento dark ---------- */
.project-section-new {
  --project-section-bg:
    radial-gradient(circle at 15% 25%, rgba(0, 167, 181, .16) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(219, 179, 97, .12) 0%, transparent 38%),
    linear-gradient(160deg, #07111F 0%, #0D1E3A 55%, #081422 100%);
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-top: 5rem;
  padding-bottom: 6.5rem;
  background: var(--project-section-bg);
  color: rgba(255, 255, 255, .78);
}

.project-section-new .container {
  position: relative;
  z-index: 3;
}

.project-section-new .section-heading {
  text-align: center;
  max-width: 820px;
}

.project-section-new .section-heading h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.project-section-new .section-heading p {
  color: rgba(255, 255, 255, .58);
  font-size: 1.12rem;
}

/* Orbes animados de fondo */
.project-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
}

.project-bg-orb-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -100px;
  background: rgba(0, 167, 181, .14);
  animation-delay: 0s;
}

.project-bg-orb-2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  right: -60px;
  background: rgba(219, 179, 97, .12);
  animation-delay: -6s;
}

.project-bg-orb-3 {
  width: 300px;
  height: 300px;
  top: 42%;
  left: 48%;
  transform: translateX(-50%);
  background: rgba(0, 167, 181, .07);
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.05); }
}

.project-orbs-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ola {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px;
  display: block;
  pointer-events: none;
  z-index: 2;
}

.ola-top {
  top: -1px;
}

.ola-bottom {
  bottom: -1px;
}

/* Grid bento de pasos */
.process-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 3.5rem;
}

.process-bento-step {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  will-change: transform;
  transition: background .3s ease, border-color .3s ease,
              transform .3s ease, box-shadow .3s ease;
}

/* LED strip en la parte superior de cada cuadro */
.process-bento-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 167, 181, .55) 25%,
    rgba(0, 220, 240, 1) 50%,
    rgba(0, 167, 181, .55) 75%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(0, 220, 240, .7),
              0 0 18px rgba(0, 167, 181, .4);
  transition: left .35s ease, right .35s ease, opacity .35s ease;
}

.process-bento-step:nth-child(even)::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(219, 179, 97, .55) 25%,
    rgba(255, 220, 120, 1) 50%,
    rgba(219, 179, 97, .55) 75%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(255, 220, 120, .7),
              0 0 18px rgba(219, 179, 97, .4);
}

.process-bento-step:hover::before {
  left: 5%;
  right: 5%;
}

.process-bento-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, .05) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
}

.process-bento-step:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(0, 167, 181, .38);
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(0, 0, 0, .38),
              0 0 0 1px rgba(0, 167, 181, .18),
              0 0 24px rgba(0, 167, 181, .12);
}

.process-bento-step:nth-child(even):hover {
  border-color: rgba(219, 179, 97, .38);
  box-shadow: 0 30px 64px rgba(0, 0, 0, .38),
              0 0 0 1px rgba(219, 179, 97, .18),
              0 0 24px rgba(219, 179, 97, .12);
}

.step-wide {
  grid-column: span 2;
}

/* Icono del paso */
.process-step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.2rem;
  background: rgba(0, 167, 181, .18);
  border: 1px solid rgba(0, 167, 181, .30);
  border-radius: 13px;
  color: var(--color-primary);
  transition: transform .3s ease, background .3s ease;
}

.process-bento-step:hover .process-step-icon-wrap {
  transform: scale(1.12) rotate(-5deg);
}

.process-step-icon-wrap.icon-gold {
  background: rgba(219, 179, 97, .18);
  border-color: rgba(219, 179, 97, .32);
  color: var(--color-gold);
}

.process-step-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Número grande */
.process-step-num {
  display: block;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .45rem;
  background: linear-gradient(
    135deg,
    rgba(0, 167, 181, .88) 0%,
    rgba(0, 167, 181, .25) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.03em;
}

.process-bento-step:nth-child(even) .process-step-num {
  background: linear-gradient(
    135deg,
    rgba(219, 179, 97, .88) 0%,
    rgba(219, 179, 97, .25) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.process-bento-step h3 {
  color: var(--color-white);
  font-size: 1.22rem;
  margin-bottom: .55rem;
}

.process-bento-step p {
  color: rgba(255, 255, 255, .58);
  font-size: .97rem;
  line-height: 1.62;
  margin: 0;
}

/* Barra CTA inferior */
.project-cta-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding: 1.75rem 2.25rem;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.project-cta-img {
  overflow: hidden;
  border-radius: 14px;
  margin: 0;
  aspect-ratio: 16 / 6;
}

.project-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-cta-bar:hover .project-cta-img img {
  transform: scale(1.04);
}

.project-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}

.project-cta-content p {
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  max-width: 220px;
}

/* ---------- Service icon hover ---------- */
.service-icon {
  transition: transform .3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* ---------- Responsive proyectos nuevo ---------- */
@media (max-width: 991.98px) {
  .process-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-wide {
    grid-column: span 2;
  }

  .project-section-new .section-heading h2 {
    font-size: 2.5rem;
  }

  .project-cta-bar {
    grid-template-columns: 1fr;
  }

  .project-cta-content {
    align-items: center;
    text-align: center;
  }

  .project-cta-content p {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .process-bento {
    grid-template-columns: 1fr;
  }

  .step-wide {
    grid-column: span 1;
  }

  .project-section-new .section-heading h2 {
    font-size: 2rem;
  }

  .wave-soft-to-dark svg {
    height: 50px;
  }
}

@media (max-width: 767.98px) {
  .trust-strip-inner {
    padding: .5rem .75rem;
  }

  .trust-item {
    padding: .65rem 1rem;
    gap: .75rem;
  }

  .trust-sep {
    display: none;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .trust-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }

  .project-bg-orb {
    animation: none;
  }
}

/* ================================================
   21. Rediseño 2026 Parte 2 — Waves, Gradients,
       Aula Virtual, Carousel, Contacto Dark
   ================================================ */

/* ---------- Gradient text para fondo claro ---------- */
.gradient-text {
  background: linear-gradient(
    140deg,
    var(--color-petrol) 0%,
    var(--color-primary) 58%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

/* ---------- Wave: TOP of dark band (dark bg, light wave fill) ---------- */
.wave-top-of-dark {
  background:
    radial-gradient(circle at 15% 25%, rgba(0, 167, 181, .16) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(219, 179, 97, .12) 0%, transparent 38%),
    linear-gradient(160deg, #07111F 0%, #0D1E3A 55%, #081422 100%);
  margin-bottom: -2px;
}

.wave-top-of-dark svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ---------- Wave: internal dark band (decorative, subtle) ---------- */
.wave-dark-inner {
  background: #07111F;
  margin-bottom: -2px;
}

.wave-dark-inner svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ---------- Wave: BOTTOM of dark band (dark bg, light fills bottom) ---------- */
.wave-bottom-of-dark {
  background: #07111F;
  margin-top: -2px;
}

.wave-bottom-of-dark svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* ---------- Wave: light section to dark (for contacto) ---------- */
.wave-bg-to-dark {
  background: var(--color-bg);
  margin-bottom: -2px;
}

.wave-bg-to-dark svg {
  display: block;
  width: 100%;
  height: 120px;
}

/* ==============================================
   AULA VIRTUAL — Nuevo diseño dark
   ============================================== */
.aula-section-new {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(120px + 6rem);
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 167, 181, .16) 0%, transparent 38%),
    radial-gradient(circle at 82% 68%, rgba(219, 179, 97, .12) 0%, transparent 36%),
    linear-gradient(160deg, #07111F 0%, #0D1E3A 58%, #07111F 100%);
  color: rgba(255, 255, 255, .78);
}

.aula-section-new .container {
  position: relative;
  z-index: 1;
}

.aula-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 16s ease-in-out infinite;
}

.aula-orb-1 {
  width: 420px;
  height: 420px;
  top: -90px;
  right: -80px;
  background: rgba(0, 167, 181, .13);
}

.aula-orb-2 {
  width: 320px;
  height: 320px;
  bottom: -60px;
  left: -70px;
  background: rgba(219, 179, 97, .10);
  animation-delay: -8s;
}

.aula-section-new h2 {
  font-size: 2.9rem;
  margin-bottom: 2rem;
}

.aula-section-new p {
  color: rgba(255, 255, 255, .58);
  font-size: 1.07rem;
  line-height: 1.65;
}

/* Feature grid */
.aula-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin: 1.85rem 0 2rem;
}

.aula-feature-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  transition: background .28s ease, border-color .28s ease, transform .28s ease;
}

.aula-feature-item:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(0, 167, 181, .38);
  transform: translateY(-3px);
}

.aula-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 167, 181, .28), rgba(0, 167, 181, .12));
  border: 1px solid rgba(0, 167, 181, .32);
  border-radius: 10px;
  color: var(--color-primary);
}

.aula-feature-icon-gold {
  background: linear-gradient(135deg, rgba(219, 179, 97, .28), rgba(219, 179, 97, .12));
  border-color: rgba(219, 179, 97, .32);
  color: var(--color-gold);
}

.aula-feature-icon-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, .25), rgba(34, 197, 94, .10));
  border-color: rgba(34, 197, 94, .30);
  color: #22C55E;
}

.aula-feature-icon-petrol {
  background: linear-gradient(135deg, rgba(38, 62, 95, .40), rgba(38, 62, 95, .20));
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .80);
}

.aula-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.aula-feature-item strong {
  display: block;
  color: var(--color-white);
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.2;
}

.aula-feature-item span {
  display: block;
  color: rgba(255, 255, 255, .42);
  font-size: .8rem;
  margin-top: .15rem;
}

/* Dashboard nuevo */
.aula-dashboard-new {
  position: relative;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 88px rgba(0, 0, 0, .38);
  backdrop-filter: blur(22px);
}

.aula-dashboard-topbar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .9rem 1.25rem;
  background: rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.aula-dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.aula-dash-dot:nth-child(1) { background: #FF6058; }
.aula-dash-dot:nth-child(2) { background: #FFC130; }
.aula-dash-dot:nth-child(3) { background: #27C840; }

.aula-dash-tabs {
  display: flex;
  gap: .3rem;
  margin-left: .85rem;
}

.aula-dash-tab {
  padding: .22rem .85rem;
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
  color: rgba(255, 255, 255, .48);
  font-size: .74rem;
  font-weight: 600;
}

.aula-dash-tab.active {
  background: var(--color-primary);
  color: #fff;
}

.aula-dashboard-body {
  padding: 1.5rem;
}

.aula-dash-progress-section {
  margin-bottom: 1.5rem;
}

.aula-dash-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}

.aula-dash-progress-label span {
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
  font-weight: 600;
}

.aula-dash-progress-label strong {
  color: var(--color-primary);
  font-size: .98rem;
  font-weight: 800;
}

.aula-dash-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
  overflow: hidden;
}

.aula-dash-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), #17BBC7);
  animation: progressGrow 1.6s cubic-bezier(.2, .8, .2, 1) .4s both;
}

@keyframes progressGrow {
  from { width: 0 !important; }
}

.aula-dash-courses {
  display: grid;
  gap: .72rem;
}

.aula-dash-course {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  transition: background .22s ease, border-color .22s ease;
}

.aula-dash-course:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(0, 167, 181, .28);
}

.aula-dash-course-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), #17BBC7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.aula-dash-course-thumb svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.aula-dash-course-info strong {
  display: block;
  color: rgba(255, 255, 255, .88);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .32rem;
}

.aula-dash-course-meta {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.aula-dash-course-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  overflow: hidden;
}

.aula-dash-course-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), #E8C674);
}

.aula-dash-course-percent {
  color: rgba(255, 255, 255, .42);
  font-size: .74rem;
  white-space: nowrap;
}

/* Responsive aula new */
@media (max-width: 991.98px) {
  .aula-section-new h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 767.98px) {
  .aula-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   COLABORADORES — Carrusel
   ============================================== */
.colabs-section .section-heading {
  margin-bottom: 2.5rem;
}

.colabs-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.colabs-carousel-wrap::before,
.colabs-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.colabs-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg), transparent);
}

.colabs-carousel-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg), transparent);
}

.colabs-track {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem .5rem;
  animation: colabsScroll 22s linear infinite;
  width: max-content;
  will-change: transform;
}

.colabs-carousel-wrap:hover .colabs-track {
  animation-play-state: paused;
}

.colab-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  min-width: 168px;
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-premium-soft);
  cursor: default;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.colab-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 167, 181, .25);
}

.colab-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: #fff;
  flex-shrink: 0;
}

.colab-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.colab-card-icon-cyan  { background: linear-gradient(135deg, var(--color-primary), #17BBC7); box-shadow: 0 6px 16px rgba(0,167,181,.26); }
.colab-card-icon-gold  { background: linear-gradient(135deg, var(--color-gold), #C99A3E); box-shadow: 0 6px 16px rgba(219,179,97,.28); }
.colab-card-icon-petrol { background: linear-gradient(135deg, var(--color-petrol), #1E3050); box-shadow: 0 6px 16px rgba(38,62,95,.26); }
.colab-card-icon-green { background: linear-gradient(135deg, #22C55E, #16A34A); box-shadow: 0 6px 16px rgba(34,197,94,.24); }
.colab-card-icon-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); box-shadow: 0 6px 16px rgba(139,92,246,.24); }
.colab-card-icon-red   { background: linear-gradient(135deg, #EF4444, #B91C1C); box-shadow: 0 6px 16px rgba(239,68,68,.22); }

.colab-card-icon--logo {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.colab-card-icon--logo img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.colab-card-icon--logo-lg img {
  width: 46px;
  height: 46px;
}

.colab-card-icon--logo-wide {
  width: 108px;
}

.colab-card-icon--logo-wide img {
  width: 88px;
  height: 38px;
  object-fit: contain;
}

.colab-card strong {
  color: var(--color-text);
  font-size: .92rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

.colab-card span {
  color: var(--color-muted);
  font-size: .76rem;
  text-align: center;
  line-height: 1.35;
}

@keyframes colabsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==============================================
   CONTACTO — Nuevo diseño dark
   ============================================== */
.contact-section-new {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 167, 181, .15) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(219, 179, 97, .11) 0%, transparent 38%),
    linear-gradient(160deg, #07111F 0%, #0D1E3A 52%, #081422 100%);
  color: rgba(255, 255, 255, .78);
}

.contact-section-new .container {
  position: relative;
  z-index: 3;
}

.contact-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 18s ease-in-out infinite;
}

.contact-orb-1 {
  width: 520px;
  height: 520px;
  top: -110px;
  right: -100px;
  background: rgba(0, 167, 181, .12);
}

.contact-orb-2 {
  width: 360px;
  height: 360px;
  bottom: -90px;
  left: -80px;
  background: rgba(219, 179, 97, .09);
  animation-delay: -9s;
}

.contact-section-new h2 {
  color: var(--color-white);
  margin-bottom: 2rem;
}

.contact-section-new p {
  color: rgba(255, 255, 255, .58);
}

.contact-section-new .contact-benefits {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .13);
}

.contact-section-new .contact-benefits h3 {
  color: var(--color-white);
}

.contact-section-new .contact-benefits li {
  color: rgba(255, 255, 255, .55);
}

/* Contact info cards (replaces contact-list) */
.contact-info-cards {
  display: grid;
  gap: .85rem;
  margin-top: 2rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.05rem 1.3rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  text-decoration: none;
  color: inherit;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(0, 167, 181, .32);
  transform: translateX(4px);
  color: inherit;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  color: #fff;
  margin-top: .1rem;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-icon-cyan   { background: linear-gradient(135deg, var(--color-primary), #17BBC7); box-shadow: 0 8px 18px rgba(0,167,181,.28); }
.contact-icon-gold   { background: linear-gradient(135deg, var(--color-gold), #C99A3E); box-shadow: 0 8px 18px rgba(219,179,97,.26); }
.contact-icon-petrol { background: linear-gradient(135deg, #2E5490, #1E3050); box-shadow: 0 8px 18px rgba(38,62,95,.28); }
.contact-icon-clock  { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.20); }

.contact-info-text strong {
  display: block;
  color: var(--color-white);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .22rem;
}

.contact-info-text span {
  display: block;
  color: rgba(255, 255, 255, .45);
  font-size: .83rem;
  line-height: 1.45;
}

/* Glassmorphism form for dark contacto */
.contact-form-new {
  padding: 2.25rem;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  backdrop-filter: blur(22px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .32);
}

.contact-form-new .form-label {
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
  font-size: .92rem;
}

.contact-form-new .form-control,
.contact-form-new .form-select {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .16);
  color: var(--color-white);
}

.contact-form-new .form-control:focus,
.contact-form-new .form-select:focus {
  background: rgba(255, 255, 255, .14);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 0 0 .2rem rgba(0, 167, 181, .25);
}

.contact-form-new .form-control::placeholder {
  color: rgba(255, 255, 255, .32);
}

.contact-form-new .form-select option {
  background: #0D1E3A;
  color: var(--color-white);
}

.contact-form-new .form-check-input {
  background-color: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .25);
}

.contact-form-new .form-check-label {
  color: rgba(255, 255, 255, .60);
}

.contact-form-new .form-check-label a {
  color: var(--color-primary);
}

.contact-form-new .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-form-new .invalid-feedback {
  color: #FCA5A5;
}

/* Eyebrow in new contacto */
.contact-section-new .eyebrow-light {
  color: rgba(255, 255, 255, .70);
}

/* Responsive new sections */
@media (max-width: 767.98px) {
  .ola {
    height: 70px;
  }

  .corporate-block {
    padding-top: calc(6.5rem + 70px);
  }

  .wave-top-of-dark svg,
  .wave-bg-to-dark svg {
    height: 70px;
  }

  .wave-bottom-of-dark svg {
    height: 60px;
  }

  .contact-form-new {
    padding: 1.4rem;
  }

  .colabs-carousel-wrap::before,
  .colabs-carousel-wrap::after {
    width: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aula-bg-orb,
  .contact-bg-orb {
    animation: none;
  }

  .colabs-track {
    animation: none;
  }

  .aula-dash-progress-fill {
    animation: none;
  }
}
