/* ==========================================================================
   WORKBRIDGE - GLOBAL MOBILITY & INTERNATIONAL CAREERS
   Design System: White Background, Gold 3D Monocolor Icons, Transparent-to-Scrolled Header & 100% Mobile Responsive
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Site Backgrounds (PURE WHITE & LIGHT SLATE CANVAS) */
  --bg-site: #ffffff;
  --bg-alt: #f8fafc;
  --bg-surface: #f1f5f9;

  /* Object & Card Colors (DEEP MIDNIGHT NAVY) */
  --navy-deep: #060d1b;
  --navy-dark: #0a172e;
  --navy-card: #0e1b33;
  --navy-card-hover: #132240;
  --navy-light: #1e293b;

  /* Accent Colors (DEEP BURNT ORANGE & METALLIC 3D GOLD) */
  --orange-deep: #b83e14;
  --orange-dark: #8c2a09;
  --orange-glow: #d94f1c;
  --orange-pale: #f49874;
  --orange-subtle: rgba(184, 62, 20, 0.08);
  --orange-border: rgba(217, 79, 28, 0.3);

  /* Gold Metallic Palette */
  --gold-gradient: linear-gradient(135deg, #ffe57f 0%, #d4af37 50%, #996515 100%);
  --gold-shadow: 0 8px 18px rgba(180, 140, 20, 0.35);

  /* Neutrals & Typography */
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --line-dark: rgba(15, 23, 42, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);

  /* Motion & Elevation */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-card: 0 10px 30px rgba(10, 23, 46, 0.08);
  --shadow-hover: 0 18px 40px rgba(10, 23, 46, 0.16);
  --shadow-orange: 0 8px 24px rgba(184, 62, 20, 0.28);
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-site);
  color: var(--text-dark);
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange-deep);
}

/* Headings */
h1, h2, h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  color: var(--navy-dark);
}

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow i {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange-glow);
}

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

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* HEADER COMPACTO Y TRANSPARENTE CON CAMBIO EN SCROLL */
.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: transparent;
  backdrop-filter: blur(0px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 4px 20px rgba(10, 23, 46, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy-dark);
}

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

.brand span span {
  color: var(--orange-glow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 6px 0;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--orange-deep);
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange-glow);
  transition: width 0.25s var(--ease);
}

.main-nav > a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--navy-dark);
  background: var(--navy-dark);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--orange-deep);
  border-color: var(--orange-glow);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
  color: var(--navy-dark);
  cursor: pointer;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--orange-glow);
  padding: 14px 24px;
  background: var(--orange-deep);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  box-shadow: var(--shadow-orange);
}

.button:hover {
  background: var(--orange-glow);
  box-shadow: 0 10px 28px rgba(217, 79, 28, 0.4);
  transform: translateY(-2px);
}

.dark-button {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #ffffff;
}

.dark-button:hover {
  background: var(--orange-deep);
  border-color: var(--orange-glow);
}

.light-button {
  border: 1px solid var(--navy-dark);
  background: #ffffff;
  color: var(--navy-dark);
}

.light-button:hover {
  background: var(--navy-dark);
  color: #ffffff;
}

.text-link, .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: none;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.text-link:hover, .arrow-link:hover {
  gap: 13px;
  color: var(--orange-glow);
}

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 72px);
  background: var(--bg-site);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vw 5vw 4vw 7vw;
}

.hero h1 {
  max-width: 630px;
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

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

.lede {
  max-width: 490px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* UNIFICACIÓN DE ICONOS MONOCOLOR EN RELIEVE 3D DORADO */
.feature-icon-3d {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-gradient);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.8),
              inset 0 -2px 4px rgba(0, 0, 0, 0.35),
              0 6px 16px rgba(180, 140, 20, 0.35);
  display: grid;
  place-items: center;
  color: #382400;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-20 {
  margin-bottom: 20px;
}

.gold-3d-lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* HERO FEATURE CARDS */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 14px rgba(10, 23, 46, 0.05);
  text-decoration: none;
}

.hero-feature-card:hover {
  background: #ffffff;
  border-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(180, 140, 20, 0.18);
}

.hero-feature-card:hover .feature-icon-3d {
  transform: scale(1.08) rotate(3deg);
}

.hero-feature-card strong {
  display: block;
  font-size: 14px;
  color: var(--navy-dark);
  font-weight: 800;
}

.subp-arrow {
  display: inline-block;
  color: #d4af37;
  transition: transform 0.2s ease;
}

.hero-feature-card:hover .subp-arrow {
  transform: translate(2px, -2px);
}

.hero-feature-card span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

/* Quick Destination Links */
.hero-quick-destinations {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  flex-wrap: wrap;
}

