/* =========================================================
   PLUNIX — production stylesheet
   Premium dark navy-graphite theme (final state from design
   iteration). Teal-deep accent, muted gold for taglines/emphasis.
   ========================================================= */

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

:root {
  /* Surfaces — deep navy-graphite, premium, never pure black */
  --plx-bg-base:      #0E141C;
  --plx-bg-surface:   #151C26;
  --plx-bg-surface-2: #1B2330;
  --plx-bg-inset:     #090D14;

  /* Text — warm-tinted white to reduce glare */
  --plx-fg-1: #ECEEF2;
  --plx-fg-2: #C9D0DB;
  --plx-fg-3: #8E97A6;
  --plx-fg-4: #6A7382;

  /* Hairlines */
  --plx-line-1: #232C39;
  --plx-line-2: #2E3848;

  /* Accent — teal-deep, pulled from the logo's "X" */
  --plx-blue-deep:  #0F3D46;
  --plx-blue-ocean: #2A7F8F;
  --plx-blue-steel: #1F5F6E; /* CTA */
  --plx-blue-light: #58C5D9; /* links / icons */

  /* Gold — taglines, eyebrows, RESULTADO emphasis only */
  --plx-gold: #C89A5B;

  /* Signaling */
  --plx-red-soft:   #E5867F;
  --plx-red-dim:    rgba(229, 134, 127, 0.10);
  --plx-green-soft: #6BD489;
  --plx-whatsapp:   #25D366;

  /* Type */
  --font-display: 'Sora', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-card:    0 1px 0 0 rgba(255,255,255,0.02) inset, 0 0 0 1px var(--plx-line-1);
  --shadow-raised:  0 14px 40px -18px rgba(0,0,0,0.7), 0 0 0 1px var(--plx-line-2);
  --shadow-button:  0 1px 0 0 rgba(255,255,255,0.08) inset, 0 10px 28px -12px rgba(15,61,70,0.7);
  --shadow-glow:    0 1px 0 0 rgba(255,255,255,0.10) inset, 0 0 36px -8px rgba(88,197,217,0.45), 0 10px 28px -12px rgba(15,61,70,0.7);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--plx-bg-base);
  color: var(--plx-fg-1);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 { margin: 0; color: var(--plx-fg-1); text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: var(--plx-blue-light); text-decoration: none; transition: opacity 120ms var(--ease-out); }
a:hover { opacity: 0.78; }
button { font-family: var(--font-display); cursor: pointer; }
ul { margin: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; }

.section { position: relative; padding: 68px 0; border-top: 1px solid var(--plx-line-1); }
.section:first-of-type { border-top: 0; }

.stack-center { display: flex; flex-direction: column; align-items: center; }
.center { text-align: center; }

.eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plx-gold);
}

.section-title {
  font-size: clamp(30px, 3.0vw, 44px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-top: 14px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--plx-fg-3);
  max-width: 640px;
  margin: 18px auto 0;
}

/* Scroll-reveal — content is visible by default; JS only adds the
   "pre" class to items starting off-screen, so nothing depends on JS. */
[data-anim] { opacity: 1; transform: none; transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
[data-anim].pre { opacity: 0; transform: translateY(14px); }
[data-anim].in { opacity: 1; transform: none; }

/* -------------------------------------------------------
   Atmosphere — fixed background layer
   ------------------------------------------------------- */
.atmosphere {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: var(--plx-bg-base);
}
.atmosphere__dots {
  position: absolute; inset: 0; opacity: 0.22;
  background-image: radial-gradient(circle at 2px 2px, #3A4555 0.8px, transparent 1px);
  background-size: 32px 32px;
}
.atmosphere__wash {
  position: absolute; border-radius: 50%; filter: blur(8px);
}
.atmosphere__wash--teal {
  right: -20vw; top: -15vh; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(42,127,143,0.18), transparent 62%);
}
.atmosphere__wash--navy {
  left: -22vw; top: 38vh; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(31,95,110,0.14), transparent 60%);
  filter: blur(6px);
}
.atmosphere__wash--gold {
  right: -15vw; top: 140vh; width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(200,154,91,0.08), transparent 62%);
}
.atmosphere__vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 18%, transparent 80%, rgba(0,0,0,0.3) 100%);
}

.page { position: relative; z-index: 1; }

/* -------------------------------------------------------
   Buttons
   ------------------------------------------------------- */
