/* ============================================
   ORDEN EMPRENDEDOR — Landing Page
   ============================================ */

:root {
  --purple:      #5B21B6;
  --purple-dk:   #4C1D95;
  --purple-glow: rgba(91,33,182,0.10);
  --purple-lt:   #EDE9FE;
  --amber:       #D97706;
  --amber-lt:    #FEF3C7;
  --dark:        #111827;
  --text:        #374151;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --bg:          #FAFAF9;
  --white:       #FFFFFF;
  --green:       #059669;
  --red:         #EF4444;
  --r:           14px;
  --r-lg:        24px;
  --sh:          0 4px 24px rgba(0,0,0,0.07);
  --sh-lg:       0 16px 64px rgba(0,0,0,0.12);
  --max:         1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; }
em { font-style: italic; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  background: var(--amber-lt);
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 22px;
}
.section-title em { color: var(--purple); }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm  { padding: 9px 22px; font-size: 14px; }
.btn-lg  { padding: 16px 32px; font-size: 16px; }
.btn-xl  { padding: 20px 48px; font-size: 18px; }
.btn-full{ width: 100%; }

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 18px rgba(91,33,182,.36);
}
.btn-primary:hover {
  background: var(--purple-dk);
  box-shadow: 0 8px 28px rgba(91,33,182,.46);
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover { background: var(--purple-glow); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--white); border-color: var(--muted); }

.badge {
  display: inline-block;
  background: var(--purple-glow);
  color: var(--purple);
  border: 1px solid rgba(91,33,182,.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* ── NAV ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(250,250,249,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 36px;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 45%, #FAFAF9 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,33,182,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
}
.hero__text { opacity: 0; }
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero__title em { color: var(--purple); }
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.hero__visual { opacity: 0; }
.hero__card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.hero__img-wrap {
  min-height: 300px;
  background: linear-gradient(135deg, var(--purple-lt), #DDD6FE);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img {
  width: 100%;
  display: block;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.hero__img-placeholder {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px;
  text-align: center;
  color: var(--purple);
  min-height: 300px;
}
.hero__img-placeholder span { font-size: 56px; }
.hero__img-placeholder p { font-size: 16px; font-weight: 600; color: var(--purple); }
.hero__img-placeholder small { font-size: 12px; color: var(--muted); }
.hero__card-label {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 10px; height: 10px;
  background: var(--purple);
  border-radius: 50%;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: .3; }
}

/* ── PAIN ─────────────────────────────────── */
.pain { background: var(--white); }
.pain .section-title { margin-bottom: 44px; }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.pain__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
}
.pain__icon { font-size: 30px; margin-bottom: 12px; }
.pain__item p { font-size: 15px; color: var(--text); line-height: 1.6; }
.pain__bridge {
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}
.pain__bridge strong { color: var(--dark); }

/* ── SOLUTION ─────────────────────────────── */
.solution { background: var(--bg); }
.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution__desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.solution__list { display: flex; flex-direction: column; gap: 14px; }
.solution__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.chk {
  flex-shrink: 0;
  background: var(--purple);
  color: white;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}
.mockup-stack { position: relative; width: 100%; max-width: 460px; }
.mockup-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: rotate(-1.5deg);
  transition: transform .3s ease;
}
.mockup-card:hover { transform: rotate(0deg) scale(1.02); }
.mockup-img-wrap {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--purple-lt), #DDD6FE);
  overflow: hidden;
}
.mockup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.mockup-card span {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mc-back  { display: none; }
.mc-front { width: 100%; }

/* ── PREVIEW ──────────────────────────────── */
.preview {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}
.preview__header { margin-bottom: 56px; }
.preview__header .section-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.preview__header .section-title { color: var(--white); }
.preview__outer { overflow: hidden; padding: 0 0 8px; }
.preview__track {
  display: flex;
  gap: 28px;
  padding: 0 40px;
  width: max-content;
  will-change: transform;
}
.preview__slide { width: 400px; flex-shrink: 0; opacity: 0; }
.slide__img-wrap {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
}
.slide__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.slide__img-wrap.no-img img { display: none; }
.slide__img-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.slide__caption h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}
.slide__caption p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.65; }

/* ── PLANES ───────────────────────────────── */
.planes { background: var(--white); }
.planes__sub { color: var(--muted); font-size: 16px; margin-bottom: 48px; }
.planes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.plan-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card--star {
  background: var(--white);
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--purple-glow);
}
.plan__ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan__top { margin-bottom: 26px; }
.plan__for {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.plan__top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 12px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 10px;
}
.plan__cur { font-size: 17px; font-weight: 700; color: var(--dark); }
.plan__num { font-size: 34px; font-weight: 700; color: var(--dark); line-height: 1; }
.plan__ars { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 2px; }
.plan__pitch { font-size: 13px; color: var(--muted); line-height: 1.5; }
.plan__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}
.plan__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.plan__list li span { flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.plan__list li.on span { color: var(--green); }
.plan__list li.off { opacity: .38; }
.plan__list li.off span { color: var(--muted); }

.plan-extra {
  background: var(--bg);
  border: 1.5px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  position: relative;
}
.plan-extra__new {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--amber);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
}
.plan-extra__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.plan-extra__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}
.plan-extra__info p { color: var(--muted); font-size: 15px; max-width: 440px; line-height: 1.6; }
.plan-extra__right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.planes__note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 32px; }

