/* ===========================
   TOKENS
   =========================== */
:root {
  --white:       #fdfcfa;
  --beige:       #f5f0e8;
  --sand:        #e8ddd0;
  --sand-dark:   #d4c9bb;
  --sage:        #8fa68c;
  --sage-light:  #d4e0d3;
  --sage-dark:   #6b8a67;
  --graphite:    #3d3d3d;
  --graphite-lt: #6b6b6b;
  --brown:       #c8b8a2;
  --brown-dark:  #a09080;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Poppins', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --shadow-soft: 0 4px 24px rgba(61,61,61,.06);
  --shadow-md:   0 8px 40px rgba(61,61,61,.10);

  --transition: .3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--graphite);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.section-desc {
  max-width: 560px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--graphite-lt);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 4px 20px rgba(143,166,140,.35);
}
.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(143,166,140,.4);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--sand-dark);
  color: var(--graphite);
}
.btn--ghost:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: var(--sage-light);
}

.btn--nav {
  background: var(--sage);
  color: #fff;
  padding: 10px 22px;
  font-size: .82rem;
  box-shadow: 0 2px 12px rgba(143,166,140,.25);
}
.btn--nav:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn--whatsapp:hover {
  background: #1fba57;
  transform: translateY(-2px);
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(253,252,250,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,61,61,.07);
  padding: 12px 0;
}

.nav__inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-right: auto;
}

.nav__logo-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--graphite);
}

.nav__logo-sub {
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--graphite-lt);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__links a {
  font-size: .85rem;
  color: var(--graphite-lt);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--graphite); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--graphite);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  padding: 80px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
  box-shadow: -4px 0 40px rgba(61,61,61,.12);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-size: 1.1rem;
  color: var(--graphite);
  font-weight: 400;
}

.mobile-cta { margin-top: 8px; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,61,61,.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: var(--beige);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
}

.shape--1 {
  width: 500px; height: 500px;
  background: var(--sage-light);
  top: -100px; right: -100px;
}
.shape--2 {
  width: 360px; height: 360px;
  background: var(--sand);
  bottom: -80px; left: -80px;
}
.shape--3 {
  width: 280px; height: 280px;
  background: var(--brown);
  top: 40%; right: 30%;
  opacity: .2;
}

.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  font-size: 1rem;
  color: var(--sage);
  opacity: .5;
  animation: starDrift1 18s ease-in-out infinite;
  will-change: transform;
}
.star.small { font-size: .6rem; }
.star.big   { font-size: 1.6rem; }

/* Each star gets its own drift path */
.star:nth-child(1)  { animation: starDrift1 20s ease-in-out infinite; }
.star:nth-child(2)  { animation: starDrift2 24s ease-in-out infinite; animation-delay: -6s; }
.star:nth-child(3)  { animation: starDrift3 19s ease-in-out infinite; animation-delay: -3s; }
.star:nth-child(4)  { animation: starDrift4 22s ease-in-out infinite; animation-delay: -10s; }
.star:nth-child(5)  { animation: starDrift1 17s ease-in-out infinite; animation-delay: -8s; }
.star:nth-child(6)  { animation: starDrift3 26s ease-in-out infinite; animation-delay: -2s; }
.star:nth-child(7)  { animation: starDrift2 21s ease-in-out infinite; animation-delay: -14s; }
.star:nth-child(8)  { animation: starDrift4 29s ease-in-out infinite; animation-delay: -5s; }
.star:nth-child(9)  { animation: starDrift1 23s ease-in-out infinite; animation-delay: -11s; }
.star:nth-child(10) { animation: starDrift3 18s ease-in-out infinite; animation-delay: -7s; }
.star:nth-child(11) { animation: starDrift2 25s ease-in-out infinite; animation-delay: -16s; }
.star:nth-child(12) { animation: starDrift4 20s ease-in-out infinite; animation-delay: -4s; }
.star:nth-child(13) { animation: starDrift1 27s ease-in-out infinite; animation-delay: -9s; }
.star:nth-child(14) { animation: starDrift3 22s ease-in-out infinite; animation-delay: -13s; }
.star:nth-child(15) { animation: starDrift2 19s ease-in-out infinite; animation-delay: -1s; }
.star:nth-child(16) { animation: starDrift4 24s ease-in-out infinite; animation-delay: -18s; }

