/* ===========================================================
   China en Primera Mano? ? Landing Page VSL (Meta Ads)
   Sistema Visual Mingta Group Latam
   =========================================================== */

:root {
  --bg: #140D0A;
  --bg-2: #1C120D;
  --panel: #22150F;
  --panel-2: #2A1A12;
  --cream: #F4EDE2;
  --cream-2: #E7DCCC;
  --dim: #B7A696;
  --dim-2: #8E7E70;
  --orange: #E2652B;
  --orange-bright: #F58037;
  --orange-soft: #F0A06A;
  --line: rgba(244, 237, 226, 0.12);
  --line-2: rgba(244, 237, 226, 0.07);
  --ink: #1A0E07;

  --serif: 'Newsreader', Georgia, serif;
  --sans: Poppins, -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1100px;
  --pad: clamp(18px, 4vw, 48px);
  --sec: clamp(60px, 8vw, 120px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

::selection { background: var(--orange); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); position: relative; }
.divider { height: 1px; background: var(--line-2); max-width: var(--maxw); margin-inline: auto; }
.text-center { text-align: center; }

.announcement-bar {
  background: var(--orange);
  color: #FFF;
  font-size: 0.85rem;
  padding: 8px 16px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseDot 1.8s infinite;
  flex: none;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 13, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-2);
  padding-block: 14px;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .logo img { height: 34px; width: auto; }
.nav-badge .badge-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-soft);
  border: 1px solid rgba(226, 101, 43, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(226, 101, 43, 0.06);
  font-weight: 600;
}
@media (max-width: 580px) {
  .nav-badge { display: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1.5px; background: var(--orange); flex: none;
}
.eyebrow.center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
h1 em, h2 em { color: var(--orange); font-style: italic; }
.tm { font-size: 0.45em; vertical-align: super; color: var(--orange); font-style: normal; font-family: var(--sans); font-weight: 600; }

.body { color: var(--dim); font-size: 1.05rem; line-height: 1.65; }
.body.lg { font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: var(--cream-2); line-height: 1.6; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.3, 1);
  line-height: 1;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 10px 32px -10px rgba(226, 101, 43, 0.75);
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(226, 101, 43, 0.9);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.88rem;
  background: rgba(226, 101, 43, 0.12);
  color: var(--cream);
  border: 1px solid rgba(226, 101, 43, 0.4);
}
.btn-nav:hover {
  background: var(--orange);
  color: var(--ink);
}

.btn-large {
  padding: 20px 42px;
  font-size: 1.15rem;
}

.vsl-hero {
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 7vw, 90px);
  background: radial-gradient(circle at 50% 20%, rgba(226, 101, 43, 0.14) 0%, transparent 65%);
}
.vsl-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}
.vsl-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  margin-bottom: 16px;
}
.vsl-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--cream-2);
  font-weight: 300;
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto;
}

.vsl-player-container {
  position: relative;
  max-width: 920px;
  margin: 0 auto 36px;
}
.vsl-player-glow {
  position: absolute;
  inset: -12px;
  background: radial-gradient(ellipse at center, rgba(226, 101, 43, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.vsl-player-frame {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(244, 237, 226, 0.18);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(226, 101, 43, 0.25);
  background: #000;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl-player-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--dim);
  margin-top: 14px;
}
.vsl-player-caption .sound-icon { font-size: 1.1rem; vertical-align: middle; }

.vsl-cta-box {
  text-align: center;
  margin-bottom: 40px;
}
.btn-hero-cta {
  width: 100%;
  max-width: 580px;
  padding: 22px 28px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.cta-microcopy {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--dim-2);
}

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-2);
  background: rgba(244, 237, 226, 0.03);
}
.chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none;
}

.section-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(160, 80, 30, 0.15) 0%, transparent 70%),
              linear-gradient(180deg, #1C120D 0%, #140D0A 100%);
}

.vsl-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.matrix-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(34, 21, 15, 0.6);
  position: relative;
}
.matrix-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.tag-pain { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.25); }
.tag-solution { background: rgba(34, 197, 94, 0.12); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.25); }

