/* =============================================
   TH TEC — Global Styles
   Versión limpia — sin duplicados
   ============================================= */

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

/* VARIABLES */
:root {
  --navy: #0B1F3A;
  --navy2: #122847;
  --blue: #1A6FD4;
  --blue-light: #2B8BF0;
  --blue-pale: #E8F2FD;
  --accent: #00C2FF;
  --gray-50: #F7F9FC;
  --gray-100: #EEF2F8;
  --gray-200: #D6DFF0;
  --gray-600: #6B7A99;
  --gray-800: #2C3A52;
  --radius: 12px;
  --radius-lg: 20px;
}

/* BASE */
html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  background: #fff;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif
}

section {
  padding: 72px 6%
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background: rgba(11, 31, 58, 0);
  backdrop-filter: blur(0px);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

nav.scrolled,
nav.solid {
  background: rgba(11, 31, 58, 0.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block
}

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px
}

.nav-logo-text span {
  color: var(--accent)
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, .72);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s, border-color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--accent)
}

.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px)
}

/* =============================================
   MOBILE BOTTOM NAV
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(11, 31, 58, .97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .25);
}

.mobile-nav ul {
  display: flex;
  list-style: none;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px
}

.mobile-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255, 255, 255, .45);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 10px;
  transition: color .2s, background .2s;
  min-width: 56px;
}

.mobile-nav ul li a svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255, 255, 255, .45);
  fill: none;
  stroke-width: 1.8;
  transition: stroke .2s
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: var(--accent);
  background: rgba(26, 111, 212, .25)
}

.mobile-nav ul li a:hover svg,
.mobile-nav ul li a.active svg {
  stroke: var(--accent)
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 11px 24px;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 111, 212, .35)
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 11px 24px;
  border-radius: 9px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .05)
}

/* =============================================
   SHARED / COMPONENTES GLOBALES
   ============================================= */
.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.8px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px
}

.section-subtitle {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px
}

/* ANIMACIONES */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* =============================================
   PAGE HERO — DEFINITIVO (una sola definición)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 60px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(11, 31, 58, .35) 0%, rgba(11, 31, 58, .88) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 6% 44px;
  width: 100%;
  max-width: 760px;
}

.page-hero-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-top: 10px;
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
  font-weight: 300;
  line-height: 1.7;
  max-width: 580px;
  font-style: italic;
}

/* Elementos decorativos del hero de vacantes */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0B1F3A 0%, #0D2444 60%, #0B1F3A 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .06;
  background-image: linear-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .5) 1px, transparent 1px);
  background-size: 56px 56px;
}

.page-hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle, rgba(26, 111, 212, .25) 0%, transparent 70%);
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26, 111, 212, .18);
  border: 1px solid rgba(26, 111, 212, .35);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.page-hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

/* =============================================
   HERO — Home
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 90px 6% 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(26, 111, 212, .22) 0%, transparent 70%),
    linear-gradient(135deg, #0B1F3A 0%, #0D2444 60%, #0B1F3A 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: linear-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .5) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 111, 212, .25) 0%, transparent 70%);
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  grid-column: 1;  
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26, 111, 212, .18);
  border: 1px solid rgba(26, 111, 212, .35);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.75)
  }
}

.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -1.2px;
  margin-bottom: 12px
}

.hero h1 em {
  font-style: normal;
  color: var(--accent)
}

.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px;
  font-weight: 300
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  align-items: center
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1
}

.hero-stat-num span {
  color: var(--accent)
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-top: 6px
}

.hero-divider {
  width: 1px;
  background: rgba(255, 255, 255, .12);
  height: 52px;
  align-self: center
}

/* THECO — Mascota Hero */
.hero-mascot {
  position: relative;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  animation: thecoEntrada 0.9s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}

@keyframes thecoEntrada {
  from {
    opacity: 0;
    transform: translateX(60px); /* ← quitamos el translateY(50%) */
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-mascot img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,194,255,0.15));
  animation: thecoIdle 3s ease-in-out infinite;
}

@keyframes thecoIdle {
  0%   { transform: translateY(0px) rotate(0deg) }
  25%  { transform: translateY(-8px) rotate(1deg) }
  50%  { transform: translateY(-12px) rotate(0deg) }
  75%  { transform: translateY(-6px) rotate(-1deg) }
  100% { transform: translateY(0px) rotate(0deg) }
}

