@charset "UTF-8";
/* ============================================================
   Melisa Diaz · TuCV
   Sistema visual: turquesa decisivo + crema + tipografía bold
   ============================================================ */

:root {
  /* Color */
  --teal: #1FC8B0;
  --teal-600: #16B09A;
  --teal-700: #0F8E7E;
  --teal-50: #E6FAF5;
  --teal-100: #C7F2E8;

  --sky: #3FBDF2;
  --sky-600: #1FA8E0;

  --ink: #0E1014;
  --ink-2: #1F242C;
  --mute: #5C6068;
  --mute-2: #8A8E96;

  --cream: #FAF7F2;
  --cream-2: #F3EFE6;
  --line: #EAE6DC;
  --line-2: #DAD5C8;
  --white: #FFFFFF;

  --danger: #D9534F;

  /* Type */
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(14,16,20,0.04), 0 1px 1px rgba(14,16,20,0.03);
  --shadow-md: 0 6px 24px -8px rgba(14,16,20,0.10), 0 2px 6px rgba(14,16,20,0.04);
  --shadow-lg: 0 24px 60px -20px rgba(14,16,20,0.18), 0 6px 16px rgba(14,16,20,0.06);
  --shadow-teal: 0 20px 50px -18px rgba(31,200,176,0.55);

  /* Layout */
  --maxw: 1180px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: rgba(31,200,176,0.12); }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--teal-700); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   Type
   ============================================================ */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.eyebrow .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sky);
  vertical-align: middle;
  margin-right: 8px;
  position: relative; top: -1px;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(40px, 5.6vw, 76px); letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 3.8vw, 50px); letter-spacing: -0.025em; }
h3 { font-size: 24px; line-height: 1.15; }
h4 { font-size: 18px; line-height: 1.3; }
p  { margin: 0; text-wrap: pretty; }

.muted { color: var(--mute); }
.ink-2 { color: var(--ink-2); }
.italic { font-style: italic; }
.teal { color: var(--teal-700); }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease, color .15s ease;
  background: transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn.primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn.primary:hover { background: var(--teal-700); border-color: var(--teal-700); color: var(--white); }
.btn.teal {
  background: var(--teal);
  color: var(--ink);
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.btn.teal:hover { background: var(--teal-600); border-color: var(--teal-600); color: var(--white); }
.btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.outline:hover { background: var(--ink); color: var(--white); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn.ghost:hover { border-color: var(--ink); }
.btn.lg { padding: 18px 30px; font-size: 17px; }
.btn.sm { padding: 11px 18px; font-size: 14px; }
.btn .arrow { font-size: 19px; font-weight: 700; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand img { width: 75px; height: auto; }
.brand .name { line-height: 1.1; }
.brand .name strong { display: block; font-size: 16px; }
.brand .name small { display: block; font-size: 11px; color: var(--mute); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-2); }
.nav-links a:hover { color: var(--teal-700); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 60px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(31,200,176,0.10), transparent 60%),
    radial-gradient(800px 500px at -10% 100%, rgba(63,189,242,0.06), transparent 60%),
    var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 strong.teal {
  color: var(--teal-700);
  font-style: italic;
  font-weight: 800;
}
.hero .lead { margin-top: 26px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-meta .pill .check {
  display: inline-flex;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

/* Hero visual: stack of CV cards */
.hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
}
.cv-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  width: 320px;
}
.cv-card .row { height: 8px; border-radius: 4px; background: var(--cream-2); margin-bottom: 9px; }
.cv-card .row.short { width: 50%; }
.cv-card .row.mid { width: 75%; }
.cv-card .row.tall { height: 12px; margin-bottom: 12px; background: var(--ink); width: 60%; }
.cv-card .row.teal { background: var(--teal); width: 35%; height: 6px; }
.cv-card .group { margin-bottom: 18px; }
.cv-card .pic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-50), var(--cream-2));
  border: 2px solid var(--white);
  margin-bottom: 14px;
}
.cv-card.front { top: 28px; left: 8%; transform: rotate(-4deg); z-index: 3; }
.cv-card.mid   { top: 18px; left: 36%; transform: rotate(2deg); z-index: 2; opacity: .96; }
.cv-card.back  { top: 76px; left: 52%; transform: rotate(7deg); z-index: 1; opacity: .82; }
.hero-visual .badge-ats {
  position: absolute;
  bottom: 36px; left: 10%;
  z-index: 4;
  background: var(--ink);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-lg);
}
.hero-visual .badge-ats .star { color: var(--teal); font-size: 18px; }
.hero-visual .sky-dot {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--sky);
  top: 0; right: 16%;
  z-index: 4;
  box-shadow: 0 10px 24px rgba(63,189,242,0.45);
}
@media (max-width: 980px) {
  .hero-visual { height: 460px; max-width: 520px; margin: 0 auto; }
  .cv-card.front { left: 0; }
  .cv-card.mid   { left: 22%; }
  .cv-card.back  { left: 42%; }
}
@media (max-width: 540px) {
  .hero-visual { height: 400px; }
  .cv-card { width: 260px; }
  .cv-card.back { display: none; }
}