.matrix-card ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.matrix-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.02rem; color: var(--cream-2); }
.matrix-card .x { color: #f87171; font-weight: bold; flex: none; }
.matrix-card .check { color: #4ade80; font-weight: bold; flex: none; }

.section-light { background: #1A110B; }
.method-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.method-mini-item {
  background: rgba(244, 237, 226, 0.025);
  border: 1px solid var(--line);
  padding: 28px 24px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.method-mini-item:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 101, 43, 0.4);
}
.m-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.method-mini-item h4 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.method-mini-item p {
  font-size: 0.95rem;
  color: var(--dim);
  line-height: 1.5;
}

.faq-accordion {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(226, 101, 43, 0.4); }
.faq-question {
  padding: 20px 24px;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon { color: var(--orange); font-size: 1.4rem; font-weight: 300; transition: transform 0.25s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.section-cta-final {
  padding-block: clamp(60px, 10vw, 120px);
  background-image: url('https://res.cloudinary.com/dyqwdjebj/image/upload/v1784655190/Predio_Canton_aerea_p8xv3b.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.section-cta-final::before {
  content: none;
}
.section-cta-final .wrap {
  position: relative;
  z-index: 1;
}
.cta-banner {
  background: rgba(14, 9, 7, 0.70);
  border: 1px solid rgba(226, 101, 43, 0.35);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 70px) var(--pad);
  text-align: center;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.9), 0 0 50px rgba(226, 101, 43, 0.15);
}
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }

/* Section headings matched to hero/closing scale */
.shead h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 4px; }
.shead .body.lg,
.shead > p { font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-family: var(--serif); font-weight: 300; line-height: 1.4; color: var(--cream-2); }


.footer {
  border-top: 1px solid var(--line-2);
  padding-block: 36px;
  background: #0E0907;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo { height: 32px; width: auto; margin-bottom: 6px; }
.footer-tagline { font-size: 0.85rem; color: var(--dim-2); }
.footer-copy { font-size: 0.85rem; color: var(--dim-2); }

.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(20, 13, 10, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(226, 101, 43, 0.3);
  padding: 12px 18px;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .sticky-mobile-bar { display: block; }
  .btn-sticky {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .sticky-text { display: flex; align-items: center; gap: 8px; }
  .sticky-label { font-size: 0.82rem; font-weight: 600; color: var(--cream-2); }
}

/* ---------- OBJECTIONS SECTION ---------- */
.section-objections {
  background: radial-gradient(ellipse at 50% 0%, rgba(226, 101, 43, 0.1) 0%, transparent 65%),
              linear-gradient(180deg, #1C120D 0%, #140D0A 100%);
}

.objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 12px;
}

.objection-answer .hl {
  color: var(--orange);
  font-weight: 700;
}


.objection-card {
  background: rgba(34, 21, 15, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 26px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.objection-card:hover {
  border-color: rgba(226, 101, 43, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.5);
}

.objection-quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--cream);
  font-style: italic;
  line-height: 1.25;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin-left: -4px;
}

.objection-answer {
  color: var(--dim);
  font-size: 0.97rem;
  line-height: 1.62;
}

.objections-closing {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.objections-closing > p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--cream-2);
  font-style: italic;
  max-width: 52ch;
  line-height: 1.4;
}

/* ---------- FAQ SECTION (updated) ---------- */
.section-faq {
  background: #1A110B;
}

.faq-two-col {
  max-width: 100%;
  columns: 2;
  column-gap: 16px;
  margin-top: 48px;
}
.faq-two-col .faq-item {
  break-inside: avoid;
  margin-bottom: 14px;
  display: block;
}
@media (max-width: 700px) {
  .faq-two-col {
    columns: 1;
  }
}

.faq-cta-block {
  margin-top: 52px;
  text-align: center;
}

/* ---------- MOBILE OVERFLOW FIXES ---------- */
@media (max-width: 480px) {
  .vsl-title { font-size: 2.2rem; line-height: 1.1; }
  .vsl-subtitle { font-size: 1.05rem; }
  .chips { gap: 8px; }
  .chip { font-size: 0.68rem; padding: 8px 13px; }
  .btn-large { padding: 17px 22px; font-size: 1rem; white-space: normal; text-align: center; }
  .btn-hero-cta { font-size: 0.82rem; padding: 16px 14px; letter-spacing: 0.01em; }
  .btn-nav { display: none; }
  .matrix-card { padding: 22px 18px; }
  .vsl-matrix { grid-template-columns: 1fr; }
  .objections-grid { grid-template-columns: 1fr; }
  .objection-card { padding: 20px 18px; }
  .cta-banner { padding: 32px 18px; border-radius: 18px; }
  .cta-banner h2 { font-size: 1.7rem; }
  .objections-closing > p { font-size: 1.1rem; }
  .shead h2 { font-size: 1.7rem; }
  .shead .body.lg, .shead > p { font-size: 1.05rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- VSL THUMBNAIL PLAYER ---------- */
.vsl-thumb-wrap {
  position: absolute;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.4s ease;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsl-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.3s;
  display: block;
}
.vsl-thumb-wrap:hover .vsl-thumb-img { opacity: 0.72; }
.vsl-play-btn {
  position: relative;
  z-index: 2;
  width: clamp(64px, 10vw, 90px);
  height: clamp(64px, 10vw, 90px);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1), filter 0.25s;
  filter: drop-shadow(0 8px 24px rgba(226, 101, 43, 0.7));
}
.vsl-thumb-wrap:hover .vsl-play-btn {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 32px rgba(226, 101, 43, 0.95));
}
.vsl-thumb-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,13,10,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 101, 43, 0.4);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}

