/* ============================================================
   METODO-COB — INCRUSTACIONES LP — Dr. Juan Camilo Arango
   ============================================================ */

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

:root {
  --black:    #000000;
  --dark:     #0B0A2A;
  --lime:     #CCFF00;
  --red:      #FF0000;
  --cta:      #AA0707;
  --white:    #FFFFFF;
  --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: 700;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.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-lime {
  background: var(--lime);
  color: #000;
}
.btn-lime:hover {
  background: #b8e600;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,255,0,0.35);
}
.btn-lg  { font-size: 1.4rem; padding: 18px 48px; }
.btn-md  { font-size: 1.2rem; padding: 14px 36px; }
.btn span { display: block; font-size: 0.85em; font-weight: 600; opacity: 0.9; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  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: 14px; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}
.icon-list li .ico { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.ico-x    { color: var(--red); }
.ico-chk  { color: var(--lime); }

/* ── FRANJA SEPARATOR ───────────────────────────────────── */
.franja img { width: 100%; display: block; }

/* ══════════════════════════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: url('../img/hero-bg.webp') center / cover no-repeat;
  padding: 60px 0 50px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1.2;
  max-width: 860px;
  text-transform: uppercase;
}
.hero h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  max-width: 740px;
  line-height: 1.6;
}
.hero-product { max-width: 420px; margin: 0 auto; }
.hero h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  max-width: 700px;
}
.hero .highlight { color: var(--lime); }

/* ══════════════════════════════════════════════════════════
   SECTION 2 — PROBLEMA
══════════════════════════════════════════════════════════ */
.problema {
  background: var(--black);
  padding: 60px 0;
}
.problema-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.problema-text { flex: 1; }
.problema-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.3;
}
.problema-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 16px;
}
.problema-img {
  width: 40%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SECTION 3 — OFERTA
══════════════════════════════════════════════════════════ */
.oferta {
  background: #fff;
  padding: 50px 0;
  text-align: center;
}
.oferta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
}
.oferta-img { max-width: 580px; margin: 0 auto 36px; }

/* ══════════════════════════════════════════════════════════
   SECTION 4 — POR QUÉ NECESITAS
══════════════════════════════════════════════════════════ */
.necesitas {
  background: var(--black);
  padding: 60px 0;
}
.necesitas-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.necesitas h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}
.nec-col {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r);
  padding: 28px 24px;
}
.nec-col h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 20px;
  text-align: center;
}
.nec-cta { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════════════════════════
   SECTION 5 — QUÉ INCLUYE
══════════════════════════════════════════════════════════ */
.que-incluye {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.que-incluye h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}
.que-incluye .sub {
  font-size: 1.375rem;
  font-weight: 400;
  color: #000;
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.que-incluye .sub b { font-weight: 700; color: var(--cta); }
.qi-label {
  font-size: 2.1875rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 36px;
}
.mockups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.mockup-card {
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.mockup-card img { width: 100%; }

/* ══════════════════════════════════════════════════════════
   SECTION 6 — GARANTÍA
══════════════════════════════════════════════════════════ */
.garantia {
  background: var(--black);
  padding: 60px 0;
  text-align: center;
}
.garantia h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 32px;
}
.garantia-img { max-width: 440px; margin: 0 auto 32px; }
.garantia p {
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.garantia p b { font-weight: 700; }
.wsp-btn { max-width: 260px; margin: 24px auto 0; cursor: pointer; }
.wsp-btn img { transition: transform var(--t), box-shadow var(--t); border-radius: 50px; }
.wsp-btn img:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ══════════════════════════════════════════════════════════
   SECTION 7 — URGENCIA
══════════════════════════════════════════════════════════ */
.urgencia {
  position: relative;
  background: url('../img/urgencia-bg.webp') center / cover no-repeat;
  padding: 60px 0;
}
.urgencia::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.urgencia-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.urgencia-text { flex: 1; }
.urgencia-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 12px;
}
.urgencia-text .precio-especial {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.urgencia-text .precio-tachado {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--red);
  text-decoration: line-through;
  margin-bottom: 24px;
}
.urgencia-text p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.6;
}
.urgencia-img {
  width: 38%;
  flex-shrink: 0;
}

/* ── 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(--lime);
  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(--cta);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 7px;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero h1  { font-size: 1.6rem; }
  .hero h2  { font-size: 1.1rem; }
  .hero h3  { font-size: 1.1rem; }
  .btn-lg   { font-size: 1.1rem; padding: 14px 24px; width: 100%; }
  .btn-md   { font-size: 1rem;   padding: 12px 20px; width: 100%; }

  .problema-inner  { flex-direction: column; }
  .problema-img    { width: 80%; margin: 0 auto; }

  .necesitas-inner { flex-direction: column; }
  .nec-col         { width: 100%; }

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

  .mockups-grid    { grid-template-columns: 1fr; }

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