:root {
  --bg-dark: #08142f;
  --bg-dark-2: #0d1d45;
  --bg-light: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #eef2ff;
  --text-dark: #111827;
  --text-medium: #4b5563;
  --text-light: #e5e7eb;
  --line: rgba(17, 24, 39, 0.08);
  --line-light: rgba(255, 255, 255, 0.12);
  --primary: #6d4cff;
  --primary-2: #8a6bff;
  --shadow-soft: 0 20px 50px rgba(8, 20, 47, 0.08);
  --shadow-card: 0 12px 30px rgba(8, 20, 47, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1360px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
   width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

section {
  padding: 25px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 20, 47, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-light);
}

.site-header .container {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-block {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  display: block;
  height: 75px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
}

.header-actions,
.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(109, 76, 255, 0.28);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-outline {
  border-color: rgba(17, 24, 39, 0.18);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow,
.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-label.centered {
  text-align: center;
  color: rgba(17, 24, 39, 0.5);
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  color: #fff;
  max-width: 760px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.35rem);
  margin-bottom: 18px;
  max-width: 760px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

p {
  color: var(--text-medium);
  font-size: 1rem;
}

.hero-section {
  background:
    radial-gradient(circle at top right, rgba(109, 76, 255, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg-dark) 0%, #061127 100%);
  padding: 68px 0 92px;
  overflow: hidden;
}

.hero-grid,
.school-layout,
.split-heading,
.cta-box {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  min-height: 720px;
}

.hero-copy {
  max-width: 680px;
}

.hero-text {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin-bottom: 34px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: absolute;
  border-radius: 40px;
}

.hero-card-main {
  width: min(100%, 440px);
  overflow: hidden;
  transform: rotate(7deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  z-index: 3;
}

.hero-card-main img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-card-back {
  width: 320px;
  height: 520px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
  right: 10px;
  top: 50px;
  transform: rotate(12deg);
  z-index: 1;
}

.hero-card-line {
  width: 90px;
  height: 260px;
  border: 2px solid rgba(109, 76, 255, 0.7);
  left: 28px;
  top: 110px;
  transform: rotate(12deg);
  z-index: 2;
  background: transparent;
}

.trust-section {
  background: #f1f3f8;
  padding: 36px 0 42px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-top: 26px;
  align-items: center;
}

.client-logo {
  max-width: 140px;
  width: 100%;
  height: 44px;
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.school-section,
.solutions-section,
.team-section,
.method-section {
  background: var(--bg-light);
}





.school-grid,
.card-grid,
.steps-grid,
.team-grid {
  display: grid;
  gap: 22px;
}

.school-layout {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 34px;
  padding: 48px;
  box-shadow: 0 18px 45px rgba(8, 20, 47, 0.06);
  gap: 42px;
  align-items: start;
}

.school-copy {
  max-width: 460px;
}

.school-copy h2 {
  max-width: 520px;
  margin-bottom: 20px;
}

.school-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 30px;
  font-size: 1.20rem;
  line-height: 1.65;
  color: #516074;
}

.school-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.school-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  min-height: 245px;
  padding: 28px 28px 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 28px rgba(8, 20, 47, 0.05);
  display: flex;
  flex-direction: column;
}

.info-card h3 {
  font-size: 1.18rem;
  line-height: 1.12;
  margin-bottom: 14px;
  max-width: 210px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.info-card p {
  font-size: 0.98rem;
  line-height: 1.62;
  color: #516074;
  max-width: 240px;
}

.info-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.info-icon i {
  font-size: 27px;
  line-height: 1;
}

.icon-purple {
  background: #EEE9FF;
  color: #7C5CFF;
}

.icon-blue {
  background: #E8F1FF;
  color: #3B82F6;
}

.icon-green {
  background: #E7FBF7;
  color: #14B8A6;
}

.icon-orange {
  background: #FFF4DD;
  color: #F59E0B;
}

.info-card .card-arrow {
  margin-top: auto;
  align-self: flex-end;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.info-card:nth-child(1) .card-arrow {
  color: #7C5CFF;
}

.info-card:nth-child(2) .card-arrow {
  color: #3B82F6;
}

.info-card:nth-child(3) .card-arrow {
  color: #14B8A6;
}

.info-card:nth-child(4) .card-arrow {
  color: #F59E0B;
}

.school-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding-top: 6px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #5C667A;
  position: relative;
  text-align: center;
}

.benefit-item i {
  font-size: 0.98rem;
  color: #7A8498;
}

.benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(17, 24, 39, 0.10);
  transform: translateY(-50%);
}

@media (max-width: 1180px) {
  .school-layout {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }

  .school-copy {
    max-width: 100%;
  }

  .school-copy p:not(.eyebrow) {
    max-width: 640px;
  }
}

@media (max-width: 820px) {
  .school-grid {
    grid-template-columns: 1fr;
  }

  .school-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }

  .benefit-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .school-layout {
    padding: 30px 22px;
  }

  .school-benefits {
    grid-template-columns: 1fr;
  }

  .benefit-item::after {
    display: none !important;
  }

  .info-card {
    min-height: auto;
  }

  .info-card h3,
  .info-card p {
    max-width: 100%;
  }
}


.split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  margin-bottom: 36px;
}

.four-col {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  min-height: 260px;
}

.team-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  align-items: stretch;
}

.team-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card.featured img {
  aspect-ratio: 1.1 / 1;
}

.team-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.text-link {
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-section {
  background: var(--bg-light);
  padding-top: 0;
}

.cta-box {
  grid-template-columns: minmax(0, 1fr) auto;
  background:
    radial-gradient(circle at right center, rgba(109, 76, 255, 0.28), transparent 30%),
    linear-gradient(180deg, var(--bg-dark) 0%, #081634 100%);
  padding: 42px 48px;
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 40px rgba(8, 20, 47, 0.16);
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
}

.site-footer {
  background: #061127;
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.94rem;
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  /* =========================
   MENU RESPONSIVE
========================= */

.menu-toggle {
  display: none !important;
  appearance: none;
  -webkit-appearance: none;
  width: 46px;
  height: 46px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

@media (max-width: 1180px) {
  .site-header .container {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 16px;
  }

  .logo-block {
    justify-self: start;
  }

 .menu-toggle {
  display: inline-flex !important;
  justify-self: end;
}

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    background: rgba(8, 20, 47, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
  }

  .main-nav a:hover,
  .main-nav a:focus,
  .main-nav a.active {
    background: rgba(124, 92, 255, 0.18);
    color: #ffffff;
  }

  .main-nav a.active::after {
    display: none;
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .header-actions .btn {
    width: 100%;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .site-header .container {
    width: min(100%, calc(100% - 32px));
    grid-template-columns: 1fr auto;
  }

  .site-logo {
    height: 62px;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }
}

  .hero-grid,
  .school-layout,
  .split-heading,
  .cta-box,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .four-col,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  section {
    padding: 72px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .site-header .container {
    min-height: 76px;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .header-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-card-main {
    width: 280px;
  }

  .hero-card-back {
    width: 220px;
    height: 360px;
  }

  .hero-card-line {
    left: 10px;
    top: 50px;
    height: 180px;
  }

  .school-layout {
    padding: 32px 24px;
  }

  .school-grid,
  .four-col,
  .steps-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 32px 24px;
  }
}

.five-col {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  min-height: 320px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 30px rgba(8, 20, 47, 0.06);
}

.service-card h3 {
    text-align: center;
  font-size: 1.2rem;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 210px;
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #516074;
  max-width: 220px;
}

.icon-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.icon-circle i {
  font-size: 30px;
}

.icon-purple {
  background: #EEE9FF;
  color: #7C5CFF;
}

.icon-blue {
  background: #E8F1FF;
  color: #3B82F6;
}

.icon-teal {
  background: #E7FBF7;
  color: #14B8A6;
}

.icon-amber {
  background: #FFF4DD;
  color: #F59E0B;
}

.icon-coral {
  background: #FFEAE5;
  color: #F97360;
}

.card-arrow {
  margin-top: auto;
  align-self: flex-end;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.service-card:nth-child(1) .card-arrow {
  color: #7C5CFF;
}

.service-card:nth-child(2) .card-arrow {
  color: #3B82F6;
}

.service-card:nth-child(3) .card-arrow {
  color: #14B8A6;
}

.service-card:nth-child(4) .card-arrow {
  color: #F59E0B;
}

.service-card:nth-child(5) .card-arrow {
  color: #F97360;
}

@media (max-width: 1280px) {
  .five-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .five-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .five-col {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3,
  .service-card p {
    max-width: 100%;
  }
}


.method-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
  position: relative;
}

.flow-step {
  position: relative;
}

.flow-node {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  position: relative;
  border: 1px solid transparent;
}

.flow-node::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 10px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.flow-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0px);
 width: 240px;
  height: 2px;
  transform: translateY(-50%);
  opacity: 0.9;
}

.flow-step:last-child .flow-node::after {
  display: none;
}

.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-icon i {
  font-size: 28px;
  line-height: 1;
}

.flow-content {
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
}

.flow-content h3 {
  font-size: 1.30rem;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #111827;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.flow-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #516074;
}

.flow-purple {
  background: rgba(124, 92, 255, 0.08);
  border-color: rgba(124, 92, 255, 0.18);
}

.flow-purple .flow-icon {
  color: #7C5CFF;
}

.flow-purple::after {
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.65), rgba(59, 130, 246, 0.38));
}

.flow-blue {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.18);
}

.flow-blue .flow-icon {
  color: #3B82F6;
}

.flow-blue::after {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.65), rgba(20, 184, 166, 0.38));
}

.flow-green {
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.18);
}