.quick-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-tag {
  background: var(--bg-surface);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--line-dark);
  transition: all 0.2s var(--ease);
}

.quick-tag:hover {
  background: var(--orange-deep);
  color: #ffffff;
  border-color: var(--orange-glow);
}

/* HERO VISUAL WITH SLIDER */
.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 23, 46, 0.2) 0%, rgba(10, 23, 46, 0.85) 100%);
  pointer-events: none;
}

.hero-visual .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  filter: saturate(0.9) contrast(1.05);
}

.hero-visual .hero-slide.active {
  opacity: 1;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: 42px;
  color: #ffffff;
}

.hero-caption small {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--orange-pale);
}

.hero-caption strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
}

.hero-visual > b {
  position: absolute;
  z-index: 3;
  right: 35px;
  bottom: 35px;
  color: var(--orange-glow);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 68px;
  line-height: 1;
}

/* SECCIÓN DESTACADA: VENTANILLA ÚNICA */
.one-stop-section {
  padding: 70px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.one-stop-card {
  background: var(--navy-dark);
  color: #ffffff;
  border-radius: 16px;
  padding: 55px 45px;
  box-shadow: 0 16px 40px rgba(10, 23, 46, 0.2);
}

.one-stop-content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  margin: 15px 0 20px;
  line-height: 1.08;
}

.one-stop-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  max-width: 850px;
  margin-bottom: 35px;
}

.one-stop-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s var(--ease);
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--orange-border);
  transform: translateY(-4px);
}

.badge-item strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 6px;
}

.badge-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
}

/* ROUTE SECTION */
.route-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
  padding: 7vw 7vw;
  background: var(--bg-site);
  border-bottom: 1px solid var(--line-dark);
}

.intro h2, .process-head h2, .resource-head h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.route-list {
  border-top: 1px solid var(--line-dark);
}

.route-list article {
  display: grid;
  grid-template-columns: 55px 1fr 34px;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.step {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.route-list h3 {
  margin: -4px 0 10px;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.route-list p {
  max-width: 460px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.route-list small {
  align-self: end;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

/* CAROUSEL SECTIONS WITH FADED BACKGROUND IMAGES */
.carousel-faded-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.carousel-faded-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  filter: grayscale(0.5);
  pointer-events: none;
}

.bg-workers::before {
  background-image: url('../IMG/workbridge-professionals.jpg');
}

.bg-destinations::before {
  background-image: url('../IMG/workbridge-hero.jpg');
}

.bg-lifestyle::before {
  background-image: url('../IMG/workbridge-guidance.jpg');
}

.bg-growth::before {
  background-image: url('../IMG/workbridge-study.jpg');
}

.bg-benefits::before {
  background-image: url('../IMG/workbridge-professionals.jpg');
}

/* CAROUSEL ENGINE STYLING */
.section-head-with-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.carousel-head-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.carousel-hint {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-deep);
  letter-spacing: 0.05em;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: var(--navy-dark);
  color: #ffffff;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 12px rgba(10, 23, 46, 0.1);
}

.carousel-btn:hover {
  background: var(--orange-deep);
  border-color: var(--orange-glow);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 25px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-dark);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.carousel-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--orange-deep);
}

/* SECCIÓN MOVILIDAD */
.mobility-section {
  padding: 7vw 0;
  background: var(--bg-site);
}

.mobility-card {
  position: relative;
  background: var(--navy-dark);
  color: #ffffff;
  border-radius: 14px;
  padding: 35px 30px;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.mobility-card:hover {
  background: var(--navy-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--orange-glow);
  opacity: 0.6;
}

.mobility-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin: 0 0 14px;
}

.mobility-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-glow);
  font-weight: 800;
}

/* SECCIÓN DESTINOS GLOBALES */
.destinations-section {
  padding: 7vw 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.destinations-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 30px;
}

.destinations-head h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin: 15px 0 20px;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.tab-btn:hover {
  border-color: var(--orange-deep);
  color: var(--navy-dark);
}

.tab-btn.active {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 23, 46, 0.2);
}

.dest-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-card);
}