.btn {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 220ms var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.btn--md { padding: 13px 22px; font-size: 14px; }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--primary {
  background: var(--plx-blue-steel);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.btn--primary:hover { background: #2A7F8F; }
.btn--primary:active { background: #154B57; }
.btn--primary.btn--glow { box-shadow: var(--shadow-glow); }
.btn--ghost {
  background: transparent;
  color: var(--plx-fg-2);
  padding: 8px 4px;
  border: none;
}
.btn--ghost:hover { opacity: 0.78; }

/* -------------------------------------------------------
   Header
   ------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.header.is-scrolled {
  background: rgba(14,20,28,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--plx-line-1);
}
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; gap: 56px;
}
.header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.header__logo img { display: block; width: 204px; height: 45px; object-fit: contain; }
.header__nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.header__nav a { font-size: 14px; color: var(--plx-fg-2); font-weight: 400; white-space: nowrap; }
.header__dot { color: var(--plx-line-2); opacity: 0.6; }

@media (max-width: 900px) {
  .header__nav { display: none; }
}

@media (max-width: 560px) {
  .header__row { padding: 12px 20px; gap: 12px; }
  .header__logo img { width: 150px; height: 33px; }
  .header__row .btn { font-size: 12px; padding: 10px 14px; white-space: normal; text-align: center; }
}

/* -------------------------------------------------------
   Hero
   ------------------------------------------------------- */
.hero { padding: 80px 0; position: relative; }
.hero__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.hero__brand { display: flex; flex-direction: column; align-items: center; gap: 28px; margin-bottom: 48px; }
.hero__logo { display: block; width: min(640px, 90vw); height: auto; object-fit: contain; }
.hero__tagline {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 11px 24px;
  border: 1px solid rgba(200,154,91,0.32);
  border-radius: 999px;
  background: rgba(200,154,91,0.06);
  backdrop-filter: blur(6px);
}
.hero__tagline-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--plx-gold);
  box-shadow: 0 0 14px 0 rgba(200,154,91,0.7);
}
.hero__tagline-text {
  font-size: 15px; font-weight: 600; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--plx-gold);
}
.hero h1 {
  font-size: clamp(40px, 5.0vw, 76px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  margin: 0 0 24px 0;
}
.hero h1 .accent { color: var(--plx-blue-light); }
.hero__subtitle {
  font-size: 19px; line-height: 1.6; color: var(--plx-fg-3);
  max-width: 720px; margin: 0 auto 40px;
}
.hero__actions { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------
   Pain section
   ------------------------------------------------------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.pain-card {
  background: var(--plx-bg-surface);
  border: 1px solid var(--plx-line-1);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.03) inset;
}
.pain-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(88,166,255,0.10);
  display: grid; place-items: center;
}
.pain-card__text { font-size: 15px; line-height: 1.6; color: var(--plx-fg-2); }

.pain-quote {
  margin: 64px auto 0; padding: 40px 32px; max-width: 880px;
  text-align: center;
  border-top: 1px solid var(--plx-line-1); border-bottom: 1px solid var(--plx-line-1);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500; font-style: italic;
  line-height: 1.35; color: var(--plx-gold);
  letter-spacing: -0.005em;
}

@media (max-width: 860px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------
   Compare table
   ------------------------------------------------------- */
.compare-table {
  margin-top: 56px; border: 1px solid var(--plx-line-1); border-radius: 16px; overflow: hidden;
  background: var(--plx-bg-surface);
  box-shadow: 0 12px 28px -14px rgba(15,22,32,0.10);
}
.compare-table__head { display: grid; grid-template-columns: 1fr 1fr; background: var(--plx-bg-surface-2); }
.compare-table__head-cell {
  padding: 20px 28px; display: flex; align-items: center; gap: 12px;
}
.compare-table__head-cell--before { border-right: 1px solid var(--plx-line-1); }
.compare-table__badge {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
}
.compare-table__badge--before { background: rgba(196,51,43,0.10); }
.compare-table__badge--after { background: rgba(34,112,176,0.12); }
.compare-table__head-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
}
.compare-table__head-label--before { color: var(--plx-fg-3); }
.compare-table__head-label--after { color: var(--plx-blue-light); }

.compare-table__row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--plx-line-1); }
.compare-table__cell { padding: 22px 28px; display: flex; gap: 14px; }
.compare-table__cell--before { border-right: 1px solid var(--plx-line-1); }
.compare-table__marker {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; margin-top: 2px;
}
.compare-table__marker--before {
  background: rgba(196,51,43,0.10); color: var(--plx-red-soft);
  font-size: 14px; font-weight: 700; line-height: 1;
}
.compare-table__marker--after { background: rgba(34,112,176,0.12); color: var(--plx-blue-light); }
.compare-table__cell-text { font-size: 15px; line-height: 1.6; color: var(--plx-fg-2); }