.flow-green .flow-icon {
  color: #14B8A6;
}

.flow-green::after {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.65), rgba(249, 158, 11, 0.38));
}

.flow-orange {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.18);
}

.flow-orange .flow-icon {
  color: #F59E0B;
}

@media (max-width: 1180px) {
  .method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .flow-node::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .method-flow {
    grid-template-columns: 1fr;
  }

  .flow-node {
    width: 96px;
    height: 96px;
  }

  .flow-icon i {
    font-size: 24px;
  }

  .flow-content h3 {
    font-size: 1.55rem;
  }
}


/* =========================
   SOLUCIONES PAGE
========================= */

.solutions-page {
  background: #f4f6fb;
  padding: 5px 0 96px;
}

.solutions-page .container {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

/* =========================
   HERO SOLUCIONES
========================= */

.solutions-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  gap: 56px;
  align-items: center;
  padding: 8px 0 10px;
}

.solutions-hero-copy {
  max-width: 560px;
}

.solutions-hero-copy .eyebrow {
  margin-bottom: 18px;
}

.solutions-hero-copy h1 {
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  color: #111827;
  margin-bottom: 26px;
  max-width: 640px;
}



.solutions-hero-copy .hero-text {
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.68;
  color: #526074;
  margin-bottom: 30px;
}

.solutions-hero-copy .section-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.solutions-hero-copy .btn {
  min-width: 240px;
}

/* DIAGRAMA */
.solutions-map {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-map::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(124, 92, 255, 0.14);
  border-radius: 50%;
}

.solutions-map::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(124, 92, 255, 0.12);
  border-radius: 50%;
}