.dest-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.dest-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--orange-subtle);
  border: 1px solid var(--orange-border);
  color: var(--orange-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.dest-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.dest-header .flag {
  font-size: 36px;
  line-height: 1;
}

.dest-header h3 {
  font-size: 22px;
  margin: 0;
}

.dest-header small {
  color: var(--text-muted);
  font-size: 12px;
}

.dest-body {
  margin-bottom: 20px;
}

.dest-info p {
  margin: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.dest-info strong {
  color: var(--navy-dark);
}

.dest-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.dest-features span {
  font-size: 12px;
  color: var(--orange-deep);
  font-weight: 700;
}

.dest-cta {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

/* SECCIÓN ESTILO DE VIDA */
.lifestyle-section {
  padding: 7vw 0;
  background: var(--bg-site);
}

.lifestyle-card {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.lifestyle-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.lifestyle-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.lifestyle-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.lifestyle-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}

.lifestyle-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
}

.lifestyle-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 16px;
}

/* SECCIÓN CRECIMIENTO PROFESIONAL */
.career-growth-section {
  padding: 7vw 0;
  background: var(--navy-dark);
  color: #ffffff;
}

.career-growth-section h2 {
  color: #ffffff;
}

.growth-card {
  background: var(--navy-card);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.growth-card:hover {
  background: var(--navy-card-hover);
  border-color: var(--orange-border);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.growth-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin: 0 0 12px;
}

.growth-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.growth-metric {
  padding: 16px;
  background: rgba(184, 62, 20, 0.12);
  border: 1px solid var(--orange-border);
  border-radius: 8px;
}

.growth-metric strong {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: var(--orange-pale);
  line-height: 1;
}

.growth-metric span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}

/* GUIDANCE SECTION */
.guidance-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--bg-site);
}

.guidance-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

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

.guidance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 46, 0.1), rgba(10, 23, 46, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.guidance-overlay p {
  margin: 0;
  color: #ffffff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 24px;
}

.guidance-overlay p small {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-pale);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.guidance-copy {
  align-self: center;
  padding: 7vw 8vw;
}

.guidance-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  line-height: 1;
}

.guidance-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* SECCIÓN 03: RUTA PASO A PASO 360° (#acompanamiento) */
.process-360-section {
  padding: 7vw 0;
  background: var(--bg-alt);
}

.process-360-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.process-360-head h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin: 15px 0 20px;
}

.timeline-stepper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-stepper::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 45px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange-deep) 0%, var(--navy-dark) 100%);
}

.timeline-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-badge {
  width: 90px;
  height: 44px;
  background: var(--navy-dark);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  box-shadow: 0 4px 14px rgba(10, 23, 46, 0.2);
  flex-shrink: 0;
}

.step-content {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 28px 32px;
  flex-grow: 1;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
}

.timeline-step:hover .step-content {
  border-color: var(--orange-border);
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.step-content h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.step-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.step-tags span {
  background: var(--bg-alt);
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 15px;
  border: 1px solid var(--line-dark);
}

/* PROCESS SECTION */
.process-section {
  padding: 7vw 7vw;
  background: var(--bg-site);
  border-top: 1px solid var(--line-dark);
}

.process-head {
  display: grid;
  grid-template-columns: 0.93fr 0.9fr 1fr;
  gap: 4vw;
  align-items: end;
}

.process-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 5px;
}

.process-head h2 {
  grid-column: 1 / 3;
  max-width: 600px;
}

.process-head > p:not(.eyebrow) {
  max-width: 330px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 38px 1fr 38px 1fr;
  margin-top: 55px;
}

.process-steps article {
  padding-right: 20px;
}

.process-steps article > span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-steps h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.process-steps p {
  max-width: 260px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.process-steps > i {
  margin-top: 14px;
  border-top: 1px dashed var(--orange-deep);
  height: 1px;
}

/* SECCIÓN BENEFICIOS */
.benefits-section {
  padding: 7vw 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-dark);
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--navy-dark);
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* RESOURCES SECTION */
.resources {
  padding: 7vw 5vw;
  background: var(--bg-site);
  border-top: 1px solid var(--line-dark);
}

.resource-head {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8vw;
  margin: 0 4vw 45px;
}

.cards {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.cards article {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy-dark);
}

.cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 46, 0.1) 20%, rgba(10, 23, 46, 0.9) 100%);
}

.cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.cards article:hover img {
  transform: scale(1.04);
}

.cards article > div {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  color: #ffffff;
}

.cards p {
  margin: 0 0 12px;
  color: var(--orange-pale);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cards h3 {
  max-width: 470px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.cards a {
  position: absolute;
  right: 36px;
  bottom: 40px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.25s var(--ease);
}

.cards a:hover {
  border-color: var(--orange-glow);
  background: var(--orange-deep);
}

/* CONTACT SECTION */
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--navy-dark);
  color: #ffffff;
}

.contact-aside {
  padding: 7vw 6vw 7vw 7vw;
}

.contact-aside h2 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.contact-aside > p:not(.eyebrow) {
  max-width: 420px;
  margin: 24px 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

.contact-aside > a {
  display: inline-block;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange-pale);
  border-bottom: 2px solid var(--orange-deep);
  padding-bottom: 4px;
}