/* ============================================================
   Section common
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section.cream { background: var(--cream); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { margin-top: 14px; }
.section-head .lead { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   Beneficios
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits { grid-template-columns: 1fr; } }
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.benefit .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-50);
  margin-bottom: 22px;
  font-size: 22px;
}
.benefit h4 { margin-bottom: 8px; }
.benefit p { color: var(--mute); font-size: 15px; }

/* ============================================================
   Paquetes
   ============================================================ */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 980px) { .packages { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.package {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package .num {
  font-size: 14px;
  font-weight: 800;
  color: var(--mute-2);
  letter-spacing: 0.1em;
}
.package h3 {
  margin-top: 10px;
  font-size: 28px;
  letter-spacing: -0.025em;
}
.package .desc {
  margin-top: 12px;
  color: var(--mute);
  font-size: 14px;
  min-height: 42px;
}
.package .price {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.package .price .old {
  color: var(--mute-2);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 16px;
}
.package .price .now {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 6px;
}
.package .price .now small {
  font-size: 14px;
  font-weight: 700;
  color: var(--mute);
  letter-spacing: 0;
}
.package ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  flex: 1;
}
.package ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}
.package ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal-100);
  background-image: linear-gradient(135deg, var(--teal-100), var(--teal-50));
}
.package ul li::after {
  content: "✓";
  position: absolute;
  left: 3px; top: 4px;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 800;
}
.package .btn {
  margin-top: 20px;
  width: 100%;
}
.package.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.package.featured .num { color: var(--teal); }
.package.featured .desc { color: rgba(255,255,255,0.7); }
.package.featured .price { border-color: rgba(255,255,255,0.15); }
.package.featured .price .now small { color: rgba(255,255,255,0.6); }
.package.featured ul li { color: rgba(255,255,255,0.92); }
.package.featured ul li::before { background: rgba(31,200,176,0.18); }
.package.featured ul li::after { color: var(--teal); }
.package.featured .btn { background: var(--teal); color: var(--ink); border-color: var(--teal); }
.package.featured .btn:hover { background: var(--white); border-color: var(--white); }
.package .ribbon {
  position: absolute;
  top: -14px; right: 28px;
  background: var(--teal);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

/* Adicional inglés */
.addon {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border: 1.5px dashed var(--line-2);
  border-radius: var(--r-lg);
  background: var(--white);
}
.addon .flag {
  width: 64px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(14,16,20,0.12), inset 0 0 0 1px rgba(14,16,20,0.06);
}
.addon .flag svg { width: 100%; height: 100%; display: block; }
.addon .copy { flex: 1; min-width: 200px; }
.addon .copy strong { font-size: 16px; }
.addon .copy p { font-size: 14px; color: var(--mute); margin-top: 2px; }
.addon .price-tag {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.addon .price-tag small { font-size: 20px; color: var(--mute); font-weight: 800; letter-spacing: 0; margin-right: 6px; }
@media (max-width: 600px) { .addon { flex-wrap: wrap; } }

/* ============================================================
   Sobre Melisa
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: var(--teal);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 460px;
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.32), transparent 38%);
  z-index: 1;
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.about-portrait .sky-dot-big {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--sky);
  top: 8%; left: 8%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.about-portrait .sig {
  position: absolute;
  bottom: 26px; left: 28px;
  color: var(--white);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  z-index: 2;
}
.about-content h2 { margin-bottom: 22px; }
.about-content p { color: var(--ink-2); font-size: 17px; margin-bottom: 16px; }
.about-content .credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.about-content .credentials .item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
}
.about-content .credentials .item .num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal-700);
}
.about-content .credentials .item .lbl {
  font-size: 13px;
  color: var(--mute);
  font-weight: 600;
}

/* ============================================================
   Cómo funciona
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
}
.step .n {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--teal);
  line-height: 1;
  font-style: italic;
}
.step h4 { margin-top: 12px; }
.step p { color: var(--mute); margin-top: 8px; font-size: 15px; }

/* ============================================================
   Testimonios
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 24px 22px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.testimonial .quote {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 18px;
  flex: 1;
}
.testimonial .quote::before {
  content: "";
  display: none;
}
.testimonial .person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.testimonial .avatar img {
  position: absolute;
  width: 100%; height: 100%;
  left: 0; top: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.testimonial .person .name { font-weight: 700; font-size: 15px; }
.testimonial .person .role { font-size: 13px; color: var(--mute); }
.testimonial .stars { color: var(--teal); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 36px; } }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: none;
  border: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.faq-q .plus {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  transition: transform .2s, background .2s;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--teal); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s cubic-bezier(.4, 0, .2, 1);
}
.faq-a > p {
  overflow: hidden;
  margin: 0;
  color: var(--mute);
  font-size: 16px;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-a > p {
  padding-top: 14px;
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.18;
  bottom: -120px; right: -60px;
  filter: blur(20px);
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner h2 em { color: var(--teal); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 16px; max-width: 520px; position: relative; }
.cta-banner .btn { position: relative; z-index: 2; }
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; padding: 40px 30px; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer .brand { color: var(--white); }
.footer .brand img { filter: brightness(1); }
.footer .brand .name strong { color: var(--white); }
.footer .brand .name small { color: rgba(255,255,255,0.5); }
.footer h5 { color: var(--white); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 18px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 10px; font-size: 15px; }
.footer ul li a { color: rgba(255,255,255,0.65); }
.footer ul li a:hover { color: var(--teal); }
.footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 14px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25D366;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 4px;
}
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.whatsapp-btn:hover { background: #1FBC5C; }

/* Social icons (footer) */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85) !important;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.social:hover {
  background: var(--teal);
  color: var(--ink) !important;
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* ============================================================
   Modal — elección de flujo
   ============================================================ */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(14,16,20,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
  opacity: 0;
  transition: opacity .2s;
  overflow-y: auto;
}
.modal-bg.open { display: flex; opacity: 1; }
body.modal-open { overflow: hidden; }
.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 720px;
  width: 100%;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(8px);
  transition: transform .25s;
}
.modal-bg.open .modal { transform: translateY(0); }
.modal .close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 0;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal .close:hover { background: var(--cream-2); }
.modal h3 { font-size: 30px; letter-spacing: -0.02em; }
.modal .modal-sub { color: var(--mute); margin-top: 10px; margin-bottom: 28px; }
.modal .choice-list { display: grid; gap: 14px; }
.choice {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  background: var(--white);
  text-align: left;
  width: 100%;
  transition: border-color .2s, transform .15s, background .2s;
}
.choice:hover { border-color: var(--ink); background: var(--cream); }
.choice .icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--teal-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.choice .body strong { display: block; font-size: 18px; margin-bottom: 4px; }
.choice .body p { font-size: 14px; color: var(--mute); }
.choice .arrow { margin-left: auto; align-self: center; font-size: 22px; color: var(--mute); }
.choice:hover .arrow { color: var(--ink); }

@media (max-width: 600px) {
  .modal { padding: 32px 22px; }
}

/* ============================================================
   Screen system
   ============================================================ */
.screen { display: none; min-height: 100vh; }
.screen.active { display: block; }

/* ============================================================
   Form pages
   ============================================================ */
.form-shell {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.form-topbar {
  position: sticky; top: 0;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.form-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
.form-topbar .save {
  font-size: 13px;
  color: var(--mute);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.form-topbar .save .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(31,200,176,0.18);
}

.progress {
  height: 4px;
  background: var(--line);
  position: relative;
}
.progress .bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--sky));
  transition: width .35s ease;
}