.map-center {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 18px 40px rgba(8, 20, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  z-index: 2;
}

.map-card {
  position: absolute;
  width: 168px;
  min-height: 150px;
  padding: 18px 16px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 14px 32px rgba(8, 20, 47, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
}

.map-card h3 {
  font-size: 0.98rem;
  line-height: 1.22;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.map-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.map-icon i {
  font-size: 1.3rem;
  line-height: 1;
}

.map-top {
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}

.map-right {
  top: 110px;
  right: 0;
}

.map-bottom-right {
  bottom: 34px;
  right: 38px;
}

.map-bottom-left {
  bottom: 34px;
  left: 38px;
}

.map-left {
  top: 110px;
  left: 0;
}

@media (max-width: 1280px) {
  .solutions-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solutions-hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 920px) {
  .solutions-map {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .solutions-hero-copy h1 {
    font-size: 2.5rem;
  }

  .solutions-map {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .solutions-map::before,
  .solutions-map::after,
  .map-center {
    display: none;
  }

  .map-card {
    position: static;
    transform: none !important;
    width: 100%;
    min-height: auto;
  }
}

/* =========================
   NUESTRA FORMA DE TRABAJAR
========================= */

.solutions-approach {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}

.approach-copy {
  max-width: 420px;
}

.approach-copy .eyebrow {
  margin-bottom: 14px;
}

.approach-copy h2 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #111827;
  margin-bottom: 18px;
  max-width: 380px;
}

.approach-copy p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.68;
  color: #516074;
  max-width: 360px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.approach-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.approach-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 28px;
  right: 50px;
  font-size: 1rem;
  line-height: 1;
  color: rgba(124, 92, 255, 0.55);
  font-weight: 500;
}

.approach-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(124, 92, 255, 0.10);
  background: #F3EEFF;
  box-shadow: none;
}

.approach-icon span {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #7C5CFF;
}

.approach-step-copy h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.approach-step-copy p {
  font-size: 0.96rem;
  line-height: 1.58;
  color: #516074;
  margin: 0;
  max-width: 180px;
}

.step-number {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #7C5CFF;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1180px) {
  .solutions-approach {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .approach-copy {
    max-width: 100%;
  }

  .approach-copy h2,
  .approach-copy p:not(.eyebrow) {
    max-width: none;
  }

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .approach-step::after {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-icon {
    width: 64px;
    height: 64px;
  }

  .approach-icon span {
    font-size: 1.05rem;
  }
}
/* =========================
   ECOSISTEMA DE SOLUCIONES
========================= */

.solutions-ecosystem {
  padding-top: 6px;
}

.solutions-ecosystem .eyebrow {
  margin-bottom: 12px;
}

.solutions-ecosystem h2 {
  font-size: clamp(2.05rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #111827;
  margin-bottom: 26px;
  max-width: 620px;
}

.card-grid.six-col {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.six-col .service-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 22px;
  padding: 18px 18px 16px;
  min-height: 254px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-grid.six-col .icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-grid.six-col .icon-circle i {
  font-size: 1.22rem;
  line-height: 1;
}

.card-grid.six-col .service-card h3 {
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0 0 12px 0;
  max-width: 170px;
}

.card-grid.six-col .service-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #516074;
  margin: 0;
  max-width: 180px;
}

.card-grid.six-col .card-arrow {
  margin-top: auto;
  align-self: flex-end;
  font-size: 1.28rem;
  line-height: 1;
  text-decoration: none;
  font-weight: 500;
}

/* Colores de flecha por tarjeta */
.card-grid.six-col .service-card:nth-child(1) .card-arrow {
  color: #7C5CFF;
}

.card-grid.six-col .service-card:nth-child(2) .card-arrow {
  color: #3B82F6;
}

.card-grid.six-col .service-card:nth-child(3) .card-arrow {
  color: #14B8A6;
}

.card-grid.six-col .service-card:nth-child(4) .card-arrow {
  color: #F59E0B;
}

.card-grid.six-col .service-card:nth-child(5) .card-arrow {
  color: #7C5CFF;
}

/* fondos de iconos */
.icon-purple {
  background: #EEE9FF;
  color: #7C5CFF;
}

.icon-blue {
  background: #EAF3FF;
  color: #3B82F6;
}

.icon-green {
  background: #E7FBF7;
  color: #14B8A6;
}

.icon-orange {
  background: #FFF4DD;
  color: #F59E0B;
}

.icon-purple-soft {
  background: #F1E9FF;
  color: #8A63FF;
}

/* Responsive */
@media (max-width: 1280px) {
  .card-grid.six-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .card-grid.six-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid.six-col {
    grid-template-columns: 1fr;
  }

  .card-grid.six-col .service-card {
    min-height: auto;
  }
}

/* =========================
   ECOSISTEMA DE SOLUCIONES
========================= */

.solutions-ecosystem {
  padding-top: 6px;
}

.solutions-ecosystem .eyebrow {
  margin-bottom: 12px;
}

.solutions-ecosystem h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #111827;
  margin-bottom: 26px;
  max-width: 700px;
}

.card-grid.six-col {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.six-col .service-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 22px;
  padding: 20px 18px 18px;
  min-height: 256px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-grid.six-col .icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-grid.six-col .icon-circle i {
  font-size: 1.35rem;
  line-height: 1;
}

.card-grid.six-col .service-card h3 {
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0 0 12px 0;
  max-width: 180px;
}

.card-grid.six-col .service-card p {
  font-size: 0.92rem;
  line-height: 1.52;
  color: #516074;
  margin: 0;
  max-width: 190px;
}

.card-grid.six-col .card-arrow {
  margin-top: auto;
  align-self: flex-end;
  font-size: 1.3rem;
  line-height: 1;
  text-decoration: none;
  font-weight: 500;
}

/* Colores de flecha por tarjeta */
.card-grid.six-col .service-card:nth-child(1) .card-arrow {
  color: #7C5CFF;
}

.card-grid.six-col .service-card:nth-child(2) .card-arrow {
  color: #3B82F6;
}

.card-grid.six-col .service-card:nth-child(3) .card-arrow {
  color: #14B8A6;
}

.card-grid.six-col .service-card:nth-child(4) .card-arrow {
  color: #F59E0B;
}

.card-grid.six-col .service-card:nth-child(5) .card-arrow {
  color: #7C5CFF;
}

.card-grid.six-col .service-card:nth-child(6) .card-arrow {
  color: #7C5CFF;
}

/* fondos de iconos */
.icon-purple {
  background: #EEE9FF;
  color: #7C5CFF;
}

.icon-blue {
  background: #EAF3FF;
  color: #3B82F6;
}

.icon-green {
  background: #E7FBF7;
  color: #14B8A6;
}

.icon-orange {
  background: #FFF4DD;
  color: #F59E0B;
}

.icon-purple-soft {
  background: #F1E9FF;
  color: #8A63FF;
}

.icon-lilac {
  background: #F1E9FF;
  color: #8A63FF;
}

/* Responsive */
@media (max-width: 1280px) {
  .card-grid.six-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .card-grid.six-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid.six-col {
    grid-template-columns: 1fr;
  }

  .card-grid.six-col .service-card {
    min-height: auto;
  }
}
/* =========================
   ARQUITECTURA ORGANIZACIONAL
========================= */

#arquitectura.arquitectura-detail {
  display: grid !important;
  grid-template-columns: 430px minmax(520px, 1fr) 320px !important;
  column-gap: 28px !important;
  align-items: stretch !important;
}

#arquitectura .arquitectura-image,
#arquitectura .arquitectura-when {
  align-self: start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#arquitectura .arquitectura-content {
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  align-self: stretch !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#arquitectura .arquitectura-image {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

#arquitectura .arquitectura-image img {
  width: 100% !important;
  max-width: 430px !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 24px rgba(8, 20, 47, 0.06) !important;
}

#arquitectura .solution-header {
  display: grid !important;
  grid-template-columns: 42px 1fr !important;
  gap: 14px !important;
  align-items: start !important;
  margin: 0 0 16px 0 !important;
}

#arquitectura .solution-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

#arquitectura .arquitectura-icon-circle {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: #EEE9FF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#arquitectura .arquitectura-icon-circle i {
  color: #7C5CFF !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

#arquitectura .arquitectura-label {
  margin: 0 0 4px 0 !important;
  color: #7C5CFF !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

#arquitectura .arquitectura-content h3 {
  margin: 0 !important;
  max-width: 620px !important;
  font-size: 28px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  color: #111827 !important;
}

#arquitectura .arquitectura-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 0 0 !important;
}

#arquitectura .arquitectura-list li {
  position: relative !important;
  padding-left: 30px !important;
  margin-bottom: 12px !important;
  font-size: 17px !important;
  line-height: 1.62 !important;
  color: #516074 !important;
}

#arquitectura .arquitectura-list li:last-child {
  margin-bottom: 0 !important;
}

#arquitectura .arquitectura-list li::before {
  content: "\f00c" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #7C5CFF !important;
  color: #FFFFFF !important;
  font-size: 0.52rem !important;
  line-height: 16px !important;
  text-align: center !important;
}

#arquitectura .arquitectura-list li::after {
  content: none !important;
}

#arquitectura .arquitectura-when {
  width: 100% !important;
  height: 100% !important;
  max-width: 320px !important;
  background: #F5F0FF !important;
  border: 1px solid rgba(124, 92, 255, 0.12) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  box-shadow: none !important;
  margin-top: 4px !important;
}

#arquitectura .arquitectura-when h4 {
  margin: 0 0 8px 0 !important;
  color: #7C5CFF !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

#arquitectura .arquitectura-when p {
  margin: 0 !important;
  color: #5C667A !important;
  font-size: 0.97rem !important;
  line-height: 1.58 !important;
}

