/* ===========================================================
   Redes y Poder — Karol Solís + Laura Camila Vargas
   Paleta: tomada de assertivaconsulting.com
   =========================================================== */

:root {
  --primary:       #254D58;
  --primary-dark:  #173640;
  --secondary:     #3F646F;
  --accent-light:  #92BFCA;
  --accent-warm:   #FCC552;
  --accent-warm-2: #FFC857;
  --lavender:      #9A83A5;
  --bg:            #F8F6F6;
  --bg-card:       #FFFFFF;
  --text:          #1a1a1a;
  --text-muted:    #5C5C5C;
  --border:        #E2E2E8;
  --shadow-sm:     0 2px 8px rgba(23, 54, 64, 0.06);
  --shadow-md:     0 8px 24px rgba(23, 54, 64, 0.10);
  --shadow-lg:     0 20px 50px rgba(23, 54, 64, 0.15);
  --radius:        14px;
  --radius-lg:     22px;
  --max:           1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'PT Serif', Georgia, serif;
  color: var(--primary-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: .75rem; }
h4 { font-size: 1.15rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p.lead { font-size: 1.2rem; color: var(--text); }

a { color: var(--primary); text-decoration: none; }

section { padding: 90px 24px; }
.container { max-width: var(--max); margin: 0 auto; }
.narrow { max-width: 860px; margin: 0 auto; }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: 'PT Serif', serif;
  font-weight: 700; font-size: 1.25rem; color: var(--primary-dark);
}
.brand span { color: var(--accent-warm); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 17px 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--accent-warm);
  color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(252, 197, 82, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 197, 82, 0.55);
  background: var(--accent-warm-2);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 20px 52px; font-size: 1.15rem; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 100%);
  color: #fff;
  padding: 110px 24px 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(252, 197, 82, 0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(146, 191, 202, 0.22), transparent 50%);
  pointer-events: none;
}
/* Decorative blobs */
.hero::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(252, 197, 82, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  top: -180px; right: -180px;
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px;
  align-items: center; position: relative;
  z-index: 2;
}
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 em {
  font-style: normal;
  color: var(--accent-warm);
  position: relative;
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-kicker {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent-warm);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 8px 18px;
  background: rgba(252, 197, 82, 0.12);
  border: 1px solid rgba(252, 197, 82, 0.35);
  border-radius: 100px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 2rem; }
.hero-meta {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.hero-meta strong { color: var(--accent-warm); font-weight: 600; }

.hero-visual {
  position: relative;
  padding: 0 10px;
}
.hero-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,0.14);
  position: relative;
  z-index: 2;
  transform: rotate(-1.2deg);
  transition: transform .4s ease;
}
.hero-img:hover { transform: rotate(0deg) scale(1.01); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating social-proof badge on top of hero image */
.hero-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #fff;
  color: var(--primary-dark);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0,0,0,0.22);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 290px;
  transform: rotate(-2deg);
  border-left: 4px solid var(--accent-warm);
}
.hero-badge .num {
  font-family: 'PT Serif', serif;
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1;
}
.hero-badge .lbl {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}
.hero-badge-2 {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--accent-warm);
  color: var(--primary-dark);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(252, 197, 82, 0.45);
  z-index: 3;
  transform: rotate(3deg);
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
  max-width: 160px;
}
.hero-badge-2 strong {
  display: block;
  font-family: 'PT Serif', serif;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
}