/* ── HISTORIA ─────────────────────────────── */
.historia {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 55%, #F5F3FF 100%);
}
.historia__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.timeline {
  position: relative;
  margin: 32px 0;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--amber) 60%, var(--green) 100%);
}
.tl-item {
  position: relative;
  margin-bottom: 26px;
}
.tl-dot {
  position: absolute;
  left: -25px; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  background: var(--muted);
  box-shadow: 0 0 0 2px var(--muted);
}
.tl-item--bad .tl-dot  { background: var(--red);   box-shadow: 0 0 0 2px var(--red); }
.tl-item--turn .tl-dot { background: var(--amber);  box-shadow: 0 0 0 2px var(--amber); }
.tl-item--good .tl-dot { background: var(--green);  box-shadow: 0 0 0 2px var(--green); }
.tl-item p { font-size: 15px; line-height: 1.7; color: var(--text); }
.historia__cierre {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  border-left: 3px solid var(--purple);
  padding-left: 20px;
  margin-top: 8px;
}
.historia__cierre em { color: var(--purple); font-style: normal; font-weight: 600; }
.foto-wrap { position: sticky; top: 110px; }
.foto-wrap > img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  min-height: 420px;
  object-fit: cover;
}
.foto-placeholder {
  width: 100%;
  min-height: 420px;
  background: rgba(91,33,182,.07);
  border: 2px dashed rgba(91,33,182,.25);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  color: var(--muted);
  padding: 40px;
}
.foto-placeholder span { font-size: 52px; }
.foto-placeholder p { font-size: 15px; font-weight: 500; color: var(--purple); }
.foto-placeholder small { font-size: 12px; opacity: .65; }

/* ── GARANTIA ─────────────────────────────── */
.garantia { background: var(--dark); padding: 80px 0; }
.garantia__card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 48px 52px;
}
.garantia__icon { font-size: 64px; flex-shrink: 0; line-height: 1; }
.garantia__text h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 30px;
  margin-bottom: 16px;
}
.garantia__text p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; margin-bottom: 10px; }
.garantia__reason { color: rgba(255,255,255,.45) !important; font-style: italic; }

/* ── TESTIMONIOS ──────────────────────────── */
.testimonios { background: var(--white); }
.testi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.testi-card { border-radius: var(--r-lg); overflow: hidden; }
.testi-placeholder {
  background: var(--bg);
  border: 1.5px dashed var(--border);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-ph-inner { text-align: center; padding: 40px; }
.testi-avatar { font-size: 44px; margin-bottom: 14px; }
.testi-ph-inner p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.testi-ph-inner a { color: var(--purple); font-weight: 600; }

/* ── FAQ ──────────────────────────────────── */
.faq { background: var(--bg); }
.faq__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q span { flex-shrink: 0; font-size: 18px; color: var(--purple); transition: transform .3s; }
.faq-item.open .faq-q span { transform: rotate(-180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding-bottom: 20px; color: var(--muted); font-size: 15px; line-height: 1.75; }

/* ── CTA FINAL ────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--purple-dk) 0%, var(--purple) 100%);
  padding: 120px 0;
}
.cta-final__inner { text-align: center; }
.cta-final__inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-final__inner p { color: rgba(255,255,255,.72); font-size: 18px; margin-bottom: 40px; }
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────── */
.footer { background: var(--dark); padding: 48px 0 24px; }
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer__brand strong {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}
.footer__brand p { color: rgba(255,255,255,.4); font-size: 14px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer__links a { color: rgba(255,255,255,.5); font-size: 14px; transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom p { color: rgba(255,255,255,.25); font-size: 13px; text-align: center; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 80px 0 60px; }
  .hero__visual { order: -1; }
  .hero__img-wrap { min-height: 220px; }
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .solution__inner { grid-template-columns: 1fr; gap: 48px; }
  .mockup-img-wrap { height: 220px; }
  .planes__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 28px; }
  .plan-extra__body { flex-direction: column; align-items: flex-start; }
  .plan-extra__right { flex-wrap: wrap; }
  .historia__inner { grid-template-columns: 1fr; gap: 44px; }
  .historia__right { order: -1; }
  .foto-wrap { position: static; }
  .foto-wrap > img, .foto-placeholder { min-height: 320px; }
  .garantia__card { flex-direction: column; gap: 20px; padding: 36px 28px; }
  .testi__grid { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .pain__grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
  .hero__trust { flex-direction: column; gap: 8px; }
  .preview__slide { width: 300px; }
  .slide__img-wrap { height: 200px; }
  .garantia__card { padding: 28px 20px; }
  .garantia__text h2 { font-size: 22px; }
  .cta-final { padding: 80px 0; }
  .cta-trust { gap: 16px; }
}