/* Responsive */
@media (max-width: 1180px) {
  #arquitectura.arquitectura-detail {
    grid-template-columns: 1fr !important;
  }

  #arquitectura .arquitectura-image img {
    max-width: 520px !important;
  }

  #arquitectura .arquitectura-content {
    height: auto !important;
  }

  #arquitectura .arquitectura-when {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  #arquitectura .arquitectura-content h3 {
    font-size: 28px !important;
  }

  #arquitectura .arquitectura-list li {
    font-size: 0.95rem !important;
  }

  #arquitectura .arquitectura-when {
    padding: 16px !important;
    border-radius: 16px !important;
  }
}


/* =========================
   LIDERAZGO Y CULTURA
========================= */

#liderazgo.solution-detail.reverse {
  display: grid !important;
  grid-template-columns: 520px 360px 450px !important;
  column-gap: 28px !important;
  align-items: start !important;
}

#liderazgo .solution-content,
#liderazgo .liderazgo-when,
#liderazgo .solution-image {
  align-self: start !important;
}

#liderazgo .solution-content {
  max-width: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Encabezado: círculo + label en la misma línea */
#liderazgo .liderazgo-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 12px 0 !important;
}

#liderazgo .solution-number.liderazgo-badge {
  width: 45px !important;
  height: 45px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  border-radius: 50% !important;
  background: #3B82F6 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

#liderazgo .solution-number.liderazgo-badge i {
  font-size: 1rem !important;
  line-height: 1 !important;
  color: #FFFFFF !important;
}

#liderazgo .solution-label {
  margin: 0 !important;
  color: #3B82F6 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

#liderazgo .solution-content h3 {
  margin: 0 0 18px 0 !important;
  max-width: 520px !important;
  font-size: 1.5rem !important;
  line-height: 1.14 !important;
  letter-spacing: -0.03em !important;
  color: #111827 !important;
}

#liderazgo .solution-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#liderazgo .solution-list li {
  position: relative !important;
  padding-left: 24px !important;
  margin-bottom: 8px !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
  color: #516074 !important;
}

#liderazgo .solution-list li:last-child {
  margin-bottom: 0 !important;
}

#liderazgo .solution-list li::before {
  content: "\f00c" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #3B82F6 !important;
  color: #FFFFFF !important;
  font-size: 0.52rem !important;
  line-height: 16px !important;
  text-align: center !important;
}

#liderazgo .solution-list li::after {
  content: none !important;
}

#liderazgo .liderazgo-when {
  background: #EAF3FF !important;
  border: 1px solid rgba(59, 130, 246, 0.12) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  box-shadow: none !important;
  width: 100% !important;
  height: 100%;
  max-width: 360px !important;
}

#liderazgo .liderazgo-when h4 {
  margin: 0 0 8px 0 !important;
  color: #3B82F6 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

#liderazgo .liderazgo-when p {
  margin: 0 !important;
  color: #5C667A !important;
  font-size: 0.97rem !important;
  line-height: 1.58 !important;
}

#liderazgo .solution-image {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

#liderazgo .solution-image img {
  width: 100% !important;
  max-width: 450px !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 24px rgba(8, 20, 47, 0.06) !important;
}

/* Responsive */
@media (max-width: 1180px) {
  #liderazgo.solution-detail.reverse {
    grid-template-columns: 1fr !important;
    row-gap: 20px !important;
  }

  #liderazgo .liderazgo-when {
    max-width: 100% !important;
    margin-top: 0 !important;
  }

  #liderazgo .solution-image img {
    max-width: 560px !important;
  }
}

@media (max-width: 640px) {
  #liderazgo .liderazgo-header {
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  #liderazgo .solution-number.liderazgo-badge {
    width: 45px !important;
    height: 45px !important;
    min-width: 26px !important;
    min-height: 26px !important;
  }

  #liderazgo .solution-number.liderazgo-badge i {
    font-size: 1rem !important;
  }

  #liderazgo .solution-content h3 {
    font-size: 1.28rem !important;
  }

  #liderazgo .solution-list li {
    font-size: 0.95rem !important;
  }

  #liderazgo .liderazgo-when {
    padding: 16px !important;
    border-radius: 16px !important;
  }
}
/* =========================
   APRENDIZAJE ESTRATEGICO + ESCUELA
========================= */

.learning-detail {
  display: grid;
  grid-template-columns: minmax(50px, 1.05fr) minmax(420px, 0.95fr);
  align-items: start;
  gap: 30px;
}

.learning-detail .learning-copy {
  max-width: none;
}

.learning-header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}

.learning-icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #E7FBF7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.learning-icon-circle i {
  font-size: 1rem;
  line-height: 1;
  color: #14B8A6;
}

.learning-detail .solution-label {
  margin: 0 0 6px 0;
  color: #14B8A6;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.2;
}

.learning-detail .learning-copy h3 {
  margin: 0;
  max-width: 680px;
  font-size: 1.45rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #111827;
}

.learning-intro {
  margin: 0 0 18px 0;
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #516074;
}

.learning-detail .learning-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.learning-detail .learning-box {
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: none;
  border: 1px solid transparent;
}

.learning-box-org {
  background: #F2FCFA;
  border-color: rgba(20, 184, 166, 0.12);
}

.learning-box-school {
  background: #F5F0FF;
  border-color: rgba(124, 92, 255, 0.12);
}

.learning-detail .learning-box h4 {
  margin: 0 0 12px 0;
  font-size: 0.82rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #111827;
  text-transform: uppercase;
}

.learning-box-org h4 {
  color: #14B8A6;
}

.learning-box-school h4 {
  color: #7C5CFF;
}

.learning-detail .learning-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learning-detail .learning-box li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #516074;
}

.learning-box-org li::before,
.learning-box-school li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 0.5rem;
  line-height: 16px;
  text-align: center;
}

.learning-box-org li::before {
  content: "\f00c";
  background: #14B8A6;
}

.learning-box-school li::before {
  content: "\f00c";
  background: #7C5CFF;
}

.learning-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.learning-actions .btn {
  min-width: 100%;
}

.learning-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.learning-image img {
  width: 100%;
  max-width: 660px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(8, 20, 47, 0.06);
}

/* Responsive */
@media (max-width: 1180px) {
  .learning-detail {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .learning-image img {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .learning-detail .learning-columns {
    grid-template-columns: 1fr;
  }

  .learning-actions {
    width: 100%;
  }

  .learning-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .learning-detail .learning-copy h3 {
    font-size: 1.28rem;
  }

  .learning-intro,
  .learning-detail .learning-box li {
    font-size: 0.94rem;
  }

  .learning-detail .learning-box {
    padding: 16px;
    border-radius: 16px;
  }
}


/* =========================
   COACHING EJECUTIVO
========================= */

/* ===== COACHING EJECUTIVO FINAL ===== */

#coaching.coaching-detail {
  display: grid !important;
  grid-template-columns: 430px minmax(520px, 1fr) 320px !important;
  column-gap: 28px !important;
  align-items: start !important;
}

#coaching.coaching-detail .solution-image,
#coaching.coaching-detail .coaching-content,
#coaching.coaching-detail .coaching-when {
  align-self: start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#coaching.coaching-detail .solution-image {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

#coaching.coaching-detail .solution-image img {
  width: 100% !important;
  max-width: 430px !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 24px rgba(8, 20, 47, 0.06) !important;
}

#coaching.coaching-detail .coaching-content {
  max-width: none !important;
}