/* =============================================
   HOME — QUIÉNES SOMOS
   ============================================= */
.about {
  background: #fff
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100)
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  opacity: .12
}

.about-content .btn-primary {
  margin-top: 24px
}

.about-image-badges {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-direction: row;
  gap: 8px
}

.about-image-badge {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1
}

.about-image-badge-icon {
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.about-image-badge-icon svg {
  width: 15px;
  height: 15px;
  fill: #fff
}

.about-image-badge-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy)
}

.about-image-badge-sub {
  font-size: 10px;
  color: var(--gray-600)
}

/* =============================================
   HOME — DIFERENCIADORES
   ============================================= */
.diff {
  background: var(--gray-50)
}

.diff-header {
  text-align: center;
  margin-bottom: 44px
}

.diff-header .section-subtitle {
  margin: 0 auto
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.diff-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--gray-200);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 31, 58, .09);
  border-color: var(--blue)
}

.diff-card:hover::before {
  transform: scaleX(1)
}

.diff-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .3s
}

.diff-card:hover .diff-icon {
  background: var(--blue)
}

.diff-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  stroke-width: 1.8;
  fill: none;
  transition: stroke .3s
}

.diff-card:hover .diff-icon svg {
  stroke: #fff
}

.diff-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px
}

.diff-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300
}

/* =============================================
   HOME — CÓMO FUNCIONA
   ============================================= */
.how {
  background: var(--navy);
  position: relative;
  overflow: hidden
}

.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(26, 111, 212, .12) 0%, transparent 70%)
}

.how-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative
}

.how-header .section-title {
  color: #fff
}

.how-header p {
  color: rgba(255, 255, 255, .5)
}

.how-header .section-tag {
  background: rgba(26, 111, 212, .22);
  color: var(--accent)
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1
}

.how-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s
}

.how-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 111, 212, .5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .3)
}

.how-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(26, 111, 212, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.how-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(26, 111, 212, .15)
}

.how-card-image img:not([src]),
.how-card-image img[src=""] {
  opacity: 0
}

.how-card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 111, 212, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  z-index: 2
}

.how-card-body {
  padding: 24px
}

.how-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.2px
}

.how-card-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  font-weight: 300
}

/* =============================================
   HOME — EXPERIENCIA
   ============================================= */
.testi-header {
  text-align: center;
  margin-bottom: 48px
}

.testi-header p {
  color: var(--gray-600)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 31, 58, .1);
  border-color: var(--blue)
}

.testi-card:hover::before {
  transform: scaleX(1)
}

.testi-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .3s
}

.testi-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  transition: stroke .3s
}

.testi-card:hover .testi-card-icon {
  background: var(--blue)
}

.testi-card:hover .testi-card-icon svg {
  stroke: #fff
}

.testi-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px
}

.testi-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.2px
}

.testi-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #0A2240 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 6%
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 100%, rgba(26, 111, 212, .18) 0%, transparent 60%)
}

.cta-section h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.8px;
  line-height: 1.12;
  margin-bottom: 14px;
  position: relative
}

.cta-section h2 em {
  font-style: normal;
  color: var(--accent)
}

.cta-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  max-width: 630px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.65;
  position: relative
}

.cta-section .btn-primary {
  position: relative
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, .88) 0%, rgba(18, 40, 71, .92) 100%)
}

.cta-content {
  position: relative;
  z-index: 2
}

.cta-content h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 14px
}

.cta-content h2 em {
  font-style: normal;
  color: var(--accent)
}

.cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  max-width: 440px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.65
}

/* =============================================
   NOSOTROS
   ============================================= */
.mv {
  background: var(--navy);
  padding: 72px 6%;
  position: relative;
  overflow: hidden
}

.mv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(26, 111, 212, .18) 0%, transparent 65%)
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1
}

.mv-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: background .3s, border-color .3s
}

.mv-card:hover {
  background: rgba(26, 111, 212, .12);
  border-color: rgba(26, 111, 212, .35)
}

.mv-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(26, 111, 212, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.mv-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none
}

.mv-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px
}

.mv-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  font-weight: 300
}

/* Propósito — tarjeta única */
.mv-single {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s
}

.mv-single:hover {
  background: rgba(26, 111, 212, .1);
  border-color: rgba(26, 111, 212, .35)
}

.mv-single-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(26, 111, 212, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.mv-single-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none
}