@media (max-width: 760px) {
  .compare-table__head, .compare-table__row { grid-template-columns: 1fr; }
  .compare-table__head-cell--before, .compare-table__cell--before {
    border-right: none; border-bottom: 1px solid var(--plx-line-1);
  }
}

/* -------------------------------------------------------
   Philosophy (pause block)
   ------------------------------------------------------- */
.philosophy { padding: 56px 0; }
.philosophy__inner { max-width: 880px; margin: 0 auto; }
.philosophy__text {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500; line-height: 1.4; letter-spacing: -0.01em;
  text-align: center;
}
.philosophy__text .accent { color: var(--plx-blue-light); }

/* -------------------------------------------------------
   Solution
   ------------------------------------------------------- */
.solution .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.solution__title { text-align: left; max-width: 540px; }
.solution__subtitle { margin-top: 18px; font-size: 17px; line-height: 1.6; color: var(--plx-fg-3); max-width: 520px; }
.solution__callout {
  margin-top: 24px; padding: 14px 18px;
  background: rgba(34,112,176,0.06);
  border: 1px solid rgba(34,112,176,0.18);
  border-radius: 10px;
  font-style: italic; font-size: 15px; color: var(--plx-fg-1);
  max-width: 520px;
}
.solution__features { list-style: none; padding: 0; margin: 28px 0 0 0; display: flex; flex-direction: column; gap: 12px; }
.solution__feature {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--plx-bg-surface); border: 1px solid var(--plx-line-1);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(15,22,32,0.03);
}
.solution__feature-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(34,112,176,0.12);
  display: grid; place-items: center;
}
.solution__feature-text { font-size: 15px; color: var(--plx-fg-1); font-weight: 500; }
.solution__mock { display: flex; justify-content: center; }

@media (max-width: 980px) {
  .solution .container { grid-template-columns: 1fr; gap: 48px; }
  .solution__title, .solution__subtitle, .solution__callout { max-width: none; }
}

/* -------------------------------------------------------
   How it works
   ------------------------------------------------------- */
.steps {
  margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--plx-line-1); border-radius: 16px; overflow: hidden;
  background: var(--plx-bg-surface);
  box-shadow: 0 12px 28px -14px rgba(15,22,32,0.10);
}
.step { padding: 36px 26px; position: relative; }
.step + .step { border-left: 1px solid var(--plx-line-1); }
.step__connector {
  position: absolute; right: -7px; top: 48px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--plx-bg-base);
  border: 1px solid var(--plx-line-2); z-index: 1;
  display: grid; place-items: center;
}
.step__connector-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--plx-blue-light); }
.step__n { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--plx-blue-light); letter-spacing: 0.08em; margin-bottom: 12px; }
.step__title { font-size: 20px; font-weight: 600; margin: 0 0 12px 0; }
.step__body { font-size: 14px; line-height: 1.6; color: var(--plx-fg-3); }

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-left: 1px solid var(--plx-line-1); }
  .step:nth-child(odd) { border-left: none; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--plx-line-1); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none !important; }
  .step:not(:first-child) { border-top: 1px solid var(--plx-line-1); }
}

/* -------------------------------------------------------
   Results
   ------------------------------------------------------- */
.results-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.result-card {
  background: var(--plx-bg-surface);
  border: 1px solid var(--plx-line-1);
  border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all 220ms var(--ease-out);
  box-shadow: 0 1px 2px rgba(15,22,32,0.03);
}
.result-card:hover {
  border-color: var(--plx-line-2);
  box-shadow: 0 12px 28px -14px rgba(15,22,32,0.18);
}
.result-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(34,112,176,0.10); border: 1px solid rgba(34,112,176,0.18);
  display: grid; place-items: center;
}
.result-card__title { font-size: 22px; font-weight: 600; }
.result-card__body { font-size: 15px; line-height: 1.6; color: var(--plx-fg-3); }
.result-card__result {
  margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--plx-line-1);
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--plx-gold);
}
.result-card__result-text { letter-spacing: 0.02em; text-transform: none; font-size: 14px; font-weight: 500; color: var(--plx-fg-2); }