#coaching.coaching-detail .solution-header {
  display: grid !important;
  grid-template-columns: 42px 1fr !important;
  gap: 14px !important;
  align-items: start !important;
  margin: 0 0 10px 0 !important;
}

#coaching.coaching-detail .solution-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

#coaching.coaching-detail .coaching-icon-circle {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  background: #FFF4DD !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#coaching.coaching-detail .coaching-icon-circle i {
  color: #F59E0B !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

#coaching.coaching-detail .solution-label {
  margin: 0 0 4px 0 !important;
  color: #7C5CFF !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

#coaching.coaching-detail .coaching-content h3 {
  margin: 0 !important;
  max-width: 620px !important;
  font-size: 28px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  color: #111827 !important;
}

#coaching.coaching-detail .coaching-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 10px 0 0 0 !important;
}

#coaching.coaching-detail .coaching-list li {
  position: relative !important;
  padding-left: 30px !important;
  margin-bottom: 6px !important;
  font-size: 18px !important;
  line-height: 1.58 !important;
  color: #516074 !important;
}

#coaching.coaching-detail .coaching-list li::before {
  content: "\f00c" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #F59E0B !important;
  color: #FFFFFF !important;
  font-size: 0.52rem !important;
  line-height: 16px !important;
  text-align: center !important;
}

#coaching.coaching-detail .coaching-list li::after {
  content: none !important;
}

#coaching.coaching-detail .coaching-when {
  width: 100% !important;
  max-width: 320px !important;
  background: #FFF8EF !important;
  border: 1px solid rgba(245, 158, 11, 0.12) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  height: 100% !important;
  box-shadow: none !important;
}

#coaching.coaching-detail .coaching-when h4 {
  margin: 0 0 8px 0 !important;
  color: #F59E0B !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

#coaching.coaching-detail .coaching-when p {
  margin: 0 !important;
  color: #5C667A !important;
  font-size: 0.97rem !important;
  line-height: 1.58 !important;
}

@media (max-width: 1180px) {
  #coaching.coaching-detail {
    grid-template-columns: 1fr !important;
  }

  #coaching.coaching-detail .solution-image img {
    max-width: 520px !important;
  }

  #coaching.coaching-detail .coaching-when {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  #coaching.coaching-detail .coaching-content h3 {
    font-size: 1.28rem !important;
  }

  #coaching.coaching-detail .coaching-list li {
    font-size: 0.95rem !important;
  }

  #coaching.coaching-detail .coaching-when {
    padding: 16px !important;
    border-radius: 16px !important;
  }
}


/* =========================
   TALENTO CLAVE
========================= */

#talento.talento-detail {
  display: grid !important;
  grid-template-columns: 520px 300px 520px !important;
  column-gap: 28px !important;
  align-items: start !important;
}

#talento .talento-content,
#talento .talento-when,
#talento .talento-image {
  align-self: start !important;
}

#talento .talento-content {
  max-width: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#talento .solution-header {
  display: grid !important;
  grid-template-columns: 42px 1fr !important;
  gap: 14px !important;
  align-items: start !important;
  margin: 0 0 10px 0 !important;
}

#talento .solution-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

#talento .talento-icon-circle {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  background: #F1E9FF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#talento .talento-icon-circle i {
  color: #7C5CFF !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

#talento .talento-label {
  margin: 0 0 4px 0 !important;
  color: #7C5CFF !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

#talento .talento-content h3 {
  margin: 0 !important;
  max-width: 520px !important;
  font-size: 1.45rem !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  color: #111827 !important;
}

#talento .talento-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 10px 0 0 0 !important;
}

#talento .talento-list li {
  position: relative !important;
  padding-left: 30px !important;
  margin-bottom: 6px !important;
  font-size: 0.98rem !important;
  line-height: 1.58 !important;
  color: #516074 !important;
}

#talento .talento-list li::before {
  content: "\f00c" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #7C5CFF !important;
  color: #FFFFFF !important;
  font-size: 0.52rem !important;
  line-height: 16px !important;
  text-align: center !important;
}

#talento .talento-list li::after {
  content: none !important;
}

#talento .talento-when {
  background: #F5F0FF !important;
  border: 1px solid rgba(124, 92, 255, 0.12) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  box-shadow: none !important;
  width: 100% !important;
  max-width: 300px !important;
  height: 100% !important;
}

#talento .talento-when h4 {
  margin: 0 0 8px 0 !important;
  color: #7C5CFF !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

#talento .talento-when p {
  margin: 0 !important;
  color: #5C667A !important;
  font-size: 0.97rem !important;
  line-height: 1.58 !important;
}

#talento .talento-image {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

#talento .talento-image img {
  width: 100% !important;
  max-width: 520px !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 24px rgba(8, 20, 47, 0.06) !important;
}

/* Responsive */
@media (max-width: 1180px) {
  #talento.talento-detail {
    grid-template-columns: 1fr !important;
    row-gap: 20px !important;
  }

  #talento .talento-when {
    max-width: 100% !important;
    margin-top: 0 !important;
  }

  #talento .talento-image img {
    max-width: 560px !important;
  }
}

@media (max-width: 640px) {
  #talento .talento-content h3 {
    font-size: 28px !important;
  }

  #talento .talento-list li {
    font-size: 18px !important;
  }

  #talento .talento-when {
    padding: 16px !important;
    border-radius: 16px !important;
  }
}


/* =========================
   COMBINACIONES
========================= */
/* COMBINACIONES */
.solutions-combinations {
  background: #f6f3ff;
  border: 1px solid rgba(124, 92, 255, 0.08);
  border-radius: 22px;
  padding: 22px 26px;
   text-align: center;
}

.solutions-combinations h2 {
  width: 100%;
  max-width: none;
  margin: 0 0 22px 0;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111827;
}

.combinations-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.combination-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 8px 18px;
  position: relative;
}

.combination-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 58px;
  background: rgba(124, 92, 255, 0.16);
  transform: translateY(-50%);
}

.combination-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.combination-icon i {
  font-size: 1.2rem;
  line-height: 1;
}

.combination-copy h3 {
  font-size: 0.96rem;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 8px;
  font-weight: 700;
}

.combination-copy p {
  font-size: 0.93rem;
  line-height: 1.5;
  color: #5b677b;
}

/* Responsive */
@media (max-width: 1180px) {
  .combinations-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
  }

  .combination-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .solutions-combinations {
    padding: 20px 18px;
  }

  .solutions-combinations h2 {
    text-align: center;
    font-size: 1.35rem;
  }

  .combinations-strip {
    grid-template-columns: 1fr;
  }

  .combination-item {
    padding: 12px 0;
  }

  .combination-item::after {
    display: none !important;
  }
}

/* =========================
   METHOD
========================= */

/* METODOLOGÍA */
.solutions-method {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(240px, 0.9fr) minmax(220px, 0.85fr);
  gap: 34px;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 28px;
  padding: 34px 36px;
  box-shadow: 0 12px 28px rgba(8, 20, 47, 0.05);
}

.solutions-method .method-copy h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111827;
  margin-bottom: 16px;
  max-width: 580px;
}