.mv-single-content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.25;
  margin-bottom: 14px
}

.mv-single-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  font-weight: 300;
  max-width: 680px
}

.valores-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.valores-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3
}

.valores-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.valores-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.valor-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition: transform .25s, border-color .25s, background .25s
}

.valor-item:hover {
  transform: translateX(6px);
  border-color: var(--blue);
  background: var(--blue-pale)
}

.valor-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s
}

.valor-item:hover .valor-icon {
  background: var(--blue)
}

.valor-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue);
  stroke-width: 1.9;
  fill: none;
  transition: stroke .25s
}

.valor-item:hover .valor-icon svg {
  stroke: #fff
}

.valor-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy)
}

/* Diferenciadores Nosotros */
.dif {
  background: var(--gray-50)
}

.dif-header {
  text-align: center;
  margin-bottom: 44px
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.dif-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--gray-200);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden
}

.dif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.dif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 31, 58, .09);
  border-color: var(--blue)
}

.dif-card:hover::before {
  transform: scaleX(1)
}

.dif-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .3s
}

.dif-card:hover .dif-icon {
  background: var(--blue)
}

.dif-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  stroke-width: 1.8;
  fill: none;
  transition: stroke .3s
}

.dif-card:hover .dif-icon svg {
  stroke: #fff
}

.dif-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px
}

.dif-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300
}

/* Certificación */
.cert {
  background: var(--navy);
  padding: 72px 6%;
  position: relative;
  overflow: hidden
}

.cert::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 20% 50%, rgba(26, 111, 212, .2) 0%, transparent 65%)
}

.cert-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1
}

.cert-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 2px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 4px;
  position: relative
}

.cert-badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(26, 111, 212, .4)
}

.cert-badge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent)
}

.cert-badge-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-align: center
}

.cert-badge-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .8px;
  text-transform: uppercase
}

.cert-badge-img {
  width: 210px;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 194, 255, 0.2))
}

.cert-content .section-tag {
  background: rgba(26, 111, 212, .22);
  color: var(--accent)
}

.cert-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.7px;
  line-height: 1.15;
  margin-bottom: 16px
}

.cert-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px
}

.cert-detail-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 14px 16px
}

.cert-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 4px
}

.cert-detail-value {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.cert-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 16px
}

/* =============================================
   SERVICIOS
   ============================================= */
.servicio {
  padding: 80px 6%
}

.servicio:nth-child(odd) {
  background: #fff
}

.servicio:nth-child(even) {
  background: var(--gray-50)
}

.servicio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto
}

.servicio-inner.reverse {
  direction: rtl
}

.servicio-inner.reverse>* {
  direction: ltr
}

.servicio-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10
}

.servicio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.servicio-image:hover img {
  transform: scale(1.04)
}

.servicio-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 111, 212, .1) 0%, transparent 60%)
}

.servicio-number {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 31, 58, .7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px
}

.servicio-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.servicio-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.5
}

.servicio-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231A6FD4' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center
}

.servicio-content .section-subtitle {
  margin-bottom: 20px
}

/* Por qué elegirnos */
.porque {
  background: var(--navy);
  padding: 80px 6%;
  position: relative;
  overflow: hidden
}

.porque::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 100%, rgba(26, 111, 212, .18) 0%, transparent 65%)
}

.porque-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1
}

.porque-header .section-tag {
  background: rgba(26, 111, 212, .22);
  color: var(--accent)
}

.porque-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.8px;
  margin-bottom: 12px
}

.porque-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.65;
  position: relative
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1
}

.porque-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default
}

.porque-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.porque-card:hover img {
  transform: scale(1.06)
}

.porque-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, .9) 0%, rgba(11, 31, 58, .3) 60%, transparent 100%);
  transition: background .3s
}

.porque-card:hover .porque-card-overlay {
  background: linear-gradient(to top, rgba(26, 111, 212, .85) 0%, rgba(11, 31, 58, .4) 60%, transparent 100%)
}

.porque-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px
}

.porque-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px
}

.porque-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8
}

.porque-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.2px
}

/* =============================================
   CONTACTO
   ============================================= */
.intro {
  padding: 72px 6%;
  background: #fff
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto
}

.intro-left h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.3px;
  line-height: 1.08
}

.intro-left h1 em {
  font-style: normal;
  color: var(--blue)
}

.intro-right p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300
}

.contacto-main {
  padding: 0 6% 88px;
  background: #fff
}

