/* ============================================================
   METODO-COB-BF — Black Friday LP — Dr. Juan Camilo Arango
   ============================================================ */

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

:root {
  --yellow: #FEDE00;
  --black:  #000000;
  --navy:   #0B0A2A;
  --red:    #FF5757;
  --red-d:  #B00808;
  --cta:    #AA0707;
  --white:  #F4F4F4;
  --font:   'Montserrat', sans-serif;
  --mw:     1100px;
  --r:      10px;
  --t:      0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }

/* ── WRAPPERS ───────────────────────────────────────────── */
.wrap    { max-width: var(--mw); margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 860px;     margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: filter var(--t), transform var(--t), box-shadow var(--t);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-yellow {
  background: var(--yellow);
  color: #000;
}
.btn-yellow:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(254,222,0,0.5);
}
.btn-red {
  background: var(--cta);
  color: #fff;
}
.btn-red:hover {
  background: #c0221a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(170,7,7,0.45);
}
.btn-lg  { font-size: 1.25rem; padding: 20px 48px; }
.btn-md  { font-size: 1.1rem;  padding: 15px 36px; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(254,222,0,0.6); }
  50%      { box-shadow: 0 0 0 14px rgba(254,222,0,0); }
}
.btn-pulse.btn-red { animation: pulse-red 2s infinite; }
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(170,7,7,0.55); }
  50%      { box-shadow: 0 0 0 12px rgba(170,7,7,0); }
}

/* ── FADE-UP ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── ICON LIST ──────────────────────────────────────────── */
.icon-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.ico       { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.ico-chk   { color: var(--yellow); }
.ico-x     { color: var(--red); }

/* ══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════ */
.announce-bar {
  background: var(--yellow);
  padding: 12px 24px;
  text-align: center;
}
.announce-bar p {
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: url('../img/hero-bg.webp') center / cover no-repeat;
  padding: 60px 0 50px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  max-width: 860px;
  line-height: 1.25;
  text-transform: uppercase;
}
.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  max-width: 720px;
  line-height: 1.6;
}
.hero-offer { max-width: 520px; margin: 0 auto; }
.price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0,0,0,0.6);
  border: 2px solid var(--yellow);
  border-radius: var(--r);
  padding: 20px 40px;
  max-width: 520px;
  width: 100%;
}
.price-block .valor {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  text-decoration: line-through;
  font-weight: 500;
}
.price-block .precio-bf {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.price-block .descuento {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.04em;
}
.hero-includes {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  max-width: 720px;
  line-height: 1.6;
  background: rgba(0,0,0,0.5);
  border-radius: var(--r);
  padding: 14px 24px;
}
.hero-scroll {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-top: -8px;
}

/* ══════════════════════════════════════════════════════════
   QUIÉN SOY
══════════════════════════════════════════════════════════ */
.quien-soy {
  position: relative;
  background: url('../img/quiensoy-bg.webp') center / cover no-repeat;
  padding: 60px 0;
}
.quien-soy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.qs-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}
.qs-photo { width: 380px; flex-shrink: 0; border-radius: var(--r); overflow: hidden; }
.qs-text { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.qs-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
}
.qs-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.8;
}
.qs-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   PARA QUIÉN ES
══════════════════════════════════════════════════════════ */
.para-quien {
  background: #fff;
  padding: 60px 0;
}
.para-quien h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.pq-card {
  background: var(--navy);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.pq-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
}
.pq-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 10px 0;
}
.bf-cta-bar {
  background: var(--black);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.bf-cta-bar h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
}
.bf-cta-bar p {
  font-size: 1.1rem;
  color: #fff;
}
/* Módulos dentro de para-quien */
.modulos-block {
  margin-top: 48px;
  background: var(--black);
  border-radius: var(--r);
  padding: 32px;
}
.modulos-block h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.modulos-block h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
}
.modulos-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.modulos-list li {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.modulos-list li::before { content: '✅'; flex-shrink: 0; }
.modulos-block .mas {
  font-size: 1.1rem;
  color: var(--yellow);
  font-weight: 700;
  margin-top: 16px;
}
.modulos-block .sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   BONOS
══════════════════════════════════════════════════════════ */
.bonos {
  background: var(--black);
  padding: 60px 0;
}
.bonos-header {
  text-align: center;
  margin-bottom: 40px;
}
.bonos-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
}
.bonos-header p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin-top: 8px;
}
.bonos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bonos-grid img {
  border-radius: var(--r);
  transition: transform var(--t), box-shadow var(--t);
}
.bonos-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(254,222,0,0.2);
}
.bono-5 { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   OFERTA
══════════════════════════════════════════════════════════ */
.oferta {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.oferta-img { max-width: 680px; margin: 0 auto 36px; }

/* ══════════════════════════════════════════════════════════
   OBJECIONES
══════════════════════════════════════════════════════════ */
.objeciones {
  background: var(--black);
  padding: 60px 0;
}
.objeciones h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  text-align: center;
  margin-bottom: 36px;
}
.obj-block {
  border-left: 4px solid var(--yellow);
  padding: 20px 24px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 0 var(--r) var(--r) 0;
}
.obj-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.obj-block p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  white-space: pre-line;
}
.obj-cta { text-align: center; margin-top: 36px; }