.solutions-method .method-copy p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.68;
  color: #516074;
  margin-bottom: 22px;
  max-width: 560px;
}

.method-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  object-fit: contain;
}

.method-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.method-points li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #3f4b61;
  font-weight: 500;
}

.method-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7C5CFF;
  box-shadow: inset 0 0 0 4px #F1E9FF;
}

/* Responsive */
@media (max-width: 1180px) {
  .solutions-method {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .method-visual {
    justify-content: flex-start;
  }

  .method-visual img {
    max-width: 240px;
  }
}

@media (max-width: 640px) {
  .solutions-method {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .method-points li {
    font-size: 0.95rem;
  }
}

/* =========================
   CTA FINAL
========================= */

/* CTA FINAL CLARO */
.solutions-cta.light-cta {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  background: #f6f3ff;
  border: 1px solid rgba(124, 92, 255, 0.08);
  border-radius: 28px;
  padding: 28px 34px;
  box-shadow: 0 10px 24px rgba(8, 20, 47, 0.05);
}

.solutions-cta.light-cta .cta-copy h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111827;
  margin-bottom: 10px;
  max-width: 560px;
}

.solutions-cta.light-cta .cta-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5b677b;
  max-width: 540px;
}

.solutions-cta.light-cta .section-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.solutions-cta.light-cta .btn {
  min-width: 220px;
}

.solutions-cta.light-cta .btn-outline {
  background: #ffffff;
  border-color: rgba(124, 92, 255, 0.18);
  color: #2b3550;
}

.solutions-cta.light-cta .cta-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-cta.light-cta .cta-illustration img {
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1180px) {
  .solutions-cta.light-cta {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .solutions-cta.light-cta .cta-illustration {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .solutions-cta.light-cta {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .solutions-cta.light-cta .section-actions {
    width: 100%;
  }

  .solutions-cta.light-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .solutions-cta.light-cta .cta-illustration img {
    width: 92px;
  }
}

/* =========================
   ACTIVE NAV
========================= */

.main-nav a.active {
  color: #ffffff;
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: #7c5cff;
  border-radius: 999px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
  .solutions-hero,
  .solutions-approach,
  .solution-learning,
  .solutions-method,
  .solutions-cta {
    grid-template-columns: 1fr;
  }

  .solution-detail,
  .solution-detail.reverse {
    grid-template-columns: 1fr;
  }

  .six-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .combinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-step::after {
    display: none;
  }

  .solutions-map {
    min-height: 620px;
  }
}

@media (max-width: 920px) {
  .solutions-page {
    padding: 42px 0 74px;
  }

  .solutions-page .container {
    gap: 68px;
  }

  .six-col,
  .learning-columns,
  .combinations-grid {
    grid-template-columns: 1fr;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .map-card {
    width: 150px;
    min-height: 138px;
  }

  .map-center {
    width: 150px;
    height: 150px;
    font-size: 1rem;
  }

  .solutions-map::before {
    width: 300px;
    height: 300px;
  }

  .solutions-map::after {
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .solutions-hero-copy h1,
  .solutions-ecosystem h2,
  .solutions-combinations h2,
  .solutions-method .method-copy h2,
  .solutions-cta .cta-copy h2 {
    font-size: 2.2rem;
  }

  .solutions-map {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .solutions-map::before,
  .solutions-map::after,
  .map-center {
    display: none;
  }

  .map-card {
    position: static;
    transform: none !important;
    width: 100%;
    min-height: auto;
  }

  .solutions-method,
  .solutions-cta {
    padding: 28px 22px;
  }

  .solutions-cta .section-actions {
    width: 100%;
  }

  .solutions-cta .btn {
    width: 100%;
  }
}


/* =========================
   TEAM SECTION - HOME
========================= */

.team-section .team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.team-section .member-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(8, 20, 47, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.team-section .member-card-top {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.team-section .member-photo {
  overflow: hidden;
  border-radius: 16px;
  background: #dfe6f2;
  min-height: 148px;
}

.team-section .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section .member-head {
  padding-top: 6px;
}

.team-section .member-name {
  margin: 0 0 8px 0;
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #111827;
}

.team-section .member-role {
  margin: 0 0 16px 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C5CFF;
  line-height: 1.45;
}

.team-section .member-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7C5CFF;
}

.team-section .member-linkedin .icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #EEE9FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.team-section .member-body {
  padding: 2px 10px 4px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-section .member-body p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: #516074;
}

.team-section .member-highlights {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-section .member-highlights li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.58;
  color: #516074;
}

.team-section .member-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7C5CFF;
}

.team-section .strengths-block {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.team-section .strengths-title {
  margin: 0 0 14px 0;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C5CFF;
}

.team-section .strengths-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-section .strength-chip {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 12px;
  background: linear-gradient(180deg, #faf8ff 0%, #f3efff 100%);
  border: 1px solid rgba(124, 92, 255, 0.10);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1F2C4C;
  font-size: 0.88rem;
  font-weight: 500;
}

.team-section .strength-chip i {
  color: #7C5CFF;
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  .team-section .team-members-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .team-section .member-card-top {
    grid-template-columns: 1fr;
  }

  .team-section .member-photo {
    max-width: 180px;
  }

  .team-section .member-name {
    font-size: 1.65rem;
  }
}

@media (max-width: 640px) {
  .team-section .member-body {
    padding: 0;
  }

  .team-section .strength-chip {
    width: 100%;
    justify-content: flex-start;
  }
}

/* =========================
   CATALOGO DE CURSOS
========================= */

.catalog-page {
  background: #f4f6fb;
  padding: 56px 0 96px;
}

.catalog-page .container {
  display: flex;
  flex-direction: column;
  gap: 34px;
}



/* HERO */
.catalog-hero {
  padding: 0;
}

.catalog-hero-shell {
  position: relative;
  min-height: 560px;
  background: linear-gradient(180deg, #f7f5ff 0%, #f2f4fa 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.catalog-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-hero-copy .eyebrow {
  margin-bottom: 16px;
}

.catalog-hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #111827;
  margin-bottom: 18px;
  max-width: 780px;
}

.catalog-hero-copy h1 span {
  color: #7C5CFF;
}

.catalog-hero-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #516074;
  max-width: 640px;
  margin-bottom: 28px;
}

.catalog-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.catalog-entry-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 92, 255, 0.08);
  border-radius: 18px;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  backdrop-filter: blur(4px);
}

.catalog-entry-card h3 {
  font-size: 0.96rem;
  line-height: 1.15;
  margin-bottom: 6px;
  color: #111827;
}

.catalog-entry-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #516074;
}

.catalog-entry-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.catalog-entry-icon i {
  font-size: 1.1rem;
}

.catalog-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.catalog-hero-visual img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(75%, 860px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* degradado para fundir texto con imagen */
.catalog-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #f4f3fa 0%,
      #f4f3fa 38%,
      rgba(244, 243, 250, 0.96) 48%,
      rgba(244, 243, 250, 0.88) 56%,
      rgba(244, 243, 250, 0.62) 64%,
      rgba(244, 243, 250, 0.20) 73%,
      rgba(244, 243, 250, 0) 82%
    );
  z-index: 2;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1180px) {
  .catalog-hero-shell {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-hero-copy {
    width: 100%;
    padding: 38px 36px 30px;
  }

  .catalog-hero-visual {
    position: relative;
    inset: auto;
    min-height: 360px;
  }

  .catalog-hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .catalog-hero-visual::before {
    background: linear-gradient(
      180deg,
      rgba(244, 243, 250, 0) 0%,
      rgba(244, 243, 250, 0.18) 40%,
      rgba(244, 243, 250, 0.88) 82%,
      #f4f3fa 100%
    );
  }
}

@media (max-width: 920px) {
  .catalog-entry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .catalog-hero-shell {
    border-radius: 24px;
  }

  .catalog-hero-copy {
    padding: 30px 22px 24px;
  }

  .catalog-hero-copy h1 {
    font-size: 2.25rem;
  }

  .catalog-hero-visual {
    min-height: 280px;
  }

  .catalog-entry-card {
    grid-template-columns: 46px 1fr;
    padding: 16px 14px;
  }

  .catalog-entry-icon {
    width: 44px;
    height: 44px;
  }
}
/* FILTROS */
.catalog-filters {
  padding: 0;
}

.catalog-filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(150px, 0.72fr)) auto;
  gap: 14px;
  align-items: center;
  background: #f7f5fb;
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 24px;
  padding: 16px;
}

.catalog-search-field {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  min-height: 54px;
  overflow: hidden;
}

.catalog-search-field input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 16px;
  font-size: 0.95rem;
  color: #111827;
  font-family: inherit;
}