.form-body {
  flex: 1;
  padding: 56px 0 80px;
}
.form-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.form-step-header {
  margin-bottom: 36px;
}
.form-step-header .crumb {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-step-header h2 {
  margin-top: 10px;
  font-size: 36px;
}
.form-step-header p {
  margin-top: 12px;
  color: var(--mute);
  font-size: 17px;
  max-width: 580px;
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.field label .req { color: var(--teal-700); margin-left: 2px; }
.field label .opt { color: var(--mute-2); font-weight: 600; margin-left: 6px; font-size: 12px; }
.field .hint {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 10px;
  margin-top: -2px;
}

.input, .textarea, .select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 16px;
  transition: border-color .15s, box-shadow .15s;
  color: var(--ink);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31,200,176,0.16);
}
.textarea { min-height: 120px; resize: vertical; font-family: var(--font); line-height: 1.5; }
.textarea.tall { min-height: 200px; }

/* Experiencia laboral estructurada */
.exp-list { display: flex; flex-direction: column; gap: 16px; }
.exp-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exp-card-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.exp-remove {
  background: none;
  border: 0;
  color: var(--mute);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.exp-remove:hover { color: var(--danger); background: var(--white); }
.exp-sub { display: flex; flex-direction: column; gap: 6px; }
.exp-sub label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.exp-sub .input, .exp-sub .textarea { background: var(--white); }
.exp-sub .input.input-error, .exp-sub .textarea.input-error { border-color: var(--danger); }
.exp-add {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px dashed var(--line-2);
  color: var(--ink-2);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.exp-add span { font-size: 18px; line-height: 1; }
.exp-add:hover { border-color: var(--teal); color: var(--teal-700); background: var(--teal-50); }

.exp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.exp-max-note {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-md);
  padding: 12px 16px;
  line-height: 1.5;
}
.exp-max-note strong { color: var(--teal-700); }

/* Fila de label con la ayuda a la derecha */
.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.field-label-row label { margin-bottom: 0; }

/* Ayuda "Sin experiencia laboral?" */
.exp-help { position: relative; flex-shrink: 0; }
.exp-help-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-700);
  cursor: help;
  border-bottom: 1px dashed var(--teal);
  padding-bottom: 1px;
}
.exp-help-pop {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 320px;
  max-width: 80vw;
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 20;
}
.exp-help-pop strong { display: block; color: #fff; margin-bottom: 8px; font-size: 15px; }
.exp-help-pop p { margin: 0 0 8px; font-size: 13.5px; line-height: 1.5; }
.exp-help-pop p:last-child { margin-bottom: 0; }
.exp-help-pop::after {
  content: "";
  position: absolute;
  bottom: 100%; right: 22px;
  border: 7px solid transparent;
  border-bottom-color: var(--ink);
}
.exp-help:hover .exp-help-pop,
.exp-help:focus-within .exp-help-pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Radio / Checkbox cards */
.options { display: grid; gap: 10px; }
.options.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .options.cols-2 { grid-template-columns: 1fr; } }