/* ══════════════════════════════════════════════════════════
   ÚLTIMA LLAMADA
══════════════════════════════════════════════════════════ */
.ultima-llamada {
  position: relative;
  background: url('../img/ultima-bg.webp') center / cover no-repeat;
  padding: 60px 0;
}
.ultima-llamada::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.ul-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.ul-text { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.ul-text h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
}
.ul-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}
.ul-text .no-habra {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: -8px;
}
.ul-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ul-text ul li {
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ul-text ul li::before { content: '❌'; flex-shrink: 0; }
.ul-img { width: 360px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   GARANTÍA
══════════════════════════════════════════════════════════ */
.garantia {
  background: var(--black);
  padding: 60px 0;
  text-align: center;
}
.garantia h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.garantia-img { max-width: 460px; margin: 0 auto 32px; }
.garantia p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 12px;
  line-height: 1.7;
}
.garantia p b { font-weight: 700; }
.garantia h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════
   URGENCIA FINAL
══════════════════════════════════════════════════════════ */
.urgencia-final {
  background: var(--yellow);
  padding: 50px 0;
  text-align: center;
}
.urgencia-final h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-d);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.urgencia-final p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.wsp-btn {
  max-width: 260px;
  margin: 24px auto 0;
  cursor: pointer;
}
.wsp-btn img { border-radius: 50px; transition: transform var(--t), box-shadow var(--t); }
.wsp-btn img:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 24px;
  text-align: center;
}
.footer-dr { width: 80px; margin: 0 auto 16px; border-radius: 50%; }
.footer p { font-size: 0.85rem; color: #fff; margin-bottom: 8px; }
.footer .disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── FLOATING CTA (mobile) ──────────────────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--black);
  border-top: 2px solid var(--yellow);
  padding: 10px 16px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.float-cta.visible { transform: translateY(0); }
.float-cta a {
  display: block;
  background: var(--yellow);
  color: #000;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 7px;
  text-transform: uppercase;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero h1    { font-size: 1.4rem; }
  .hero h2    { font-size: 1.1rem; }
  .price-block .precio-bf { font-size: 2rem; }
  .btn-lg     { font-size: 1rem; padding: 16px 20px; width: 100%; }
  .btn-md     { font-size: 0.95rem; padding: 14px 20px; width: 100%; }

  .qs-inner   { flex-direction: column; }
  .qs-photo   { width: 100%; max-width: 320px; margin: 0 auto; }

  .pq-grid    { grid-template-columns: 1fr; }
  .modulos-list { grid-template-columns: 1fr; }

  .bonos-grid { grid-template-columns: 1fr; }
  .bono-5     { grid-column: auto; }

  .ul-inner   { flex-direction: column; }
  .ul-img     { width: 80%; margin: 0 auto; }
  .ul-text h2 { font-size: 1.5rem; }

  .float-cta  { display: block; }
  body        { padding-bottom: 70px; }
}
