/* ============================================
   SENTIR MINDFULNESS — Design System
   ============================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand colors */
  --navy: #1b3a4b;
  --navy-deep: #0f2530;
  --navy-soft: #2e5a6e;
  --gold: #b89a4e;
  --gold-light: rgba(184, 154, 78, 0.07);
  --gold-mid: rgba(184, 154, 78, 0.15);
  --gold-border: rgba(184, 154, 78, 0.2);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f9f8f6;
  --warm: #f5f3ef;
  --text: #1b3a4b;
  --text-sec: #607d8b;
  --text-muted: #7a929e;
  --border: rgba(27, 58, 75, 0.06);
  --border-med: rgba(27, 58, 75, 0.1);

  /* Feedback */
  --green-soft: #7ba387;
  --red-soft: #c2665a;
  --star: #e2a817;

  /* Typography */
  --heading: 'EB Garamond', Georgia, serif;
  --body: 'Raleway', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Spacing */
  --section-pad: 5.5rem 2rem;
  --container: 1100px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ===== UTILITIES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-size: 0.85rem;
  font-weight: 600;
  transition: top 0.2s;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy);
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 700;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  margin: 4px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ===== SECTION PRIMITIVES ===== */
section {
  padding: var(--section-pad);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.s-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.s-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--navy-soft);
}

.s-sub {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-sec);
  max-width: 540px;
  font-weight: 300;
}

/* ===== HERO (shared) ===== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 8.75rem 2rem 2rem;
  position: relative;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--gold-light) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: up 0.7s var(--ease) 0.1s forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.22;
  color: var(--navy);
  max-width: 1000px;
  margin: 0 auto 1.3rem;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: up 0.7s var(--ease) 0.2s forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--navy-soft);
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-sec);
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: up 0.7s var(--ease) 0.35s forwards;
}

.hero-cta-wrap {
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: up 0.7s var(--ease) 0.5s forwards;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: up 0.7s var(--ease) 0.6s forwards;
}

.hero-scroll:hover {
  color: var(--navy);
}

.hero-scroll svg {
  width: 12px;
  height: 12px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--body);
  border: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(27, 58, 75, 0.12);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy-deep);
  box-shadow: 0 8px 32px rgba(27, 58, 75, 0.18);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.3rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-submit:hover,
.btn-submit:focus-visible {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 58, 75, 0.12);
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all 0.3s var(--ease);
}

.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27, 58, 75, 0.04);
}

.card h3,
.card h4 {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1.15rem;
}

.card h4 {
  font-size: 1.05rem;
}

.card p {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== HERO LOGOS ===== */
.hero-logos {
  opacity: 0;
  animation: up 0.7s var(--ease) 0.7s forwards;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.hero-logos-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  opacity: 0.15;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 0.35;
}

/* ===== STARS ===== */
.stars {
  color: var(--star);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.hero-stars {
  opacity: 0;
  animation: up 0.7s var(--ease) 0.7s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-sec);
}

.hero-stars a {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-left: 0.3rem;
  transition: color 0.2s;
}

.hero-stars a:hover {
  color: var(--navy);
}

.hero-stars-logo {
  height: 28px;
  width: auto;
  margin-right: 0.4rem;
}

/* ===== DRIVERS / QUE HACEMOS ===== */
.drivers {
  background: var(--off-white);
}

.drivers-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3.5rem;
}

.drivers-header .s-sub {
  max-width: 1000px;
  margin: 0 auto;
}

/* Pregunta destacada */
.drivers-question {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--navy);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1rem;
  quotes: none;
}

.drivers-question em {
  font-style: italic;
  color: var(--gold);
}

.drivers-question::before,
.drivers-question::after {
  content: '';
  display: block;
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.7;
}

.drivers-answer {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.7;
  font-weight: 300;
}

/* Timeline layout */
.drivers-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  position: relative;
}

/* Línea conectora vertical */
.drivers-list::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  bottom: 4.5rem;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--gold) 0%,
    var(--gold-border) 85%,
    transparent 100%);
  opacity: 0.4;
  z-index: 0;
}

.driver-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 2rem;
  padding: 0 0 2.75rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.driver-item:last-of-type {
  padding-bottom: 3rem;
}

.driver-item-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 0 0 6px var(--off-white);
}

.driver-item-body h3 {
  font-family: var(--heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  padding-top: 0.35rem;
}

.driver-item-body .driver-problem {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  max-width: 560px;
  opacity: 0.85;
}

.driver-item-body p:not(.driver-problem) {
  font-size: 0.88rem;
  color: var(--text-sec);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
}

.driver-item-body p strong {
  color: var(--navy);
  font-weight: 600;
}

/* Cierre del ciclo */
.driver-cycle {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 0.5rem;
}

.driver-cycle-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--off-white);
}

.driver-cycle-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.driver-cycle-body h4 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

.driver-cycle-body p {
  font-size: 0.88rem;
  color: var(--text-sec);
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  max-width: 560px;
}

@media (max-width: 560px) {
  .driver-item,
  .driver-cycle {
    grid-template-columns: 2.5rem 1fr;
    gap: 0 1.25rem;
  }
  .drivers-list::before {
    left: 1.25rem;
  }
  .driver-item-num,
  .driver-cycle-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.9rem;
  }
  .driver-cycle-icon svg {
    width: 1rem;
    height: 1rem;
  }
}

/* ===== DIFERENCIAL ===== */
.diferencial {
  background: var(--white);
}