.option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  position: relative;
}
.option > span:last-child {
  align-self: center;
}
.option:hover { border-color: var(--line-2); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option .mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
  align-self: center;
}
.option .mark.square { border-radius: 6px; }
.option input:checked ~ .mark {
  border-color: var(--teal);
  background: var(--teal);
}
.option input:checked ~ .mark::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
}
.option .mark.square input:checked ~ .mark::after { display: none; }
.option input:checked ~ .mark.square::after {
  content: "✓";
  color: var(--ink);
  width: auto; height: auto;
  border-radius: 0;
  background: none;
  font-size: 13px;
  font-weight: 800;
}
.option:has(input:checked) {
  border-color: var(--ink);
  background: var(--cream);
}

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { border-color: var(--line-2); }
.chip:has(input:checked) {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* File upload */
.uploader {
  border: 2px dashed var(--line-2);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.uploader:hover, .uploader.drag { border-color: var(--teal); background: var(--teal-50); }
.uploader .icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.uploader strong { display: block; font-size: 16px; }
.uploader p { font-size: 13px; color: var(--mute); margin-top: 6px; }
.uploader.has-file { border-style: solid; border-color: var(--teal); background: var(--teal-50); }
.uploader.has-file .icon { background: var(--teal); }

/* Conditional info box */
.note {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: var(--teal-50);
  border-radius: var(--r-md);
  border-left: 4px solid var(--teal);
  margin-bottom: 26px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.note.warn {
  background: #FFF4E6;
  border-left-color: #F08C2A;
  color: #6F3F0C;
  font-weight: 500;
}
.note .icon { flex-shrink: 0; font-size: 18px; }

/* Form footer with buttons */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.form-actions .right { display: flex; gap: 12px; }

.error-msg {
  display: none;
  margin-top: 6px;
  color: var(--danger);
  font-size: 13px;
  font-weight: 600;
}
.field.error .input,
.field.error .textarea,
.field.error .select { border-color: var(--danger); }
.field.error .error-msg { display: block; }

/* Step label (for review/payment screens) */
.step-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.step-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 6px 0 18px;
  scrollbar-width: none;
}
.step-tabs::-webkit-scrollbar { display: none; }

.step-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 14px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s, color .15s;
  position: relative;
  margin-bottom: -1px;
}
.step-tab-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--mute-2);
  letter-spacing: 0.06em;
  background: var(--cream);
  border-radius: 999px;
  padding: 4px 8px;
  min-width: 30px;
  text-align: center;
  transition: background .15s, color .15s;
}
.step-tab-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: color .15s;
}
.step-tab:hover .step-tab-name { color: var(--ink-2); }
.step-tab:hover .step-tab-num { background: var(--cream-2); color: var(--ink-2); }