.contacto-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch
}

.card-principal {
  height: 100%;
  border-radius: var(--radius-lg);
  background: var(--navy);
  padding: 48px 40px;
  position: relative;
  overflow: hidden
}

.card-principal::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 111, 212, .35) 0%, transparent 70%)
}

.card-principal::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, .15) 0%, transparent 70%)
}

.card-principal-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block
}

.card-principal h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.6px;
  line-height: 1.2;
  margin-bottom: 14px
}

.card-principal p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px
}

.card-principal-email {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px
}

.card-principal-email svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0
}

.card-principal-email span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff
}

.btn-mailto {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  width: 100%;
  justify-content: center
}

.btn-mailto:hover {
  background: var(--blue-light);
  transform: translateY(-2px)
}

.btn-mailto svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2
}

.cards-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%
}

.side-card {
  flex: 1;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  padding: 28px 26px;
  background: #fff;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden
}

.side-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(11, 31, 58, .08);
  border-color: var(--blue)
}

.side-card:hover::before {
  transform: scaleX(1)
}

.side-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .3s
}

.side-card:hover .side-icon {
  background: var(--blue)
}

.side-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  transition: stroke .3s
}

.side-card:hover .side-icon svg {
  stroke: #fff
}

.side-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: -.2px
}

.side-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300
}

/* Contacto works */
.contacto-works {
  max-width: 1000px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.contacto-work-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden
}

.contacto-work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.contacto-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 31, 58, .1);
  border-color: var(--blue)
}

.contacto-work-card:hover::before {
  transform: scaleX(1)
}

.contacto-work-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s
}

.contacto-work-card:hover .contacto-work-icon {
  background: var(--blue)
}

.contacto-work-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  transition: stroke .3s
}

.contacto-work-card:hover .contacto-work-icon svg {
  stroke: #fff
}

.contacto-work-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4
}

/* Info strip */
.info-strip {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin: 0 6% 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border: 1px solid var(--gray-200)
}

.info-strip.particles-animated {
  position: relative;
  background: var(--navy);
  border: none;
  border-radius: 0;
  margin-left: -6vw;
  margin-right: -6vw;
  padding: 56px 6vw;
  max-width: none;
  width: calc(100% + 12vw);
  overflow: hidden
}

.info-strip.particles-animated::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 194, 255, 0.4) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: particlesMove 6s linear infinite;
  opacity: .4
}

.info-strip.particles-animated::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 20%, transparent 80%, var(--navy) 100%)
}

@keyframes particlesMove {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 28px 28px
  }
}

.info-strip.particles-animated .info-item,
.info-strip.particles-animated .info-divider {
  position: relative;
  z-index: 2
}

.info-strip.particles-animated .info-item-value {
  color: #fff;
  font-weight: 600
}

.info-strip.particles-animated .info-item-label {
  color: rgba(255, 255, 255, .6)
}

.info-strip.particles-animated .info-item-icon {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12)
}

.info-strip.particles-animated .info-item-icon svg {
  stroke: var(--accent)
}

.info-strip.particles-animated .info-divider {
  background: rgba(255, 255, 255, .15)
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px
}

.info-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.info-item-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8
}

.info-item-label {
  font-size: 10px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 2px
}

.info-item-value {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy)
}

.info-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200)
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #080F1E;
  padding: 56px 6% 24px
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start
}

.footer-brand .nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-bottom: 16px
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
  max-width: 380px
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  margin-bottom: 9px
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  transition: color .2s
}

.footer-col ul li a:hover {
  color: #fff
}

.footer-contact-list {
  list-style: none
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px
}

.footer-contact-list li svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px
}

.footer-contact-list li strong {
  display: block;
  color: rgba(255, 255, 255, .85);
  font-weight: 500
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .25)
}

/* =============================================
   VACANTES
   ============================================= */
.vacantes-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  padding: 48px 6% 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start
}

.filtros {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.filtro-btn {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
  font-family: 'Poppins', sans-serif
}

.filtro-btn:hover,
.filtro-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue)
}

.vacantes-lista {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.vacantes-loading {
  text-align: center;
  padding: 48px 0;
  color: var(--gray-600)
}

.vacantes-loading svg {
  width: 40px;
  height: 40px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  animation: spin 1s linear infinite;
  margin-bottom: 12px
}

@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.vacantes-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--gray-600)
}