@media (max-width: 760px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------
   For who
   ------------------------------------------------------- */
.for-who { padding: 88px 0; }
.for-who__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.for-who__text {
  margin-top: 28px;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500; line-height: 1.35; letter-spacing: -0.01em;
}
.for-who__text .accent { color: var(--plx-blue-light); font-weight: 600; }

/* -------------------------------------------------------
   Final CTA
   ------------------------------------------------------- */
.final-cta__card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--plx-bg-surface) 0%, var(--plx-bg-surface-2) 100%);
  border: 1px solid var(--plx-line-2);
  border-radius: 24px;
  padding: 76px 56px;
  text-align: center;
  box-shadow: 0 20px 40px -20px rgba(15,22,32,0.18);
}
.final-cta__wash { position: absolute; border-radius: 50%; }
.final-cta__wash--a { left: -15%; top: -50%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(34,112,176,0.10), transparent 55%); }
.final-cta__wash--b { right: -10%; bottom: -40%; width: 50%; height: 180%; background: radial-gradient(circle, rgba(88,166,255,0.12), transparent 55%); }
.final-cta__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.final-cta__eyebrow { font-size: 22px; }
.final-cta__title {
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
  max-width: 880px;
}
.final-cta__subtitle { font-size: 17px; line-height: 1.6; color: var(--plx-fg-3); max-width: 580px; }
.final-cta__actions { margin-top: 12px; }

@media (max-width: 700px) {
  .final-cta__card { padding: 56px 28px; }
}

/* -------------------------------------------------------
   FAQ
   ------------------------------------------------------- */
.faq .container { max-width: 920px; }
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--plx-line-1); }
.faq-item__trigger {
  width: 100%; background: transparent; border: none; text-align: left;
  padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  color: inherit;
}
.faq-item__question { font-weight: 500; font-size: 16px; color: var(--plx-fg-1); }
.faq-item__icon { flex-shrink: 0; transition: transform 220ms var(--ease-out); }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__panel {
  max-height: 0; overflow: hidden;
  transition: max-height 320ms var(--ease-out), opacity 220ms var(--ease-out);
  opacity: 0;
}
.faq-item.is-open .faq-item__panel { max-height: 280px; opacity: 1; }
.faq-item__answer { padding: 0 4px 24px 4px; font-size: 15px; line-height: 1.65; color: var(--plx-fg-3); max-width: 820px; }

/* -------------------------------------------------------
   Footer
   ------------------------------------------------------- */
.footer { border-top: 1px solid var(--plx-line-1); padding: 72px 0 40px 0; margin-top: 32px; position: relative; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
.footer__logo img { display: block; height: 42px; width: auto; }
.footer__tagline {
  margin-top: 22px; color: var(--plx-gold); font-size: 14px;
  font-weight: 500; letter-spacing: 0.06em; font-style: italic;
}
.footer__heading {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--plx-fg-4); margin-bottom: 18px;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer__list--nav { gap: 12px; }
.footer__list-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--plx-fg-2); }
.footer__list a { font-size: 14px; color: var(--plx-fg-2); }

.footer__legal {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--plx-line-1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--plx-fg-4);
}
.footer__legal-links { display: flex; gap: 18px; }
.footer__legal-links a { color: var(--plx-fg-4); }

.footer__whatsapp {
  position: fixed; right: 28px; bottom: 28px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: var(--plx-whatsapp);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.5);
  border: 2px solid #fff;
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* -------------------------------------------------------
   WhatsApp mock
   ------------------------------------------------------- */