.step-tab.done .step-tab-num {
  background: var(--teal-50);
  color: var(--teal-700);
}
.step-tab.done .step-tab-name { color: var(--ink-2); }

.step-tab.active {
  border-bottom-color: var(--ink);
}
.step-tab.active .step-tab-num {
  background: var(--ink);
  color: var(--white);
}
.step-tab.active .step-tab-name {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 720px) {
  .step-tab-name { display: none; }
  .step-tab { padding: 10px 10px 14px; }
  .step-tabs { gap: 2px; justify-content: space-between; }
}

/* Mini brand on form */
.form-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-brand img { width: 56px; height: auto; }
.form-brand strong { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }

/* ============================================================
   Review screen
   ============================================================ */
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.review-card-head h4 { font-size: 17px; }
.review-card-head button {
  background: none;
  border: 0;
  color: var(--teal-700);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.review-card-head button:hover { text-decoration: underline; }
.review-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 10px 0;
  font-size: 15px;
}
@media (max-width: 600px) { .review-row { grid-template-columns: 1fr; gap: 4px; } }
.review-row .k { color: var(--mute); font-weight: 600; }
.review-row .v { color: var(--ink); font-weight: 500; white-space: pre-wrap; }
.review-row .v.muted-empty { color: var(--mute-2); font-style: italic; }

/* ============================================================
   Payment screen
   ============================================================ */
.payment-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) { .payment-grid { grid-template-columns: 1fr; } }

.summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.summary-card h4 { margin-bottom: 16px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.summary-row:last-of-type { border-bottom: 0; }
.summary-row .lbl { color: var(--mute); }
.summary-row .val { font-weight: 700; }
.summary-row.total {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  border-bottom: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pkg-pick {
  display: grid;
  gap: 12px;
}
.pkg-pick .pkg-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--white);
}
.pkg-pick .pkg-option:hover { border-color: var(--line-2); }
.pkg-pick .pkg-option:has(input:checked) {
  border-color: var(--ink);
  background: var(--cream);
}
.pkg-pick input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-pick .pkg-mark {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--line-2);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.pkg-pick .pkg-option:has(input:checked) .pkg-mark { border-color: var(--teal); background: var(--teal); }
.pkg-pick .pkg-option:has(input:checked) .pkg-mark::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--white);
}
.pkg-pick .pkg-body { flex: 1; }
.pkg-pick .pkg-body strong { display: block; font-size: 16px; }
.pkg-pick .pkg-body p { font-size: 13px; color: var(--mute); margin-top: 2px; }
.pkg-pick .pkg-price { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.pkg-pick .pkg-price small { display: block; font-size: 11px; color: var(--mute-2); font-weight: 600; text-decoration: line-through; }

.addon-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px dashed var(--line-2);
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--white);
  position: relative;
}
.addon-row:has(input:checked) {
  border-style: solid;
  border-color: var(--ink);
  background: var(--cream);
}
.addon-row input { position: absolute; opacity: 0; }
.addon-row .ck {
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--line-2);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.addon-row:has(input:checked) .ck {
  background: var(--teal); border-color: var(--teal); color: var(--ink);
}
.addon-row:has(input:checked) .ck::after { content: "✓"; font-size: 13px; }
.addon-row .body { flex: 1; }
.addon-row .body strong { display: block; font-size: 15px; }
.addon-row .body p { font-size: 13px; color: var(--mute); margin-top: 2px; }
.addon-row .price { font-weight: 800; }