@keyframes starDrift1 {
  0%   { transform: translate(0, 0) scale(1);    opacity: .3; }
  25%  { transform: translate(18px, -22px) scale(1.2); opacity: .65; }
  50%  { transform: translate(-10px, -38px) scale(.9); opacity: .4; }
  75%  { transform: translate(24px, -15px) scale(1.1); opacity: .6; }
  100% { transform: translate(0, 0) scale(1);    opacity: .3; }
}
@keyframes starDrift2 {
  0%   { transform: translate(0, 0) scale(1);   opacity: .4; }
  30%  { transform: translate(-20px, 16px) scale(1.15); opacity: .7; }
  60%  { transform: translate(12px, 28px) scale(.85); opacity: .35; }
  80%  { transform: translate(-8px, -10px) scale(1.05); opacity: .55; }
  100% { transform: translate(0, 0) scale(1);   opacity: .4; }
}
@keyframes starDrift3 {
  0%   { transform: translate(0, 0) scale(1);    opacity: .35; }
  20%  { transform: translate(14px, 20px) scale(.9);  opacity: .6; }
  55%  { transform: translate(-18px, 10px) scale(1.2); opacity: .5; }
  80%  { transform: translate(6px, -20px) scale(1);  opacity: .7; }
  100% { transform: translate(0, 0) scale(1);    opacity: .35; }
}
@keyframes starDrift4 {
  0%   { transform: translate(0, 0) scale(1);    opacity: .45; }
  35%  { transform: translate(-14px, -18px) scale(1.1); opacity: .25; }
  65%  { transform: translate(20px, 8px) scale(.95); opacity: .65; }
  100% { transform: translate(0, 0) scale(1);    opacity: .45; }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__text {
  max-width: 580px;
}

.hero__badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--graphite-lt);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--graphite);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero__subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--graphite-lt);
  max-width: 560px;
  margin-bottom: 16px;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--graphite-lt);
  margin-bottom: 32px;
}
.hero__location svg { color: var(--sage); }

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

.hero__free {
  font-size: .82rem;
  color: var(--graphite-lt);
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-inline { color: var(--sage); font-size: .9em; }

.hero__illustration { position: relative; }

.hero__photo-frame {
  width: 320px;
  height: 400px;
  border-radius: 50% 50% 45% 45% / 50% 50% 50% 50%;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--sand-dark);
}

.hero__photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brown-dark);
}

.hero__photo-placeholder svg { width: 120px; height: 160px; }

.photo-label {
  font-size: .78rem;
  font-style: italic;
  opacity: .6;
  color: var(--graphite-lt);
}

.hero__deco-ring {
  position: absolute;
  top: -16px; right: -16px;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  opacity: .3;
}

.hero__deco-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--sage);
  position: absolute;
}
.hero__deco-dot--1 { bottom: 30px; left: -20px; opacity: .5; }
.hero__deco-dot--2 { top: 50px; right: -28px; width: 20px; height: 20px; opacity: .3; }

.hero__floats {
  position: absolute;
  left: -48px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: .78rem;
  color: var(--graphite);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.float-card--2 { animation-delay: 2s; }
.float-card span, .float-card svg { color: var(--sage); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: .7;
  animation: fadeInUp 1s ease 2s both;
}

.scroll-arrow {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  position: relative;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   REASONS STRIP
   =========================== */
.reasons-strip {
  background: var(--sage);
  padding: 20px 0;
  overflow: hidden;
}

.reasons-strip__inner {
  display: flex;
  gap: 0;
  animation: marquee 32s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reason-pill {
  white-space: nowrap;
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  letter-spacing: .05em;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.25);
}

/* ===========================
   SOBRE MÍ
   =========================== */
.sobre-mi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-mi__visual { position: relative; }

.sobre-mi__photo-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto 24px;
}

.sobre-mi__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 55% 55% 48% 48% / 52% 52% 52% 52%;
  border: 4px solid var(--white);
  box-shadow: 0 12px 48px rgba(61,61,61,.13);
  display: block;
}

.sobre-mi__photo-deco {
  position: absolute;
  inset: -10px;
  border-radius: 55% 55% 48% 48% / 52% 52% 52% 52%;
  border: 2px solid var(--sage);
  opacity: .35;
  pointer-events: none;
}

.sobre-mi__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}

.credential-badge {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .75rem;
  color: var(--graphite-lt);
  white-space: nowrap;
}

.sobre-mi__intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: 16px;
  line-height: 1.6;
}

.sobre-mi__body {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--graphite-lt);
  margin-bottom: 24px;
}

.sobre-mi__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--graphite);
}

.bullet-icon { color: var(--sage); font-size: .75rem; margin-top: 4px; flex-shrink: 0; }

/* ===========================
   SERVICIOS
   =========================== */
.servicios { background: var(--beige); }

.servicios__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--sand-dark);
  font-size: .82rem;
  color: var(--graphite-lt);
  background: var(--white);
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

.tab-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
  box-shadow: 0 4px 16px rgba(143,166,140,.3);
}

.servicios__panels { position: relative; }

.servicio-panel {
  display: none;
  animation: fadeIn .4s ease;
}

.servicio-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.servicio-panel__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--sand);
}

.servicio-panel__icon svg { width: 60px; height: 60px; }

.servicio-panel__content h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--graphite);
}