.catalog-search-field input::placeholder {
  color: #8a94a6;
}

.catalog-search-field button {
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  color: #7C5CFF;
  cursor: pointer;
  font-size: 0.95rem;
}

.catalog-filter-bar select {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  padding: 0 16px;
  font-size: 0.94rem;
  color: #39465f;
  font-family: inherit;
  outline: none;
}

.catalog-clear-btn {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.94rem;
  font-weight: 600;
  color: #4a566f;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* GRID CURSOS */
.catalog-grid-section {
  padding: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.course-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(8, 20, 47, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.course-card-image {
  background: #ece8f7;
  aspect-ratio: 1.3 / 0.72;
  overflow: hidden;
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-category {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C5CFF;
  margin-bottom: 10px;
}

.course-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.18;
  color: #111827;
  margin-bottom: 12px;
  min-height: 48px;
}

.course-description {
  font-size: 0.93rem;
  line-height: 1.58;
  color: #5c667a;
  margin-bottom: 16px;
  min-height: 88px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: #4f5c73;
}

.course-meta i {
  color: #6d778c;
  font-size: 0.9rem;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.course-tag {
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #f1e9ff;
  color: #7C5CFF;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.course-tag.is-open {
  background: #eee9ff;
  color: #6d4cff;
}

/* CTA INTERMEDIO */
.catalog-mid-cta {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #f6f3ff;
  border: 1px solid rgba(124, 92, 255, 0.08);
  border-radius: 26px;
  padding: 24px 28px;
}

.catalog-mid-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C5CFF, #8A63FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 12px 24px rgba(109, 76, 255, 0.18);
}

.catalog-mid-cta-copy h2 {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.08;
  color: #111827;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  max-width: 520px;
}

.catalog-mid-cta-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5b677b;
  max-width: 620px;
}

/* CTA FINAL */
.catalog-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(109, 76, 255, 0.24), transparent 30%),
    linear-gradient(180deg, #08142f 0%, #061127 100%);
  border-radius: 28px;
  padding: 34px 36px;
  box-shadow: 0 22px 40px rgba(8, 20, 47, 0.16);
}

.catalog-final-cta-copy {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
}

.catalog-final-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A63FF;
  font-size: 1.35rem;
}

.catalog-final-cta-copy h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.9rem);
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  max-width: 720px;
}

.catalog-final-cta-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.6;
}

.catalog-final-cta-actions .btn {
  min-width: 280px;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-filter-bar {
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(140px, 1fr));
  }

  .catalog-filter-bar select:nth-of-type(4),
  .catalog-clear-btn {
    grid-column: span 2;
  }
}

@media (max-width: 1180px) {
  .catalog-hero,
  .catalog-mid-cta,
  .catalog-final-cta {
    grid-template-columns: 1fr;
  }

  .catalog-hero-visual {
    min-height: 420px;
  }

  .catalog-final-cta-copy {
    grid-template-columns: 74px 1fr;
  }

  .catalog-final-cta-actions .btn {
    min-width: 0;
  }
}

@media (max-width: 920px) {
  .catalog-page {
    padding: 42px 0 74px;
  }

  .catalog-filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-search-field,
  .catalog-clear-btn {
    grid-column: 1 / -1;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-entry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .catalog-hero-copy {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .catalog-hero-copy h1 {
    font-size: 2.45rem;
  }

  .catalog-hero-visual {
    min-height: 300px;
    border-radius: 24px;
  }

  .catalog-filter-bar {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 20px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .course-card-body {
    padding: 16px;
  }

  .course-description,
  .course-card-body h3 {
    min-height: auto;
  }

  .catalog-mid-cta,
  .catalog-final-cta {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .catalog-final-cta-copy {
    grid-template-columns: 1fr;
  }

  .catalog-final-cta-actions .btn,
  .catalog-mid-cta-actions .btn {
    width: 100%;
  }
}

/* =========================
   METODOLOGIA PAGE
========================= */

.methodology-page {
  background: #f4f6fb;
  padding: 56px 0 96px;
}

.methodology-page .container {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* HERO */

.methodology-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: stretch;
}

.methodology-hero-copy {
  padding: 26px 0 0;
}

.methodology-hero-copy .eyebrow {
  margin-bottom: 16px;
}

.methodology-hero-copy h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #111827;
  margin-bottom: 18px;
  max-width: 620px;
}

.methodology-hero-copy h1 span {
  color: #7C5CFF;
}

.methodology-hero-text {
  font-size: 1.04rem;
  line-height: 1.7;
  color: #516074;
  max-width: 600px;
  margin-bottom: 28px;
}

.methodology-purpose-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  max-width: 520px;
  background: linear-gradient(180deg, #f7f5ff 0%, #f3efff 100%);
  border: 1px solid rgba(124, 92, 255, 0.08);
  border-radius: 20px;
  padding: 20px 22px;
}

.methodology-purpose-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7C5CFF, #8A63FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 14px 24px rgba(109, 76, 255, 0.18);
}

.methodology-purpose-card h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #111827;
}

.methodology-purpose-card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #516074;
}

.methodology-hero-visual {
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 16px 32px rgba(8, 20, 47, 0.06);
}

.methodology-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

/* FLOW */

.methodology-flow-section {
  padding-top: 6px;
}

.methodology-flow-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.methodology-flow-heading .eyebrow.centered {
  color: #7C5CFF;
  margin-bottom: 12px;
}

.methodology-flow-heading h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #111827;
}

.methodology-flow-heading p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5c667a;
}

