/* ═══════════════════════════════════════════════════════
   POSSIBILITIES FOR YOU — Minimalist Blue/White Design
   Inspired by Consultegia Reference
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Blues — Possibilities Brand */
  --blue-900: #002366;
  --blue-800: #003399;
  --blue-700: #0047AB;
  --blue-600: #0055CC;
  --blue-500: #0066E0;
  --blue-400: #3388EE;
  --blue-300: #66AAFF;
  --blue-200: #99CCFF;
  --blue-100: #CCE5FF;
  --blue-50: #EBF4FF;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f1f3f7;
  --gray-200: #e4e7ed;
  --gray-300: #cdd2db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Accent */
  --accent: var(--blue-700);
  --accent-light: var(--blue-100);
  --accent-dark: var(--blue-900);

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --section-pad: 80px 0;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);

  /* Transition */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.blue {
  color: var(--blue-700);
}

.text-center {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--blue-900);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background: var(--blue-900);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--white);
}

.btn-nav {
  padding: 10px 24px;
  background: var(--white);
  color: var(--blue-900) !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .blue-light {
  color: var(--blue-200);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

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

/* Hero Visual — Video Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 35, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.play-overlay:hover {
  background: rgba(0, 35, 102, 0.25);
}

.play-btn {
  width: 72px;
  height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--blue-700);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.play-overlay:hover .play-btn {
  transform: scale(1.1);
}

/* Hero hidden elements */
.hero-glow,
.hero-glow-1,
.hero-glow-2,
.hero-stats {
  display: none;
}

/* Hero Video Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 35, 102, 0.75) 0%, rgba(0, 71, 171, 0.6) 50%, rgba(0, 35, 102, 0.8) 100%);
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   PROGRAMA — Two Column Intro
   ═══════════════════════════════════════════════════════ */
.programa-intro {
  padding: var(--section-pad);
  background: var(--white);
}

.programa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.programa-image {
  text-align: center;
}

.programa-image img {
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  border: 4px solid var(--blue-100);
  box-shadow: var(--shadow-lg);
}

.programa-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.programa-text .programa-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.programa-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.programa-text .highlight-text {
  font-style: italic;
  color: var(--gray-700);
  font-weight: 500;
  border-left: 3px solid var(--blue-700);
  padding-left: 16px;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════
   QUÉ INCLUYE — Program Cards
   ═══════════════════════════════════════════════════════ */
.includes {
  padding: var(--section-pad);
  background: var(--blue-700);
  color: var(--white);
}

.includes-header {
  text-align: center;
  margin-bottom: 48px;
}

.includes-header .section-title {
  color: var(--white);
}

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

.include-card {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.include-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.include-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.include-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.include-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.include-value {
  display: inline-block;
  margin-top: auto;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   INFO BAR — Quick Facts
   ═══════════════════════════════════════════════════════ */
.info-bar {
  padding: 40px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--blue-700);
  margin-bottom: 4px;
}

.info-item .info-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.info-item .info-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
}

/* ═══════════════════════════════════════════════════════
   TEMARIO — What You'll Learn
   ═══════════════════════════════════════════════════════ */
.temario {
  padding: var(--section-pad);
  background: var(--white);
}

.temario-header {
  text-align: center;
  margin-bottom: 48px;
}

.temario-header .section-subtitle {
  margin: 0 auto;
}

.temario-list {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.temario-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue-700);
  transition: var(--transition);
}

.temario-item:hover {
  background: var(--blue-50);
}

.temario-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.temario-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.temario-content p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   COMPONENTES CLAVE — Key Components
   ═══════════════════════════════════════════════════════ */
.componentes {
  padding: var(--section-pad);
  background: var(--gray-50);
}

.componentes-header {
  text-align: center;
  margin-bottom: 48px;
}

.componentes-header .section-subtitle {
  margin: 0 auto;
}

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

.componente-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.componente-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.componente-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-700);
  margin: 0 auto 18px;
}