.servicio-panel__content p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--graphite-lt);
  margin-bottom: 24px;
  max-width: 600px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li {
  background: var(--sage-light);
  border-radius: var(--radius-xl);
  padding: 5px 14px;
  font-size: .78rem;
  color: var(--sage-dark);
  font-weight: 500;
}

/* ===========================
   PARA QUIÉNES
   =========================== */
.para-quienes { background: var(--white); }

.para-quienes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.etapa-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--sand);
  transition: all var(--transition);
  cursor: default;
}

.etapa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.etapa-card__icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
}

.etapa-card__icon svg { width: 100%; height: 100%; }

.etapa-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--graphite);
}

.etapa-card p {
  font-size: .83rem;
  line-height: 1.65;
  color: var(--graphite-lt);
}

/* ===========================
   QUOTE
   =========================== */
.quote-section {
  background: var(--sage);
  padding: 80px 0;
}

.quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.quote__deco {
  display: block;
  font-size: 2rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.quote p {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.quote cite {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  font-style: normal;
  letter-spacing: .08em;
}

/* ===========================
   MODALIDAD
   =========================== */
.modalidad { background: var(--beige); }

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

.modalidad-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--sand);
  transition: all var(--transition);
}

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

.modalidad-card--highlight {
  background: var(--sage-light);
  border-color: var(--sage);
}

.modalidad-card__icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
}
.modalidad-card__icon svg { width: 100%; height: 100%; }

.modalidad-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--graphite);
}

.modalidad-card p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--graphite-lt);
  margin-bottom: 20px;
}

.modalidad-card__badge {
  display: inline-block;
  background: var(--sand);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .75rem;
  color: var(--graphite-lt);
}

.modalidad-card__badge--green {
  background: var(--sage);
  color: #fff;
}

/* ===========================
   FORMACIÓN
   =========================== */
.formacion { background: var(--white); }

.formacion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.formacion__col-title {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sage-dark);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--sand);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 5px; top: 16px;
  width: 1px;
  bottom: 0;
  background: var(--sand-dark);
}

.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brown);
  border: 2px solid var(--white);
  outline: 1px solid var(--brown);
  margin-top: 4px;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-dot--sage {
  background: var(--sage);
  outline-color: var(--sage);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.timeline-content strong {
  font-size: .92rem;
  font-weight: 600;
  color: var(--graphite);
}

.timeline-content span {
  font-size: .82rem;
  color: var(--graphite-lt);
}

.timeline-mp {
  font-size: .72rem !important;
  color: var(--sage-dark) !important;
  font-weight: 500;
}

.formacion__note {
  text-align: center;
  font-style: italic;
  color: var(--graphite-lt);
  font-size: .92rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 28px;
  background: var(--beige);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sage);
}

/* ===========================
   FAQ
   =========================== */
.faq { background: var(--beige); }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--sand-dark);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--graphite);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--sage-dark); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--sage);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.faq-answer.open {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--graphite-lt);
}

/* ===========================
   CONTACTO
   =========================== */
.contacto { background: var(--white); }

.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.contacto__text .section-title { margin-bottom: 16px; }

.contacto__text > p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--graphite-lt);
  margin-bottom: 32px;
  max-width: 480px;
}

.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.contacto__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--graphite);
}

.contacto__info-item svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; }
.contacto__info-item a:hover { color: var(--sage-dark); text-decoration: underline; }

.contacto__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contacto__card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 4px;
  border: 1px solid var(--sand-dark);
}

.contacto__card-inner {
  background: var(--white);
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contacto__card-inner h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--graphite);
}

.contacto__card-inner p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--graphite-lt);
}

.contacto__card-sub {
  font-size: .75rem;
  color: var(--graphite-lt);
  margin-top: -4px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--graphite);
  color: rgba(255,255,255,.8);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__name {
  display: block;
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 4px;
}
.footer__sub {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  opacity: .6;
  margin-bottom: 16px;
}
.footer__mp, .footer__loc {
  font-size: .78rem;
  opacity: .5;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: .82rem;
  opacity: .65;
  transition: opacity var(--transition);
}
.footer__links a:hover { opacity: 1; }

.footer__social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .75rem;
  opacity: .4;
}

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 800;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }
.reveal--delay-3 { transition-delay: .32s; }
.reveal--delay-4 { transition-delay: .42s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .sobre-mi__grid { grid-template-columns: 1fr; gap: 48px; }
  .formacion__grid { grid-template-columns: 1fr; gap: 40px; }
  .contacto__grid { grid-template-columns: 1fr; gap: 48px; }
  .contacto__card { max-width: 480px; }
}

@media (max-width: 900px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .para-quienes__grid { grid-template-columns: 1fr 1fr; }
  .modalidad__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 64px; }
  .servicio-panel__inner { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
  .para-quienes__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .servicios__tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: .76rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .contacto__actions { flex-direction: column; }
}