/* ---------- CREDENTIALS STRIP ---------- */
.section-credentials {
  background: #0B0705;
  border-top: 1px solid var(--line-2);
  padding-block: clamp(32px, 4.5vw, 56px);
}
.credentials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 760px) {
  .credentials-inner { grid-template-columns: 1fr; gap: 28px; }
}

.cred-title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--cream);
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 10px;
}
.cred-title em {
  color: var(--orange);
  font-style: italic;
}
.cred-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-2);
  font-weight: 500;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.cred-services {
  font-size: 0.82rem;
  color: var(--dim);
  font-weight: 500;
  line-height: 1.6;
}

.cred-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.cred-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cred-num {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--orange);
  font-style: italic;
  line-height: 1.1;
}
.cred-desc {
  font-size: 0.78rem;
  color: var(--dim-2);
  line-height: 1.4;
}

/* ---------- HERO EN FONDO CLARO ---------- */
.vsl-hero {
  background: radial-gradient(circle at 50% 15%, rgba(226, 101, 43, 0.12) 0%, transparent 60%),
              linear-gradient(180deg, #FBF7F1 0%, #F2EADF 100%);
  color: var(--ink);
  border-bottom: 1px solid rgba(26, 14, 7, 0.08);
}
.vsl-hero .vsl-title { color: #1A0E07; }
.vsl-hero .vsl-subtitle { color: #4A3A2E; }
.vsl-hero .vsl-player-caption,
.vsl-hero .cta-microcopy { color: #6B5949; }
.vsl-hero .vsl-player-frame {
  border-color: rgba(26, 14, 7, 0.12);
  box-shadow: 0 25px 60px -18px rgba(26, 14, 7, 0.35), 0 0 30px rgba(226, 101, 43, 0.18);
}
.vsl-hero .vsl-player-glow {
  background: radial-gradient(ellipse at center, rgba(226, 101, 43, 0.28) 0%, transparent 70%);
}
.vsl-hero .chip {
  color: #3A2C22;
  border-color: rgba(26, 14, 7, 0.14);
  background: rgba(26, 14, 7, 0.03);
}

.vsl-subtitle .hl-em {
  color: var(--orange);
  font-style: italic;
}

/* ---------- OBJECIONES EN FONDO CLARO ---------- */
.section-objections {
  background: radial-gradient(ellipse at 50% 0%, rgba(226, 101, 43, 0.1) 0%, transparent 65%),
              linear-gradient(180deg, #FBF7F1 0%, #F2EADF 100%);
  color: var(--ink);
}
.section-objections h2 { color: #1A0E07; }
.section-objections .objection-card {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(26, 14, 7, 0.12);
  box-shadow: 0 8px 24px -16px rgba(26, 14, 7, 0.4);
}
.section-objections .objection-card:hover {
  border-color: rgba(226, 101, 43, 0.45);
  box-shadow: 0 14px 34px -14px rgba(26, 14, 7, 0.3);
}
.section-objections .objection-quote { color: #1A0E07; }
.section-objections .objection-answer { color: #55463A; }
.section-objections .objections-closing > p { color: #3A2C22; }

/* ---------- HERO: TEXTO GRIS ---------- */
.vsl-hero .vsl-title { color: rgba(0, 0, 0, 0.8); }
.vsl-hero .vsl-title em,
.vsl-hero .vsl-title .tm,
.vsl-hero .vsl-subtitle .hl-em { color: var(--orange); }
.vsl-hero .vsl-subtitle { color: rgba(0, 0, 0, 0.8); }

.vsl-prevideo-note {
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 640px;
  margin: 0 auto 18px;
  line-height: 1.5;
}