.vacantes-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--gray-200);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 12px
}

.vacante-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden
}

.vacante-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s
}

.vacante-card:hover,
.vacante-card.selected {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 31, 58, .1);
  border-color: var(--blue)
}

.vacante-card:hover::before,
.vacante-card.selected::before {
  transform: scaleY(1)
}

.vacante-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px
}

.vacante-titulo {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.2px;
  line-height: 1.3
}

.vacante-nueva {
  background: var(--accent);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0
}

.vacante-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px
}

.vacante-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-600)
}

.vacante-meta-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0
}

.vacante-area {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 4px 10px;
  border-radius: 100px
}

.vacante-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.vacante-detalle {
  position: sticky;
  top: 80px;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.detalle-placeholder {
  padding: 48px 24px;
  text-align: center;
  color: var(--gray-600)
}

.detalle-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gray-200);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 12px
}

.detalle-placeholder p {
  font-size: 13px;
  line-height: 1.6
}

.detalle-header {
  background: var(--navy);
  padding: 28px 24px;
  position: relative;
  overflow: hidden
}

.detalle-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 100% 0%, rgba(26, 111, 212, .3) 0%, transparent 70%)
}

.detalle-header-content {
  position: relative;
  z-index: 1
}

.detalle-area {
  display: inline-block;
  background: rgba(0, 194, 255, .15);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px
}

.detalle-titulo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.4px;
  line-height: 1.2;
  margin-bottom: 14px
}

.detalle-meta {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.detalle-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6)
}

.detalle-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0
}

.detalle-body {
  padding: 24px
}

.detalle-section {
  margin-bottom: 22px
}

.detalle-section h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px
}

.detalle-section p {
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.75;
  font-weight: 300
}

.btn-postular {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 13px 24px;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background .2s, transform .15s
}

.btn-postular:hover {
  background: var(--blue-light);
  transform: translateY(-1px)
}

.btn-postular svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, .7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.modal-overlay.active {
  display: flex
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto
}

.modal-header {
  background: var(--navy);
  padding: 24px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 1
}

.modal-header-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  line-height: 1.2
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s
}

.modal-close:hover {
  background: rgba(255, 255, 255, .1)
}

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2
}

.modal-body {
  padding: 28px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: .3px;
  text-transform: uppercase
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--navy);
  background: var(--gray-50);
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 111, 212, .1)
}

.form-group textarea {
  height: 100px;
  resize: none
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.btn-enviar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 13px 24px;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background .2s, transform .15s;
  margin-top: 8px
}

.btn-enviar:hover {
  background: var(--blue-light);
  transform: translateY(-1px)
}

.btn-enviar:disabled {
  background: var(--gray-200);
  cursor: not-allowed;
  transform: none
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px
}

.form-success-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2
}

.form-success h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px
}

.form-success p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65
}

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

@media(max-width:1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: span 2
  }

  .contacto-works {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .hero-mascot {
    display: none;
  }
}

@media(max-width:900px) {

  .nav-links,
  .nav-cta {
    display: none
  }

  .vacantes-layout {
    grid-template-columns: 1fr
  }

  .vacante-detalle {
    display: none
  }
}

@media(max-width:860px) {
  .mobile-nav {
    display: block
  }

  body {
    padding-bottom: 72px
  }

  .hero-mascot {
    display: none
  }

  .about-inner,
  .mv-grid,
  .valores-inner,
  .cert-inner {
    grid-template-columns: 1fr
  }

  .cert-badge {
    margin: 0 auto
  }

  .cert-detail {
    grid-template-columns: 1fr
  }

  .diff-grid,
  .how-cards,
  .testi-grid,
  .porque-grid,
  .dif-grid {
    grid-template-columns: 1fr
  }

  .servicio-inner {
    grid-template-columns: 1fr
  }

  .servicio-inner.reverse {
    direction: ltr
  }

  .intro-inner,
  .contacto-inner {
    grid-template-columns: 1fr
  }

  .info-strip {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 6% 60px
  }

  .info-divider {
    display: none
  }

  .about-image-badges {
    flex-direction: column
  }

  .mv-single {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 24px
  }
}

@media(max-width:600px) {
  .footer-inner {
    grid-template-columns: 1fr
  }

  .footer-brand {
    grid-column: span 1
  }

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

  .contacto-works {
    grid-template-columns: 1fr
  }
}