.dif-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.dif-header .s-sub {
  margin: 0 auto;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.dif-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

/* ===== CLIENTES ===== */
.clientes {
  background: var(--off-white);
  text-align: center;
}

.clientes .s-title {
  margin-bottom: 0.4rem;
}

.clientes-sub {
  font-size: 0.88rem;
  color: var(--text-sec);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.clientes-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cl-logo {
  width: 150px;
  height: 100px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s;
}

.cl-logo:hover {
  opacity: 0.5;
}

/* ===== NOSOTROS ===== */
.cierre {
  background: var(--white);
}

.cierre-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: start;
}

.nos .s-title {
  margin-bottom: 1rem;
}

.nos p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 0.6rem;
  font-weight: 300;
}

.nos strong {
  color: var(--navy);
  font-weight: 600;
}

.team {
  margin-top: 1.5rem;
}

.member {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.member h4 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.member .role {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.member p {
  font-size: 0.82rem;
  color: var(--text-sec);
  line-height: 1.65;
  font-weight: 300;
}

.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.linkedin-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
  transition: color 0.2s;
}

.linkedin-link:hover {
  color: var(--navy);
}

.proposito {
  margin-top: 1.5rem;
  padding: 1.4rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}

.proposito p {
  font-family: var(--heading);
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 0;
}

.proposito .attr {
  font-family: var(--body);
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* ===== CONTACTO FULL WIDTH ===== */
.contacto-full {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--section-pad);
}

.contacto-full-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.contacto-full-header {
  margin-bottom: 2.5rem;
}

.contacto-full-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 300;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contacto-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
  margin-bottom: -0.4rem;
}

/* ===== FORM ===== */
.form-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
}

.form-card h3 {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.form-card .form-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-med);
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 400;
  transition: border-color 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 58, 75, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0bec5;
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

/* ===== TALLER (individuos) ===== */
.taller {
  background: var(--off-white);
}

.taller-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.taller-inner .s-sub {
  margin: 0 auto 2rem;
}

.taller-body {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.taller-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.t-feat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.taller-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--body);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(27, 58, 75, 0.1);
}

.taller-cta:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 58, 75, 0.16);
}

.taller-cta svg {
  width: 15px;
  height: 15px;
}

.taller-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--white);
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.reviews-badge .stars {
  font-size: 1rem;
}

.reviews-badge span {
  font-weight: 300;
  color: var(--text-sec);
}

.reviews-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: none;
}

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

.review-card {
  min-width: 260px;
  max-width: 290px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 1.1rem 1.2rem 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 2px 10px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Header: avatar + name + Google icon */
.review-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  color: #f5a623;
  font-size: 0.65rem;
  letter-spacing: 1px;
  line-height: 1.3;
}

.review-google-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.review-card p {
  font-size: 0.78rem;
  color: #3c4043;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  display: none;
}

.reviews-link {
  text-align: center;
  margin-top: 2rem;
}

.reviews-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  border: 1.5px solid var(--gold-border);
  border-radius: 2rem;
  padding: 0.65rem 1.4rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.reviews-link a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ===== ON DEMAND COURSES ===== */
.ondemand {
  background: var(--off-white);
}

.ondemand-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.ondemand-header .s-sub {
  margin: 0 auto;
}

.od-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.od-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  position: relative;
}

.od-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27, 58, 75, 0.04);
}

.od-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.od-img-label {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.3;
}

.od-body {
  padding: 1.5rem;
}

.od-body h3 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.od-body p {
  font-size: 0.82rem;
  color: var(--text-sec);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.od-meta {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.od-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.od-cta:hover {
  color: var(--gold);
}

.od-cta svg {
  width: 14px;
  height: 14px;
}

.od-card.soon {
  opacity: 0.45;
  pointer-events: none;
}

.od-card.soon .od-img {
  background: linear-gradient(135deg, #8a9bae 0%, #b0bec5 100%);
}

.od-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* ===== QUIEN DICTA ===== */
.quien {
  background: var(--white);
  text-align: center;
}

.quien-inner {
  max-width: 600px;
  margin: 0 auto;
}

.quien .s-title {
  margin-bottom: 1rem;
}

.quien p {
  font-size: 0.92rem;
  color: var(--text-sec);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.quien strong {
  color: var(--navy);
  font-weight: 600;
}

.quien-creds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.quien-cred {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
  padding: 0.38rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
}

.footer-brand span {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  margin-top: 0.3rem;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.74rem;
  transition: color 0.2s;
  font-weight: 400;
}

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

.footer-copy {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.15);
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ===== WHATSAPP FAB ===== */
.wa {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  transition: all 0.3s var(--ease);
}

.wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.wa svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ===== ANIMATIONS ===== */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .dif-grid,
  .dif-row-2,
  .cierre-grid {
    grid-template-columns: 1fr;
  }

  .driver-item {
    grid-template-columns: 4rem 1fr;
    gap: 0 1.5rem;
    padding: 1.8rem 0;
  }

  .driver-item-num {
    font-size: 2.5rem;
  }

  .driver-item-num::after {
    right: -0.75rem;
  }

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

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

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.2rem 2rem;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 4rem 1.2rem;
  }

  .driver-item {
    grid-template-columns: 3rem 1fr;
    gap: 0 1rem;
    padding: 1.5rem 0;
  }

  .driver-item-num {
    font-size: 2rem;
  }

  .driver-item-num::after {
    right: -0.5rem;
  }

  .driver-item-body h3 {
    font-size: 1.1rem;
  }

  .hero {
    padding: 8rem 1.2rem 2.5rem;
    min-height: auto;
  }

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

  .btn-primary,
  .taller-cta {
    padding: 0.9rem 2rem;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }

  .logos-row,
  .clientes-logos {
    gap: 1.2rem;
  }

  .form-card {
    padding: 1.5rem;
  }

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

  .review-card {
    min-width: 240px;
  }

  .member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== FOCUS VISIBLE (Accessibility) ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