.phone-block { margin-top: 28px; }
.phone-block h4 { margin-bottom: 14px; }

.mp-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
.mp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: #009EE3;
  color: var(--white);
  border-radius: var(--r-md);
  border: 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s, transform .15s;
  width: 100%;
}
.mp-btn:hover { background: #007FB8; }
.mp-btn:disabled { background: var(--mute-2); cursor: not-allowed; }
.mp-btn svg { width: 30px; height: 30px; flex-shrink: 0; }
.mp-btn .mp-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  color: #009EE3;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.02em;
  padding: 4px 8px;
  border-radius: 4px;
}
.mp-btn.wa { background: #25D366; }
.mp-btn.wa:hover { background: #1FBC5C; }

/* MP alias / amount rows */
.mp-payment {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 22px;
}
.mp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  gap: 12px;
}
.mp-row-lbl {
  font-size: 13px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mp-row-val {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-row-val strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--white);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.copy-btn:hover { border-color: var(--ink); color: var(--ink); }
.copy-btn.copied { border-color: var(--teal); color: var(--teal-700); background: var(--teal-50); }

.mp-steps {
  list-style: none;
  counter-reset: mp;
  margin: 0 0 4px;
  padding: 0;
  font-size: 15px;
  color: var(--ink-2);
}
.mp-steps li {
  position: relative;
  padding: 10px 0 10px 38px;
  counter-increment: mp;
  line-height: 1.4;
}
.mp-steps li::before {
  content: counter(mp);
  position: absolute;
  left: 0; top: 9px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 18px;
}
.section-card h4 { margin-bottom: 6px; font-size: 20px; }
.section-card > p { color: var(--mute); margin-bottom: 22px; font-size: 14px; }

/* ============================================================
   Confirmation
   ============================================================ */
.confirmation {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 40px 24px;
}
.confirmation-card {
  max-width: 560px;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.confirmation .badge {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  position: relative;
}
.confirmation .badge img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.confirmation .badge::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}
.confirmation h2 { font-size: 36px; margin-bottom: 14px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
  flex-shrink: 0;
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  opacity: 0.4;
  animation: pulse 1.8s infinite;
}
.confirmation .sub { color: var(--mute); margin-bottom: 28px; }
.confirmation .next-list {
  text-align: left;
  background: var(--cream);
  padding: 22px 24px;
  border-radius: var(--r-md);
  margin: 0 0 28px;
}
.confirmation .next-list h5 {
  margin: 0 0 12px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}
.confirmation .next-list ol {
  margin: 0; padding-left: 22px;
  font-size: 15px; color: var(--ink-2);
}
.confirmation .next-list ol li { margin-bottom: 8px; }
.confirmation .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   Flatpickr — date picker custom theme
   ============================================================ */
.flatpickr-calendar {
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 8px !important;
  font-family: var(--font) !important;
  width: 320px !important;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after { border-bottom-color: var(--line) !important; }
.flatpickr-months {
  padding: 8px 4px 14px !important;
  align-items: center;
}
.flatpickr-month {
  height: 40px !important;
  color: var(--ink) !important;
}
.flatpickr-current-month {
  font-size: 16px !important;
  font-weight: 700 !important;
  padding-top: 8px !important;
  color: var(--ink) !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 700 !important;
  font-size: 16px !important;
  background: transparent !important;
  border-radius: 8px !important;
  padding: 4px 6px !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: var(--cream) !important;
}
.flatpickr-current-month input.cur-year {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: var(--ink) !important;
}
.flatpickr-prev-month, .flatpickr-next-month {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  fill: var(--ink) !important;
  color: var(--ink) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 8px !important;
  padding: 0 !important;
}
.flatpickr-prev-month:hover, .flatpickr-next-month:hover {
  background: var(--cream) !important;
  fill: var(--ink) !important;
}
.flatpickr-prev-month svg, .flatpickr-next-month svg {
  width: 14px !important;
  height: 14px !important;
}
span.flatpickr-weekday {
  color: var(--mute-2) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}
.dayContainer {
  padding: 4px !important;
}
.flatpickr-day {
  border-radius: 10px !important;
  font-weight: 600 !important;
  color: var(--ink-2) !important;
  border: 0 !important;
  max-width: 40px !important;
  height: 36px !important;
  line-height: 36px !important;
  margin: 1px 0 !important;
}
.flatpickr-day:hover {
  background: var(--cream) !important;
  border-color: transparent !important;
}
.flatpickr-day.today {
  border-color: transparent !important;
  color: var(--teal-700) !important;
  background: var(--teal-50) !important;
}
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: var(--white) !important;
}
.flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay {
  color: var(--mute-2) !important;
  opacity: 0.5;
}

/* Make the date input feel clickable */
input[autocomplete=bday] {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235C6068' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px !important;
}
.hide { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }

/* Conditional fade reveal */
.collapse { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.collapse.open { max-height: 600px; }

/* Skip link for accessibility */
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: var(--white); padding: 10px 14px; border-radius: 8px; z-index: 999; }

/* ============================================================
   Pulido mobile (≤768 y ≤600)
   ============================================================ */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }

  /* Nav más compacto */
  .nav-inner { height: 66px; }
  .brand { gap: 10px; }
  .brand img { width: 50px; }
  .brand .name strong { font-size: 15px; }

  /* Menos aire vertical entre secciones */
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head .lead { margin-top: 12px; }

  /* Hero */
  .hero { padding: 28px 0 52px; }
  .hero .lead { margin-top: 18px; }
  .hero-ctas { margin-top: 28px; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { margin-top: 24px; gap: 10px; }
  /* La ilustración de tarjetas de CV (ATS Friendly) no aporta en pantalla chica */
  .hero-visual { display: none; }

  /* CTA banner y pasos */
  .cta-banner { padding: 36px 24px; }
  .steps { margin-top: 36px; }

  /* WhatsApp: ícono más grande y botón más presente */
  .whatsapp-btn { padding: 15px 24px; font-size: 16px; }
  .whatsapp-btn svg { width: 40px; height: 40px; }

  /* Botones del formulario: apilados y a todo el ancho (no se salen del eje X) */
  .form-actions { flex-direction: column-reverse; align-items: stretch; gap: 12px; margin-top: 32px; padding-top: 24px; }
  .form-actions .right { flex-direction: column; gap: 12px; width: 100%; }
  .form-actions .btn { width: 100%; }
  .form-container { padding: 0 20px; }
  .form-step-header h2 { font-size: 28px; }

  /* Pago: que nada se salga del eje X */
  .section-card { padding: 22px 18px; }
  .mp-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mp-row-val { width: 100%; justify-content: space-between; }
  .summary-card { position: static; top: auto; }
}

@media (max-width: 600px) {
  /* Titulares a una escala que respira en pantallas chicas */
  h1 { font-size: clamp(30px, 8.6vw, 40px); line-height: 1.08; }
  h2 { font-size: clamp(26px, 7vw, 34px); }
  .hero h1 { margin-top: 6px; }

  /* Botones grandes un toque más chicos */
  .btn.lg { padding: 16px 22px; font-size: 16px; }

  /* Paquetes: un poco menos de padding interno */
  .package { padding: 26px 22px 24px; }
  .package .desc { min-height: 0; }

  /* Modal de opciones: dos botones lado a lado y compactos */
  .modal-bg { align-items: flex-start; }
  .modal { padding: 28px 20px; }
  .modal h3 { font-size: 24px; }
  .modal .modal-sub { margin-bottom: 20px; font-size: 14px; }
  .modal .choice-list { grid-template-columns: 1fr 1fr; gap: 10px; }
  .choice { flex-direction: column; gap: 10px; padding: 18px 14px; text-align: center; align-items: center; }
  .choice .icon { width: 44px; height: 44px; font-size: 20px; }
  .choice .body strong { font-size: 15px; }
  .choice .body p { display: none; }
  .choice .arrow { display: none; }
}

/* ============================================================
   Sliders horizontales en mobile: testimonios y paquetes
   ============================================================ */
@media (max-width: 768px) {
  .testimonials,
  .packages {
    display: flex;
    align-items: stretch;
    grid-template-columns: none;
    max-width: none;
    margin: 0 -20px;
    padding: 18px 20px 16px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials::-webkit-scrollbar,
  .packages::-webkit-scrollbar { display: none; }

  .testimonials > *,
  .packages > * {
    flex: 0 0 86%;
    scroll-snap-align: start;
    min-width: 0;
  }
  .package:hover { transform: none; }

  /* Pista visual de que se puede deslizar */
  .testimonials::after,
  .packages::after {
    content: "";
    flex: 0 0 4px;
  }
}