.contact-aside > small {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.contact form {
  padding: 7vw;
  background: #ffffff;
  color: var(--text-dark);
}

.contact label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact input, .contact select, .contact textarea {
  width: 100%;
  resize: vertical;
  border: 0;
  border-bottom: 2px solid var(--line-dark);
  border-radius: 0;
  padding: 8px 0 14px;
  outline: none;
  background: transparent;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  transition: border-color 0.25s var(--ease);
}

.contact option {
  background: #ffffff;
  color: var(--text-dark);
}

.contact input::placeholder, .contact textarea::placeholder {
  color: var(--text-muted);
}

.contact input:focus, .contact select:focus, .contact textarea:focus {
  border-color: var(--orange-deep);
}

.legal {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.6;
}

/* FOOTER */
footer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.7fr auto;
  gap: 28px;
  align-items: start;
  padding: 35px 5vw;
  background: var(--navy-deep);
  color: #ffffff;
}

footer .brand {
  color: #ffffff;
}

footer p {
  max-width: 440px;
  margin: 4px 0 0;
  color: var(--text-light);
  font-size: 11px;
  line-height: 1.65;
}

footer small {
  color: var(--text-muted);
  font-size: 11px;
  white-space: nowrap;
}

/* SUBPAGE STYLES */
.subpage-body {
  background: var(--bg-alt);
}

.subpage-main {
  min-height: calc(100vh - 72px - 100px);
}

.subpage-hero {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 50px 0 60px;
  border-bottom: 1px solid var(--line-light);
}

.breadcrumb {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--orange-pale);
}

.subpage-title-box h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  margin: 10px 0 15px;
  line-height: 1.05;
}

.subpage-intro {
  max-width: 650px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.subpage-content {
  padding: 50px 5vw 70px;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 45px;
}

.subpage-text h2 {
  font-size: 26px;
  margin: 25px 0 14px;
}

.subpage-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.info-box-highlight {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 25px 0;
  box-shadow: var(--shadow-card);
}

.info-box-highlight h3 {
  font-size: 19px;
  margin: 0 0 14px;
}

.subpage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subpage-list li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.features-subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 25px 0;
}

.sub-feat {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  padding: 20px;
  border-radius: 10px;
}

.sub-feat h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--navy-dark);
}

.sub-feat p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.cta-banner-subpage {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin-top: 35px;
}

.cta-banner-subpage h3 {
  color: #ffffff;
  margin: 0 0 8px;
  font-size: 22px;
}

.cta-banner-subpage p {
  color: var(--text-light);
  margin-bottom: 18px;
}

.subpage-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.sidebar-card h3 {
  font-size: 19px;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
}

.sidebar-stat {
  margin-bottom: 16px;
}

.sidebar-stat strong {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--orange-deep);
  line-height: 1;
}

.sidebar-stat span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
}

/* ==========================================================================
   ADAPTABILIDAD RESPONSIVE OPTIMIZADA PARA DISPOSITIVOS MÓVILES Y TABLETS
   ========================================================================== */

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 60px 6vw 40px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

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

  .one-stop-card {
    padding: 40px 28px;
  }

  .one-stop-badges {
    grid-template-columns: 1fr;
  }

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

  .features-subpage-grid {
    grid-template-columns: 1fr;
  }

  .carousel-slide {
    flex: 0 0 calc(85% - 12px);
    min-width: 270px;
  }

  .section-head-with-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .guidance-section, .route-section, .contact {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .process-steps > i {
    display: none;
  }

  .timeline-stepper::before {
    left: 20px;
  }

  .timeline-step {
    flex-direction: column;
    gap: 12px;
  }

  .step-content {
    padding: 22px 20px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 64px;
    padding: 0 5vw;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px 6vw 24px;
    background: #ffffff;
    box-shadow: 0 20px 30px rgba(10, 23, 46, 0.15);
    border-bottom: 1px solid var(--line-dark);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.25s var(--ease);
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 10px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-cta {
    align-self: flex-start;
    margin-top: 6px;
  }

  .menu-button {
    display: block;
  }

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

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

  .contact form {
    padding: 10vw 6vw;
  }

  footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 6vw;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding: 45px 5vw 30px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .lede {
    font-size: 14px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .button, .light-button, .dark-button {
    width: 100%;
    padding: 14px 20px;
  }

  .carousel-slide {
    flex: 0 0 calc(92% - 10px);
    min-width: 250px;
  }

  .dest-card, .mobility-card, .lifestyle-card, .growth-card, .benefit-card {
    padding: 24px 20px;
  }

  .one-stop-card {
    padding: 30px 20px;
  }
}