/* ========== MENTORAS ========== */
.mentoras { background: var(--bg-card); }
.mentoras-intro { text-align: center; margin-bottom: 60px; }
.mentoras-intro h2 { color: var(--primary-dark); }
.mentoras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.mentora-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.mentora-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mentora-photo {
  aspect-ratio: 1 / 1;
  background: var(--accent-light);
  overflow: hidden;
}
.mentora-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.mentora-body { padding: 32px 32px 36px; }
.mentora-body h3 { color: var(--primary-dark); }
.mentora-role {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: .75rem;
}
.mentora-socials {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mentora-socials span {
  font-size: .9rem; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.mentora-socials strong { color: var(--primary-dark); font-weight: 700; }

.mentoras-quote {
  background: var(--primary-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  position: relative;
}
.mentoras-quote::before {
  content: '"';
  font-family: 'PT Serif', serif;
  font-size: 8rem;
  color: var(--accent-warm);
  position: absolute;
  top: -20px; left: 30px;
  line-height: 1;
  opacity: 0.4;
}
.mentoras-quote p {
  color: #fff;
  font-size: 1.25rem;
  font-style: italic;
  font-family: 'PT Serif', serif;
  margin: 0;
  position: relative;
}
/* ========== MENTORAS CTAs (botones IG) ========== */
.mentoras-ctas {
  text-align: center;
  margin-bottom: 60px;
}
.mentoras-ctas-label {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
}
.mentoras-ctas-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.mentora-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: .95rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff !important;
  border: none;
  box-shadow: 0 6px 20px rgba(131, 58, 180, 0.35);
  transition: opacity .2s ease, transform .2s ease;
}
.mentora-ig-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(131, 58, 180, 0.45);
}
.mentora-ig-btn i { font-size: 1.1rem; }

.mentora-socials i {
  font-size: 1rem;
  color: var(--secondary);
}

.badge-top10 {
  margin-top: 24px;
  display: inline-block;
  padding: 10px 22px;
  background: rgba(252, 197, 82, 0.15);
  border: 1px solid var(--accent-warm);
  color: var(--accent-warm);
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
}

/* ========== PROBLEMA ========== */
.problema { background: var(--bg); text-align: center; }
.problema h2 em { font-style: normal; color: var(--secondary); }
.problema-lista {
  list-style: none;
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
}
.problema-lista li {
  padding: 20px 24px 20px 60px;
  background: var(--bg-card);
  margin-bottom: 14px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 1.05rem;
}
.problema-lista li::before {
  content: '✕';
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: #fde8e8;
  color: #c0392b;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.problema-cierre {
  max-width: 700px; margin: 40px auto 0;
  font-size: 1.15rem;
  color: var(--primary-dark);
  font-family: 'PT Serif', serif;
  font-style: italic;
}

/* ========== PROPUESTA ========== */
.propuesta {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.propuesta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252, 197, 82, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  top: -300px; left: -200px;
  pointer-events: none;
}
.propuesta::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(146, 191, 202, 0.09) 0%, transparent 60%);
  border-radius: 50%;
  bottom: -250px; right: -150px;
  pointer-events: none;
}
.propuesta > .container { position: relative; z-index: 2; }
.propuesta .kicker {
  display: inline-block;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.propuesta h2 {
  color: #fff;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.propuesta h2 span { color: var(--accent-warm); }
.propuesta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto 3rem;
  list-style: none;
}
.propuesta-list li {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(146, 191, 202, 0.25);
  padding: 24px 26px;
  border-radius: var(--radius);
  text-align: left;
  font-size: 1.05rem;
  display: flex; align-items: flex-start; gap: 14px;
}
.propuesta-list li::before {
  content: '→';
  color: var(--accent-warm);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ========== MODULOS ========== */
.modulos { background: var(--bg-card); }
.modulos-intro { text-align: center; margin-bottom: 60px; }
.modulos-intro p { max-width: 700px; margin: 1rem auto 0; }
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.modulo {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.modulo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.modulo-img {
  aspect-ratio: 16/9;
  background: var(--accent-light);
  overflow: hidden;
  position: relative;
}
.modulo-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(23, 54, 64, 0.35) 100%);
  pointer-events: none;
}
.modulo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modulo-body {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.modulo-body ul { margin-top: auto; }
.modulo-num {
  display: inline-block;
  background: var(--accent-warm);
  color: var(--primary-dark);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.modulo h3 { color: var(--primary-dark); font-size: 1.35rem; }
.modulo .aqui {
  margin-top: 18px;
  font-size: .85rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.modulo ul {
  list-style: none;
  margin-top: 10px;
}
.modulo ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--text-muted);
  font-size: .97rem;
  border-bottom: 1px solid var(--border);
}
.modulo ul li:last-child { border-bottom: none; }
.modulo ul li::before {
  content: '▸';
  color: var(--accent-warm);
  position: absolute;
  left: 0;
  font-size: 1rem;
}
.modalidad-box {
  margin-top: 60px;
  text-align: center;
  padding: 44px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--accent-light);
}
.modalidad-box strong { color: var(--primary-dark); font-size: 1.3rem; font-family: 'PT Serif', serif; }
.modalidad-box p { margin-top: 12px; }

/* ========== PREVENTA ========== */
.preventa {
  background: var(--bg);
  text-align: center;
}
.preventa-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--accent-warm);
}
.preventa-card .label {
  display: inline-block;
  background: var(--accent-warm);
  color: var(--primary-dark);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.preventa-card h2 { color: var(--primary-dark); margin-bottom: 1rem; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 10px;
}
.price-main {
  font-family: 'PT Serif', serif;
  font-size: 3.2rem;
  color: var(--primary-dark);
  font-weight: 700;
}
.price-old {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-usd { color: var(--secondary); font-size: 1rem; margin-bottom: 24px; }

.preventa-includes {
  list-style: none;
  text-align: left;
  max-width: 440px;
  margin: 30px auto;
}
.preventa-includes li {
  padding: 12px 0 12px 34px;
  position: relative;
  color: var(--text);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.preventa-includes li::before {
  content: '✓';
  position: absolute; left: 0; top: 12px;
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.masterclass-box {
  background: rgba(252, 197, 82, 0.12);
  border-left: 4px solid var(--accent-warm);
  padding: 18px 22px;
  border-radius: 10px;
  margin: 24px 0;
  text-align: left;
  font-size: .95rem;
}
.masterclass-box strong { color: var(--primary-dark); display: block; margin-bottom: 4px; }

.cupos { margin-top: 20px; color: var(--secondary); font-size: .9rem; font-weight: 600; }

/* ========== PARA QUIEN ========== */
.para-quien { background: var(--bg-card); }
.para-quien h2 { text-align: center; }
.para-quien > .container > p { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.para-quien-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.para-quien-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--border);
  font-size: 1rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text);
}
.para-quien-card::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--accent-warm);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.no-es {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  text-align: center;
}
.no-es h3 { color: #fff; font-size: 1.8rem; margin-bottom: 1.5rem; }
.no-es h3 span { color: var(--accent-warm); }
.no-es ul {
  max-width: 600px; margin: 20px auto;
  list-style: none; text-align: left;
}
.no-es ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.no-es ul li:last-child { border-bottom: none; }
.no-es ul li::before {
  content: '→';
  position: absolute; left: 0; color: var(--accent-warm); font-weight: 700;
}
.no-es-divider {
  width: 60px; height: 3px;
  background: var(--accent-warm);
  margin: 26px auto;
  border: 0;
}

/* ========== FINAL ========== */
.final {
  background: var(--bg);
  text-align: center;
}
.final-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.final-visual {
  position: relative;
}
.final-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.final-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.final-quote-card {
  position: absolute;
  right: -30px;
  bottom: 40px;
  background: #fff;
  padding: 26px 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(23, 54, 64, 0.18);
  max-width: 280px;
  z-index: 3;
  border-left: 4px solid var(--accent-warm);
  transform: rotate(1.5deg);
}
.final-quote-card .quote-num {
  font-family: 'PT Serif', serif;
  font-size: 2.4rem;
  color: var(--primary-dark);
  line-height: 1;
  font-weight: 700;
}
.final-quote-card .quote-txt {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.final-decor-blob {
  position: absolute;
  width: 260px; height: 260px;
  background: var(--accent-warm);
  border-radius: 50%;
  top: -30px; left: -40px;
  z-index: 1;
  opacity: .2;
  filter: blur(20px);
}
.final-text { text-align: left; }
.final-text h2 { margin-bottom: 1.5rem; }
.final-text ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.final-text ul li {
  padding: 14px 0 14px 36px;
  position: relative;
  font-size: 1.1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.final-text ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 14px;
  width: 24px; height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 700;
}

/* ========== CTA FINAL ========== */
.cta-final {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
}
.cta-final h2 { color: #fff; margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.cta-final h2 span { color: var(--accent-warm); }
.cta-final .sub { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-final .cupos-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(252, 197, 82, 0.15);
  border: 1px solid var(--accent-warm);
  color: var(--accent-warm);
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.contact-line {
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.75);
  font-size: .95rem;
}
.contact-line a { color: var(--accent-warm); font-weight: 600; border-bottom: 1px solid var(--accent-warm); }

/* ========== FOOTER ========== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 40px 24px;
  font-size: .85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 200;
  box-shadow: 0 -8px 24px rgba(23, 54, 64, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta .info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sticky-cta .info .price {
  font-family: 'PT Serif', serif;
  font-size: 1.35rem;
  color: var(--primary-dark);
  font-weight: 700;
}
.sticky-cta .info .label {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.sticky-cta .btn {
  padding: 14px 22px;
  font-size: .95rem;
  flex-shrink: 0;
}

/* ===========================================================
   PAGO
   =========================================================== */
.pago-wrap {
  min-height: 100vh;
  background: var(--bg);
  padding: 60px 24px;
}
.pago-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* Hotmart widget va a col 2 (derecha), resumen a col 1 (izquierda) en desktop */
.pago-resumen { grid-column: 1; grid-row: 1; }
.hotmart-mock { grid-column: 2; grid-row: 1; }
.pago-resumen {
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 50px 44px;
}
.pago-resumen h2 { color: #fff; font-size: 1.5rem; margin-bottom: 1.5rem; }
.pago-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.pago-item h3 { color: #fff; font-size: 1.2rem; font-family: 'PT Serif', serif; }
.pago-item p { color: rgba(255,255,255,0.8); font-size: .95rem; margin-top: 6px; }
.pago-totals { margin-top: 30px; }
.pago-totals .row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: .95rem;
}
.pago-totals .row.total {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 10px;
  padding-top: 18px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  font-family: 'PT Serif', serif;
}
.pago-totals .total strong { color: var(--accent-warm); }
.pago-garantia {
  margin-top: 30px;
  padding: 18px;
  background: rgba(252, 197, 82, 0.12);
  border-radius: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,0.9);
}
.pago-garantia strong { color: var(--accent-warm); }

.pago-form { padding: 50px 44px; }
.pago-form h2 { color: var(--primary-dark); font-size: 1.6rem; margin-bottom: 8px; }
.pago-form .step-label {
  font-size: .85rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
}
.pago-form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: .9rem;
}
.pago-form input,
.pago-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: border .2s;
}
.pago-form input:focus,
.pago-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.pago-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pago-gateway-placeholder {
  margin: 30px 0 20px;
  padding: 26px;
  background: var(--bg);
  border: 2px dashed var(--accent-light);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
}
.pago-gateway-placeholder strong { color: var(--primary-dark); display: block; margin-bottom: 6px; }
.pago-form .btn { width: 100%; margin-top: 10px; }
.pago-safe {
  text-align: center;
  margin-top: 20px;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ===========================================================
   HOTMART WIDGET MOCK
   =========================================================== */
.hotmart-mock {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  border: 1px solid #e8e8e8;
  font-family: 'DM Sans', sans-serif;
}

.hm-header {
  background: #fff;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}
.hm-logo { height: 26px; width: auto; }
.hm-secure {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: #22c55e; font-weight: 600;
}

.hm-product {
  background: #fafafa;
  padding: 16px 28px;
  border-bottom: 1px solid #f0f0f0;
}
.hm-product-info {
  display: flex; justify-content: space-between; align-items: center;
}
.hm-product-name { font-weight: 700; color: #1a1a1a; font-size: .97rem; }
.hm-product-price { font-weight: 700; color: #FF0036; font-size: 1.1rem; }

.hm-tabs {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 28px;
  gap: 0;
}
.hm-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 16px;
  border: none; background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 500; color: #888;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.hm-tab.active { color: #FF0036; border-bottom-color: #FF0036; font-weight: 700; }
.hm-tab:hover { color: #FF0036; }

.hm-form {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.hm-field { display: flex; flex-direction: column; gap: 6px; }
.hm-field label {
  font-size: .82rem; font-weight: 600;
  color: #444; text-transform: none; letter-spacing: 0;
}
.hm-field input,
.hm-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e2e2;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color .2s;
}
.hm-field input:focus,
.hm-field select:focus {
  outline: none;
  border-color: #FF0036;
}
.hm-card-input { position: relative; }
.hm-card-input input { padding-right: 80px; }
.hm-card-icons {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  display: flex; gap: 4px; align-items: center;
}
.hm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.hm-pay-btn {
  width: 100%;
  padding: 16px;
  background: #FF0036;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(255, 0, 54, 0.35);
  transition: opacity .2s, transform .2s;
  margin-top: 4px;
}
.hm-pay-btn:hover { opacity: .88; transform: translateY(-1px); }

.hm-footer {
  text-align: center;
  font-size: .78rem;
  color: #aaa;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  margin: 0;
}
.hm-footer strong { color: #888; }

/* ===========================================================
   GRACIAS
   =========================================================== */
.gracias-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.gracias-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(252, 197, 82, 0.14), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(146, 191, 202, 0.16), transparent 50%);
}
.gracias-card {
  max-width: 720px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.gracias-icon {
  width: 90px; height: 90px;
  background: var(--accent-warm);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(252, 197, 82, 0.35);
}
.gracias-card h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.gracias-card h1 span { color: var(--accent-warm); }
.gracias-card .lead-g {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.gracias-steps {
  text-align: left;
  max-width: 500px;
  margin: 2rem auto;
  list-style: none;
  counter-reset: step;
}
.gracias-steps li {
  padding: 18px 20px 18px 68px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  margin-bottom: 12px;
  position: relative;
  color: rgba(255,255,255,0.92);
  counter-increment: step;
}
.gracias-steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--accent-warm);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'PT Serif', serif;
  font-size: 1.1rem;
}
.gracias-steps li strong { display: block; color: #fff; margin-bottom: 3px; }
.gracias-card .btn { margin-top: 16px; }
.gracias-note {
  margin-top: 26px;
  font-size: .9rem;
  color: rgba(255,255,255,0.7);
}
.gracias-note a { color: var(--accent-warm); border-bottom: 1px solid var(--accent-warm); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  section { padding: 70px 20px; }
  /* Fix spacing excesivo en "¿A quién va dirigido?" */
  .problema-dirigido { padding-top: 40px; padding-bottom: 40px; }


  .hero { padding: 80px 20px 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-badge { left: -10px; bottom: -20px; max-width: 260px; padding: 18px 22px; }
  .hero-badge .num { font-size: 1.7rem; }
  .hero-badge-2 { top: -18px; right: -10px; padding: 12px 16px; font-size: .78rem; }
  .hero-badge-2 strong { font-size: 1.3rem; }
  .mentoras-grid { grid-template-columns: 1fr; gap: 28px; }
  .modulos-grid { grid-template-columns: 1fr; }
  .propuesta-list { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; gap: 50px; }
  .final-visual { max-width: 420px; margin: 0 auto; }
  .final-quote-card { right: -15px; bottom: 30px; max-width: 240px; padding: 22px 24px; }
  .final-text { text-align: center; }
  .final-text ul li { text-align: left; }
  .pago-container { grid-template-columns: 1fr; }
  /* En mobile: widget primero (HTML order), resumen colapsado abajo */
  .pago-item, .pago-garantia { display: none; }
  .pago-resumen > p { display: none; }
  .pago-resumen { padding: 24px 20px; }
  .pago-totals .row:not(.total) { display: none; }
  .pago-totals .row.total { border-top: none; padding-top: 0; }
  .pago-resumen, .pago-form { padding: 40px 28px; }
  .preventa-card { padding: 44px 26px; }
  .price-main { font-size: 2.5rem; }
  .mentoras-quote { padding: 40px 24px; }
  .mentoras-quote::before { font-size: 5rem; top: -10px; }
  .gracias-card { padding: 48px 28px; }
  .no-es { padding: 40px 26px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .btn { padding: 15px 30px; font-size: .98rem; }
  .btn-lg { padding: 17px 36px; }
  .pago-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .nav .btn { display: none; }
  /* Espacio para sticky CTA */
  body.has-sticky-cta { padding-bottom: 80px; }
  /* Socials: no wrapping en mobile */
  .mentora-socials { flex-wrap: nowrap; gap: 12px; }
  .mentora-socials span { font-size: .82rem; }
  /* Botones IG en columna */
  .mentoras-ctas-btns { flex-direction: column; align-items: center; }
  .mentora-ig-btn { width: 100%; max-width: 320px; justify-content: center; }
}
/* Sticky CTA solo en mobile/tablet */
@media (max-width: 900px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 82px; }
}

/* ==================== OPTIMIZACIONES — CLASES UTILITARIAS ==================== */
/* Nav CTA button */
.nav-cta { padding: 12px 26px; font-size: .95rem; }

/* Karol photo position */


/* Mentoras bottom CTA */
.mentoras-cta-wrap { text-align: center; margin-top: 50px; }

/* Propuesta section intro */
.propuesta-intro { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2.5rem; }

/* Dirigido section */
.bg-card { background: var(--bg-card); }
.text-center { text-align: center; }
.dirigido-desc { text-align: center; max-width: 720px; margin: 20px auto 0; }

/* Masterclass date */
.masterclass-date { color: var(--text-muted); font-size: .88rem; }

/* Full-width button */
.btn-full { width: 100%; }

/* No-es section body text */
.no-es-text { color: rgba(255,255,255,0.88); max-width: 540px; margin: 0 auto; }
.no-es-text--mt { margin-top: 24px; }

/* Final section kicker */
.final-kicker {
  display: inline-block;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .8rem;
}

/* picture element — heredar estilos del img contenedor */
picture { display: contents; }

/* pago.html — clases utilitarias */
.nav-back { color: var(--text-muted); font-size: .9rem; }
.resumen-kicker {
  display: inline-block;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.resumen-sub { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.pago-item--last { border-bottom: none; margin-bottom: 0; }
.price-strike { text-decoration: line-through; opacity: .6; }
.price-discount { color: var(--accent-warm); }
.price-usd-note { color: rgba(255,255,255,0.65); font-size: .85rem; margin-top: 6px; text-align: right; }