.methodology-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.methodology-step-card {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.methodology-step-letter {
  width: 118px;
  height: 118px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(124, 92, 255, 0.18);
  box-shadow: 0 12px 28px rgba(8, 20, 47, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
  color: #7C5CFF;
  letter-spacing: -0.05em;
}

.methodology-step-arrow {
  position: absolute;
  top: 45px;
  right: -20px;
  color: #7C5CFF;
  font-size: 1.5rem;
  opacity: 0.9;
}

.methodology-step-card:last-child .methodology-step-arrow {
  display: none;
}

.methodology-step-card h3 {
  font-size: 1.08rem;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #7C5CFF;
  text-transform: uppercase;
}

.methodology-step-line {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: #7C5CFF;
  margin: 0 auto 14px;
  opacity: 0.85;
}

.methodology-step-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #516074;
  max-width: 230px;
  margin: 0 auto 18px;
  min-height: 132px;
}

.methodology-step-tag {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f3efff;
  color: #6d4cff;
  font-size: 0.87rem;
  font-weight: 600;
}

.methodology-step-tag i {
  font-size: 0.95rem;
}

/* PRINCIPLES */

.methodology-principles-section {
  padding-top: 4px;
}

.methodology-principles-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.methodology-principles-heading .eyebrow.centered {
  color: #7C5CFF;
  margin-bottom: 12px;
}

.methodology-principles-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #111827;
}

.methodology-principles-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.principle-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  padding: 24px 18px 22px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(8, 20, 47, 0.04);
}

.principle-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #f3efff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C5CFF;
  font-size: 1.45rem;
}

.principle-card h3 {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #111827;
}

.principle-line {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #7C5CFF;
  margin: 0 auto 14px;
  opacity: 0.85;
}

.principle-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #5b677b;
}

/* CTA */

.methodology-cta-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, #f7f5ff 0%, #f2f4fa 100%);
  border: 1px solid rgba(124, 92, 255, 0.08);
  border-radius: 24px;
  padding: 22px 24px;
}

.methodology-cta-visual {
  border-radius: 18px;
  overflow: hidden;
  min-height: 160px;
}

.methodology-cta-visual img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.methodology-cta-copy h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #111827;
  margin-bottom: 12px;
  max-width: 620px;
}

.methodology-cta-copy h2 span {
  color: #7C5CFF;
}

.methodology-cta-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: #5b677b;
  max-width: 520px;
}

.methodology-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.methodology-cta-actions .btn {
  min-width: 170px;
}

/* RESPONSIVE */

@media (max-width: 1280px) {
  .methodology-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .methodology-step-arrow {
    display: none;
  }

  .methodology-principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .methodology-cta-section {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .methodology-cta-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 1180px) {
  .methodology-hero {
    grid-template-columns: 1fr;
  }

  .methodology-hero-visual img {
    min-height: 400px;
  }

  .methodology-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .methodology-page {
    padding: 42px 0 74px;
  }

  .methodology-flow-grid,
  .methodology-principles-grid,
  .methodology-cta-section {
    grid-template-columns: 1fr;
  }

  .methodology-step-card p {
    min-height: auto;
  }

  .methodology-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .methodology-hero-copy h1 {
    font-size: 2.35rem;
  }

  .methodology-purpose-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .methodology-purpose-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .methodology-step-letter {
    width: 102px;
    height: 102px;
    font-size: 3.6rem;
    border-radius: 20px;
  }

  .principle-card,
  .methodology-cta-section {
    border-radius: 20px;
  }

  .methodology-cta-section {
    padding: 20px;
  }
}



/* =========================
   Evaluaciones Nexo
========================= */

.assessments-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(0, 191, 166, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(112, 72, 232, 0.10), transparent 34%),
    #f7f8ff;
}

.assessments-section .eyebrow {
  color: #8468f5;
}

.assessments-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.assessments-header h2 {
  margin: 0;
  max-width: 760px;
  color: #06133d;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.assessments-header p {
  margin: 0;
  color: #415072;
  font-size: 1.05rem;
  line-height: 1.75;
}

.assessments-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
}

.assessments-copy-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff 0%, #eefdf9 100%);
  box-shadow: 0 22px 60px rgba(12, 24, 68, 0.08);
  border: 1px solid rgba(0, 191, 166, 0.14);
}

.assessments-copy-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(112, 72, 232, 0.10);
}

.assessment-main-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 20px;
  color: #00b89f;
  background: rgba(0, 191, 166, 0.12);
  font-size: 1.6rem;
}

.assessments-copy-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #06133d;
  font-size: 1.65rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.assessments-copy-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: #435174;
  font-size: 1rem;
  line-height: 1.75;
}

.assessment-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.assessment-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #26345c;
  font-size: 0.96rem;
  line-height: 1.45;
}

.assessment-benefits i {
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: #00b89f;
  font-size: 0.72rem;
  margin-top: 1px;
}

.assessment-tests-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.assessment-card {
  min-height: 218px;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 24, 68, 0.06);
  box-shadow: 0 18px 48px rgba(12, 24, 68, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.assessment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(12, 24, 68, 0.12);
  border-color: rgba(112, 72, 232, 0.22);
}

.assessment-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  font-size: 1.45rem;
}

.assessment-card h3 {
  margin: 0 0 12px;
  color: #06133d;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.assessment-card p {
  margin: 0;
  color: #4c5977;
  font-size: 0.95rem;
  line-height: 1.65;
}

.icon-teal {
  color: #00b89f;
  background: rgba(0, 191, 166, 0.12);
}

.icon-purple {
  color: #7048e8;
  background: rgba(112, 72, 232, 0.12);
}

.icon-blue {
  color: #4776e6;
  background: rgba(71, 118, 230, 0.12);
}

.icon-lilac {
  color: #8468f5;
  background: rgba(132, 104, 245, 0.12);
}

.icon-green {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
}

.icon-violet {
  color: #6d5dfc;
  background: rgba(109, 93, 252, 0.12);
}

.assessments-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding: 28px 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 237, 255, 0.96));
  box-shadow: 0 22px 60px rgba(12, 24, 68, 0.08);
  border: 1px solid rgba(112, 72, 232, 0.10);
}

.assessments-cta-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-chat-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #7048e8, #8b63ff);
  font-size: 1.45rem;
  box-shadow: 0 16px 34px rgba(112, 72, 232, 0.28);
}

.assessments-cta h3 {
  margin: 0 0 6px;
  color: #06133d;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.assessments-cta p {
  margin: 0;
  color: #4c5977;
  line-height: 1.55;
}

.assessments-chat-btn {
  white-space: nowrap;
  min-width: 220px;
  text-align: center;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1080px) {
  .assessments-layout {
    grid-template-columns: 1fr;
  }

  .assessment-tests-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .assessments-section {
    padding: 72px 0;
  }

  .assessments-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .assessments-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .assessments-chat-btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .assessment-tests-grid {
    grid-template-columns: 1fr;
  }

  .assessments-copy-card,
  .assessment-card,
  .assessments-cta {
    border-radius: 22px;
  }

  .assessments-copy-card {
    padding: 28px 24px;
  }

  .assessment-card {
    min-height: auto;
  }

  .assessments-cta {
    padding: 24px;
  }

  .assessments-cta-copy {
    align-items: flex-start;
  }

  .cta-chat-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
}