.componente-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.componente-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   AL TERMINAR — Outcomes (Bullet List)
   ═══════════════════════════════════════════════════════ */
.outcomes {
  padding: var(--section-pad);
  background: var(--white);
}

.outcomes-header {
  text-align: center;
  margin-bottom: 48px;
}

.outcomes-header .section-subtitle {
  margin: 0 auto;
}

.outcomes-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.outcome-item:hover {
  background: var(--blue-50);
}

.outcome-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--blue-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  margin-top: 2px;
}

.outcome-item p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.outcome-item strong {
  color: var(--gray-900);
}

/* ═══════════════════════════════════════════════════════
   COACH / FACILITATOR
   ═══════════════════════════════════════════════════════ */
.coach {
  padding: var(--section-pad);
  background: var(--gray-50);
}

.coach .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.coach-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.coach-info .section-badge {
  display: none;
}

.coach-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.coach-role {
  font-size: 1rem;
  color: var(--blue-700);
  font-weight: 600;
  margin-bottom: 20px;
}

.coach-info p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.coach-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.coach-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.coach-highlight i {
  color: var(--blue-700);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad);
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 1.5rem;
  color: var(--blue-700);
  opacity: 0.4;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author-info strong {
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 700;
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.testimonial-author-info span:last-child {
  color: var(--blue-700);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cta {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
}

.cta-box {
  text-align: center;
  padding: 24px 40px;
  position: relative;
}

.cta-box::before {
  display: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-box h2 .blue {
  color: var(--blue-200);
}

.cta-box p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--blue-700);
}

.cta .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-note i {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 4px;
}

.cta-glow,
.cta-glow-1 {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  text-align: center;
  background: var(--white);
}

.footer p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.footer a {
  color: var(--blue-700);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--blue-800);
}

/* ═══════════════════════════════════════════════════════
   CHATBOT (Simplified)
   ═══════════════════════════════════════════════════════ */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1001;
  width: 56px;
  height: 56px;
  background: var(--blue-700);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.chatbot-toggle:hover {
  background: var(--blue-800);
  transform: scale(1.05);
}

.chatbot-toggle .close-icon {
  display: none;
}

.chatbot-toggle.active .chat-icon {
  display: none;
}

.chatbot-toggle.active .close-icon {
  display: block;
}

.chatbot-window {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 370px;
  max-height: 500px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  padding: 16px 20px;
  background: var(--blue-700);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
}

.chatbot-header-info h4 {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.chatbot-header-info p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
  max-height: 320px;
  background: var(--gray-50);
}

.chat-message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.6;
  animation: fadeInUp 0.3s ease-out;
}

.chat-message.bot {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  align-self: flex-start;
}

.chat-message.user {
  background: var(--blue-700);
  color: var(--white);
  align-self: flex-end;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.chat-option-btn {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-600);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.chat-option-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  color: var(--blue-700);
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-modal-content video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-modal-close:hover {
  background: var(--blue-700);
}

/* ═══════════════════════════════════════════════════════
   FLOATING CTA — HIDDEN
   ═══════════════════════════════════════════════════════ */
.floating-cta {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════
   SECTION BADGE — HIDDEN (minimalist)
   ═══════════════════════════════════════════════════════ */
.section-badge {
  display: none;
}

/* Legacy classes hidden */
.metrics,
.why-section,
.benefits {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .hero-video-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .programa-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .programa-image img {
    width: 280px;
    height: 280px;
    margin: 0 auto 20px;
  }

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

  .info-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .componentes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coach .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coach-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .coach-highlights {
    justify-content: center;
  }

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

/* ── Mobile ── */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--blue-900);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .navbar-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 80vh;
    padding-top: 70px;
  }

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

  .hero-badge {
    font-size: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .programa-image img {
    width: 220px;
    height: 220px;
  }

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

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

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

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

  .temario-item {
    padding: 14px 12px;
  }

  .cta-box {
    padding: 20px 16px;
  }

  .chatbot-window {
    right: 12px;
    left: 12px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}