@keyframes plx-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes plx-dot {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.wa-mock {
  width: 300px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  animation: plx-float 5s ease-in-out infinite;
}
.wa-mock__shell {
  background: #0B0E12;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 0 0 1.5px #2A2E36, 0 0 0 8px #14181E, 0 0 0 9px #2A2E36;
  position: relative;
}
.wa-mock__notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; background: #000; border-radius: 20px; z-index: 2;
}
.wa-mock__screen { border-radius: 30px; overflow: hidden; background: #ECE5DD; min-height: 540px; position: relative; }
.wa-mock__statusbar {
  background: #075E54; padding: 40px 14px 12px 14px;
  display: flex; align-items: center; gap: 10px; color: #fff;
}
.wa-mock__back { font-size: 16px; color: #fff; line-height: 1; }
.wa-mock__avatar { width: 32px; height: 32px; border-radius: 50%; background: #25D366; display: grid; place-items: center; }
.wa-mock__who { flex: 1; }
.wa-mock__name { font-size: 13px; font-weight: 600; }
.wa-mock__status { font-size: 11px; opacity: 0.85; }
.wa-mock__glyph { font-size: 16px; }
.wa-mock__glyph--menu { margin-left: 8px; }

.wa-mock__chat {
  padding: 14px 10px 80px 10px;
  background: #ECE5DD;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 8px 8px;
  min-height: 460px;
}
.wa-mock__scenario {
  display: inline-block;
  background: rgba(213, 200, 167, 0.7);
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  color: #4A3F2A; padding: 4px 10px; border-radius: 4px;
  margin-bottom: 12px; margin-left: 50%; transform: translateX(-50%);
}
.wa-mock__bubble-row { display: flex; margin-bottom: 6px; }
.wa-mock__bubble-row--out { justify-content: flex-end; }
.wa-mock__bubble-row--in { justify-content: flex-start; }
.wa-mock__bubble {
  max-width: 78%;
  background: #FFFFFF;
  color: #0F1820;
  padding: 7px 10px 18px 10px;
  border-radius: 8px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  font-size: 13.5px; line-height: 1.35;
  position: relative;
  white-space: pre-line;
}
.wa-mock__bubble-row--out .wa-mock__bubble { background: #DCF8C6; }
.wa-mock__quick-replies {
  display: flex; flex-direction: column; gap: 6px; margin-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06); padding-top: 8px;
}
.wa-mock__quick-reply { color: #1A5C94; font-size: 13.5px; font-weight: 500; text-align: center; padding: 4px 0; }
.wa-mock__meta {
  position: absolute; right: 8px; bottom: 3px;
  font-size: 10px; color: rgba(0,0,0,0.45);
  display: flex; align-items: center; gap: 3px;
}
.wa-mock__ticks { color: #34B7F1; font-size: 11px; line-height: 1; }
.wa-mock__typing { display: flex; }
.wa-mock__typing--out { justify-content: flex-end; }
.wa-mock__typing--in { justify-content: flex-start; }
.wa-mock__typing-bubble { background: #FFF; border-radius: 8px; padding: 8px 12px; display: flex; gap: 3px; }
.wa-mock__typing-dot { width: 5px; height: 5px; border-radius: 50%; background: #999; animation: plx-dot 1.2s infinite ease-in-out; }

.wa-mock__input-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #F0F0F0; padding: 10px 12px;
  display: flex; gap: 8px; align-items: center;
}
.wa-mock__input { flex: 1; background: #fff; border-radius: 20px; padding: 8px 14px; font-size: 12px; color: #999; }
.wa-mock__send { width: 32px; height: 32px; border-radius: 50%; background: #25D366; display: grid; place-items: center; color: #fff; font-size: 14px; }

/* -------------------------------------------------------
   Legal pages (Política de Privacidade, Termos de Uso)
   Additive only — does not alter any landing-page rule above.
   ------------------------------------------------------- */
.legal-main { padding: 56px 0 96px; }
.legal-container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--plx-fg-3); margin-bottom: 40px;
}
.legal-back:hover { opacity: 0.78; }

.legal-header-block h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 14px;
}
.legal-updated { font-size: 14px; color: var(--plx-fg-3); margin-bottom: 40px; }

.legal-intro p { font-size: 16px; line-height: 1.7; color: var(--plx-fg-2); margin: 0 0 20px 0; }
.legal-intro p:last-child { margin-bottom: 0; }

.legal-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--plx-line-1); }
.legal-section h2 { font-size: 22px; font-weight: 600; color: var(--plx-fg-1); margin: 0 0 16px 0; }
.legal-section p { font-size: 16px; line-height: 1.7; color: var(--plx-fg-2); margin: 0 0 16px 0; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section p strong { color: var(--plx-fg-1); font-weight: 600; }

.legal-list { list-style: none; padding: 0; margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.legal-list:last-child { margin-bottom: 0; }
.legal-list li { font-size: 15px; line-height: 1.6; color: var(--plx-fg-2); padding-left: 20px; position: relative; }
.legal-list li::before { content: '•'; position: absolute; left: 0; color: var(--plx-blue-light); }

.legal-meta p { margin: 0 0 6px 0; }
.legal-meta p:last-child { margin-bottom: 0; }

.legal-contact p { margin: 0 0 6px 0; }
.legal-contact p:last-child { margin-bottom: 0; }

.legal-footnote {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--plx-line-1);
  font-size: 13px; color: var(--plx-fg-4); line-height: 1.7;
}
