@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');

:root {
  --ink: #1a1918;
  --ink-soft: #5c564f;
  --paper: #fbf7f0;
  --paper-card: #f7f2ea;
  --white: #ffffff;
  --coral: #e65947;
  --coral-soft: #f28b7e;
  --mustard: #d99a36;
  --blue: #4b6d8b;
  --sage: #78866b;
  --peach: #e8a298;
  --line: rgba(26, 25, 24, 0.1);
  --shadow-soft: 0 16px 45px rgba(40, 30, 20, 0.06);
  --shadow-hover: 0 24px 60px rgba(40, 30, 20, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* scroll-snap-type disabled to prevent scroll jumping on inner pages */
  overflow-y: auto;
  height: 100%;
}
html::-webkit-scrollbar { display: none; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

/* ---------------- HEADER (Estático arriba del todo) ---------------- */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  padding: 0 clamp(24px, 5vw, 75px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: transparent;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand-mark, .brand span, .site-header .brand-mark {
  font-family: 'Jua', sans-serif !important;
  font-weight: 400 !important;
  font-size: 32px !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  color: var(--coral) !important;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  font-size: 14px;
  font-weight: 450;
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--coral); }

/* ---------------- BOTÓN VOLVER ARRIBA ---------------- */
.back-to-top {
  position: fixed;
  z-index: 90;
  right: 28px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(251, 247, 240, 0.92);
  border: 1px solid rgba(26, 25, 24, 0.14);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
  cursor: pointer;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  background: var(--white);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------- GENERAL LAYOUT & TYPOGRAPHY ---------------- */
.screen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.content {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 96px));
  height: 100%;
  max-height: calc(100vh - 64px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cinematic .eyebrow,
.tactile .eyebrow,
.safety-dark .eyebrow,
.dual-benefits .eyebrow {
  margin-top: -50px;
}
.coral { color: var(--coral); }
.warm { color: #f29c6b; }
.sage { color: var(--sage); }
.coral-text { color: var(--coral); }
.mustard-text { color: var(--mustard); }
.blue-text { color: var(--blue); }
.centered { text-align: center; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(44px, 5.5vw, 75px); }
h2 { font-size: clamp(38px, 5.5vw, 75px); font-weight: 700; line-height: 1.08; }
h3 { font-size: 22px; letter-spacing: -2px; font-weight: 700; }
p { line-height: 1.5; color: var(--ink-soft); }

.lead { font-size: 19px; line-height: 1.48; color: var(--ink-soft); }
.body-large { font-size: 18px; line-height: 1.5; color: var(--ink-soft); }
.max-width-lead { max-width: 675px; margin-left: auto; margin-right: auto; }

/* ---------------- BUTTONS ---------------- */
.button {
  min-height: 48px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.button:hover { transform: translateY(-2px); }
.button-coral {
  color: white;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(230, 89, 71, 0.28);
}
.button-coral:hover { box-shadow: 0 16px 32px rgba(230, 89, 71, 0.38); }
.button-small { min-height: 38px; padding: 0 18px; font-size: 13px; }
.button-full { width: 100%; height: 52px; border-radius: 14px; font-size: 16px; }

.text-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 15px;
  font-weight: 650;
}
.coral-link { color: var(--coral); }

/* ---------------- 01. HERO (1.png - imagen1.jpg de Fondo Completo) ---------------- */
.hero { position: relative; background: var(--paper); }
.hero-cover { object-position: center bottom; }
.hero-layout-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  padding-top: 66px;
}
.hero-copy-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hero-copy-centered h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 5.5vw, 75px);
}
.hero-copy-centered .lead {
  max-width: 875px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.48;
}
.hero-highlight {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.centered-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.fineprint {
  color: #888078;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 16px;
}
.section-discrete-note {
  position: absolute;
  bottom: 64px;
  left: 0;
  right: 0;
  z-index: 4;
}

/* ---------------- SIN DEGRADADOS / VEILS DE FONDO ---------------- */
.veil, .veil-left-dark, .veil-left-light, .veil-closing-dark {
  display: none !important;
  background: none !important;
}

/* ---------------- 02. CINEMATIC DARK (2.png - imagen2.jpg de Fondo Completo) ---------------- */
.cinematic { position: relative; background: #181512; }
.light-copy { color: var(--white); }
.light-copy p { color: rgba(255,255,255,0.78); }
.cinematic-copy {
    max-width: 475px;
    margin-left: clamp(100px, 12vw, 220px);
    margin-right: auto;
    align-self: flex-start;
    text-align: left;
}
.cinematic-copy h2, .cinematic-copy p, .cinematic-copy .eyebrow {
  text-align: left;
}
.accent-note { margin-top: 32px; display: flex; gap: 16px; align-items: center; text-align: left; }
.accent-line-bar { width: 36px; height: 3px; background: var(--coral); }
.accent-note p { margin: 0; font-size: 16px; color: white; }

/* ---------------- 03. TACTILE & 3 STEPS (3.png - imagen3.jpg de Fondo Completo) ---------------- */
.tactile { position: relative; background: var(--paper); }
.tactile .content {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 96px));
  height: 100%;
  max-height: calc(100vh - 64px);
  margin: 0 auto;
  margin-left: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tactile-copy {
    max-width: 520px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    text-align: left;
}
.tactile-copy h2, .tactile-copy p, .tactile-copy .eyebrow {
  text-align: left;
}
.split-content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.steps-list { margin-top: 24px; display: grid; gap: 14px; max-width: 475px; }
.step-item {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(26, 25, 24, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.step-header { display: flex; align-items: center; margin-bottom: 2px; }
.step-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--coral); }
.step-item h3 { margin: 2px 0 4px; font-size: 17px; font-weight: 700; color: var(--ink); }
.step-item p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.step-divider-line { height: 1px; background: var(--line); margin-top: 20px; max-width: 475px; }
.closing-summary { margin-top: 16px; font-weight: 700; color: var(--ink); font-size: 15px; }

/* ---------------- 04. ACTIVITIES GRID (4.png) ---------------- */
.activities-section {
  position: relative;
  width: 100%;
  min-height: 1100px;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  background: var(--paper);
  margin-bottom: 100px;
}
.activities-section .content {
  position: relative;
  z-index: 3;
  width: min(1900px, calc(100% - 96px));
  height: 100%;
  max-height: calc(100vh - 64px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.activity-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.activity-photo-card {
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(26, 25, 24, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.activity-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.card-image-wrap { height: 400px; overflow: hidden; background: #eae3d9; }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card-pill {
    display: inline-block;
    padding: 12px 12px 12px 12px;
    border-radius: 58px;
    font-size: 10px;
    width: 250px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.coral-pill { background: rgba(230, 89, 71, 0.12); color: var(--coral); }
.mustard-pill { background: rgba(217, 154, 54, 0.12); color: var(--mustard); }
.blue-pill { background: rgba(75, 109, 139, 0.12); color: var(--blue); }
.sage-pill { background: rgba(120, 134, 107, 0.12); color: var(--sage); }
.peach-pill { background: rgba(232, 162, 152, 0.24); color: #c9574d; }

.activity-photo-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.activity-photo-card p { font-size: 13px; margin: 0; color: var(--ink-soft); line-height: 1.45; }
.section-footer-note { margin-top: 32px; font-weight: 650; color: var(--ink-soft); }

/* ---------------- 05. THREE PARTS OF SYSTEM (5.png) ---------------- */
.system-parts { position: relative; background: var(--paper); }
.system-parts .content {
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 60px;
}
.system-header-left {
  text-align: left;
  max-width: 820px;
  margin-left: 0;
  margin-top: 24px;
}
.system-header-left h2, .system-header-left p, .system-header-left .eyebrow {
  text-align: left;
}
.three-columns-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  margin-top: auto;
}
.text-column-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 0 12px;
}
.text-column-item .part-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 8px; }
.text-column-item h3 { font-size: 22px; margin-bottom: 12px; color: var(--ink); }
.text-column-item p { font-size: 14px; margin-bottom: 24px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.text-column-item .part-footer-label { font-size: 12px; font-weight: 700; color: var(--ink); border-top: 1px solid rgba(26, 25, 24, 0.12); padding-top: 16px; width: 100%; }

/* ---------------- 06. SECURITY & PRIVACY (6.png) ---------------- */
.safety-dark { position: relative; background: #141311; }
.safety-dark .content {
  width: min(1400px, calc(100% - 48px));
  margin-left: 200px;
}
.safety-left {
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  align-self: flex-start;
  text-align: left;
}
.safety-left h2, .safety-left p, .safety-left .eyebrow {
  text-align: left;
}
.privacy-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 16px;
}
.badge-item {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  font-weight: 600;
  color: white;
}
.safety-extra-copy { margin-top: 16px; }
.therapist-statement { font-size: 20px; font-weight: 700; margin-bottom: 6px; line-height: 1.25; }
.body-small { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.45; margin-bottom: 12px; }
.alert-box-item {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(230, 89, 71, 0.14);
  border: 1px solid rgba(230, 89, 71, 0.3);
  color: #f28b7e;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.alert-box-item strong { color: white; font-weight: 700; }
.safety-cta { margin-bottom: 14px; display: inline-flex; }
.safety-bottom-summary { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* ---------------- 07. PURPOSE CARDS (7.png) ---------------- */
.purpose-section {
  position: relative;
  width: 100%;
  min-height: 940px;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  background: var(--paper);
}
.purpose-section .content {
  position: relative;
  z-index: 3;
  width: min(1900px, calc(100% - 96px));
  height: 100%;
  max-height: calc(100vh - 64px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
}
.purpose-cards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.purpose-card {
  position: relative;
  min-height: 375px;
  padding: 32px 24px 48px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(26, 25, 24, 0.08);
  box-shadow: 0 12px 35px rgba(40, 30, 20, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.purpose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-top-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.icon-square {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.icon-square svg { width: 22px; height: 22px; stroke: white; }
.coral-bg { background: var(--coral); }
.mustard-bg { background: var(--mustard); }
.blue-bg { background: var(--blue); }
.green-bg { background: var(--sage); }
.peach-bg { background: var(--peach); }

.card-num { font-size: 13px; font-weight: 700; color: #bbb2a8; }
.card-top-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 10px; text-transform: uppercase; }
.coral-tag { color: var(--coral); }
.mustard-tag { color: var(--mustard); }
.blue-tag { color: var(--blue); }
.green-tag { color: var(--sage); }
.peach-tag { color: var(--peach); }

.purpose-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
  line-height: 1.35;
  font-weight: 750;
  color: var(--ink);
}
.purpose-card p { font-size: 13px; margin: 0; color: var(--ink-soft); line-height: 1.48; flex: 1; }

.card-bottom-tint {
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 36px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.28;
}
.coral-tint { background: var(--coral); }
.mustard-tint { background: var(--mustard); }
.blue-tint { background: var(--blue); }
.green-tint { background: var(--sage); }
.peach-tint { background: var(--peach); }

.purpose-line-footer {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.heart-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--coral);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 14px;
}



/* ---------------- 08. DUAL BENEFITS (8.png) ---------------- */
.dual-benefits { position: relative; background: var(--paper); }
.dual-benefits .content {
  width: min(1400px, calc(100% - 48px));
  margin-left: 200px;
}
.benefits-left {
  max-width: 640px;
  margin-left: 0;
  margin-right: auto;
  align-self: flex-start;
  text-align: left;
}
.benefits-left h2, .benefits-left p, .benefits-left .eyebrow {
  text-align: left;
}
.benefit-points { margin-top: 28px; display: grid; gap: 20px; }
.point-item { display: flex; gap: 16px; align-items: flex-start; }
.point-icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(230, 89, 71, 0.08);
  display: grid; place-items: center; color: var(--coral); flex-shrink: 0;
}
.point-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--coral); }
.point-item h3 {
  margin: 4px 0 0;
  font-size: 28px;
}
.highlight-quote-box {
  margin-top: 36px;
  padding: 22px 28px;
  border-radius: 20px;
  background: rgba(230, 89, 71, 0.08);
  display: flex;
  gap: 14px;
  align-items: center;
}
.quote-mark { font-size: 38px; line-height: 1; color: var(--coral); font-family: Georgia, serif; }
.highlight-quote-box p { margin: 0; font-size: 17px; font-weight: 700; color: var(--coral); line-height: 1.3; }
.benefits-visual img { border-radius: 32px; max-height: 475px; object-fit: cover; box-shadow: var(--shadow-soft); }

/* ---------------- 09. RESEARCH & VALIDATION (9.png) ---------------- */
.research-section { position: relative; background: var(--paper); padding-top: 0; }
.research-section .content {
  width: min(1600px, calc(100% - 96px));
  margin-left: clamp(40px, 8vw, 160px);
  justify-content: flex-start;
  padding-top: 0;
}
.research-heading-side {
    text-align: left;
    max-width: 675px;
    margin-left: 50px;
}
.research-heading-side h2 { font-size: clamp(38px, 5.5vw, 75px); 
  font-size: 90px;
  line-height: 1;
  margin-bottom: 20px;
}
.research-heading-side h2, .research-heading-side p, .research-heading-side .eyebrow {
  text-align: left;
}
.research-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: -30px;
}
.research-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.research-question-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 82px 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(26, 25, 24, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.research-question-card:hover {
  transform: translateY(-4px);
}
.q-num {
  font-size: 16px;
  font-weight: 850;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}
.research-question-card h3 { margin: 6px 0 6px; font-size: 16px; font-weight: 750; line-height: 1.3; color: var(--ink); }
.research-question-card p { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.45; }

.science-ribbon {
  position: absolute; inset: auto 0 0 0;
  height: 56px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(26,25,24,0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #787068;
}

/* ---------------- 10. CLOSING FORM (10.png) ---------------- */
.closing-dark { background: #161210; }
.closing-layout {
  max-width: 620px;
  margin-left: 200px;
}
.closing-layout h2 { margin-bottom: 18px; }
.closing-layout .lead { margin-bottom: 14px; }
.closing-features {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.interest-form-grid { display: grid; gap: 14px; margin-bottom: 20px; }
.form-inputs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.interest-form-grid input, .interest-form-grid select {
  height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
}
.interest-form-grid input::placeholder { color: rgba(255,255,255,0.55); }
.interest-form-grid select { appearance: none; color: white; }
.interest-form-grid select option { background: #221e1a; color: white; }
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  user-select: none;
}
.checkbox-container input {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  cursor: pointer;
}
.closing-legal { color: rgba(255,255,255,0.45) !important; font-size: 12px; }
.form-status { margin: 0; font-size: 13px; color: var(--coral-soft); min-height: 18px; }

/* ---------------- 11. FREQUENTLY ASKED QUESTIONS ---------------- */
.faq-section {
  background: var(--paper);
  margin-bottom: 100px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 36px;
}
.faq-card {
  background: var(--white);
  border: 1px solid rgba(26, 25, 24, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(40, 30, 20, 0.04);
  padding: 18px 24px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-card:hover {
  box-shadow: 0 12px 32px rgba(40, 30, 20, 0.07);
  border-color: rgba(230, 89, 71, 0.25);
}
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-head h3 {
  font-size: 16px;
  font-weight: 750;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.35;
}
.faq-preview {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
  opacity: 0.85;
}
.faq-toggle {
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-card[open] .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 25, 24, 0.06);
}
.faq-answer p {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

.faq-independent-note {
  margin-top: 36px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  opacity: 0.85;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  min-height: 120px;
  padding: 36px max(48px, calc((100vw - 1400px)/2));
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  color: #888078;
  background: #121110;
  scroll-snap-align: end;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; color: #bbb2a8; font-size: 13px; font-weight: 500; }
.footer-links a { color: #d2cac0; text-decoration: none; transition: color 0.2s ease; cursor: pointer; }
.footer-links a:hover { color: var(--coral); }
.footer-legal { padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.45); max-width: 800px; margin: 0 auto; line-height: 1.45; }

/* ---------------- LEGAL MODALS & COOKIE BANNER ---------------- */
.legal-modal-dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 760px;
  width: calc(100% - 32px);
  max-height: 85vh;
  margin: auto;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.legal-modal-dialog::backdrop {
  background: rgba(10, 8, 7, 0.75);
  backdrop-filter: blur(8px);
}
.legal-modal-container {
  position: relative;
  background: #181513;
  color: #e5dfd8;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 40px 36px 36px;
  max-height: 85vh;
  overflow-y: auto;
}
.legal-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.legal-modal-close:hover { background: rgba(230, 89, 71, 0.8); }
.legal-modal-body h2 { font-size: 28px; color: #fff; margin: 0 0 16px; line-height: 1.2; }
.legal-modal-body h3 { font-size: 17px; color: var(--coral-soft); margin: 22px 0 8px; font-weight: 700; }
.legal-modal-body p, .legal-modal-body li { font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); margin-bottom: 12px; }
.legal-modal-body ul { padding-left: 20px; margin-bottom: 16px; }

.cookie-banner-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  max-width: 400px;
  width: calc(100% - 48px);
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(22, 18, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  color: #fff;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}
.cookie-banner-wrap.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; display: block; }
.cookie-text { font-size: 12.5px; color: rgba(255, 255, 255, 0.78); line-height: 1.45; margin: 0 0 16px; }
.cookie-text a { color: var(--coral-soft); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.button-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.button-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ---------------- RESPONSIVE AUDIT & ADAPTABILITY ---------------- */

@media (max-width: 1040px) {
  /* Header & Navigation */
  .nav-links { display: none; }
  .site-header { padding: 0 24px; height: 68px; }

  /* Sections & Height adaptability */
  html, body { scroll-snap-type: none; }
  .screen { height: auto; min-height: 100vh; scroll-snap-align: none; padding: 72px 0 48px; }
  .content { width: min(100% - 48px, 900px); height: auto; max-height: none; padding: 40px 0 20px; margin: 0 auto !important; }

  /* Section layouts */
  .split-content, .safety-layout, .dual-benefits-layout, .research-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cinematic-copy, .safety-left, .benefits-left, .closing-layout, .research-section .content {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .tactile .content { margin-left: 0 !important; }
  .tactile-copy {
    max-width: 520px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    text-align: left;
}

  .activity-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .three-columns-text-grid { grid-template-columns: 1fr; gap: 24px; }
  .purpose-cards-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .research-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .faq-grid { grid-template-columns: 1fr; gap: 12px; }

  .science-ribbon {
    position: relative;
    height: auto;
    padding: 16px 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(34px, 8vw, 44px); line-height: 1.15; }
  h2 { font-size: clamp(28px, 6.5vw, 36px); line-height: 1.2; }
  .research-heading-side h2 { font-size: clamp(38px, 5.5vw, 75px);  font-size: clamp(36px, 9vw, 54px); }
  .lead { font-size: 16px; line-height: 1.5; }

  .activity-cards-grid { grid-template-columns: 1fr; }
  .purpose-cards-row { grid-template-columns: 1fr; }
  .privacy-badges-grid { grid-template-columns: 1fr; gap: 10px; }
  .form-inputs-row { grid-template-columns: 1fr; gap: 10px; }

  .button, .button-small {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .purpose-card { min-height: auto; padding: 24px 20px; }
  .purpose-card h3 { font-size: 24px; }
  .research-question-card { padding: 24px 20px; }
  .research-section, .activities-section, .faq-section { margin-bottom: 40px; }

  .light-copy h2, .light-copy p, .light-copy .eyebrow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  }

  .cinematic, .safety-dark, .dual-benefits, .system-parts, .closing-dark {
    background-color: #1a1715;
  }

  .hero-highlight { font-size: 13.5px; }
}

@media (max-width: 475px) {
  .site-header { padding: 0 16px; }
  .brand-mark { font-size: 20px; }
  .content { width: calc(100% - 32px); }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .lead { font-size: 15px; }
  .form-inputs-row input, .form-inputs-row select { height: 48px; font-size: 14px; }
}

/* ---------------- UNIVERSAL SPLIT FOOTER ---------------- */
.site-footer {
  min-height: 100px;
  padding: 40px clamp(24px, 5vw, 75px);
  background: #121110;
  color: #888078;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-links-left {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-links-left a {
  color: #d2cac0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
  cursor: pointer;
}
.footer-links-left a:hover {
  color: #e65947;
}
.footer-legal-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  text-align: right;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-legal-right {
    text-align: left;
  }
}

/* ---------------- UNIVERSAL SPLIT FOOTER (EXTREME ALIGNMENT) ---------------- */
.site-footer {
  min-height: 90px;
  padding: 30px clamp(24px, 5vw, 75px) !important;
  background: #121110 !important;
  color: #888078;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-links-left {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-links-left a {
  color: #d2cac0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
  cursor: pointer;
}
.footer-links-left a:hover {
  color: #e65947;
}
.footer-legal-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  text-align: right;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-legal-right {
    text-align: left;
  }
}

/* ---------------- DISABLE SCROLL JUMPING ON INNER PAGES ---------------- */
body:not(.home), body.page-template-page-recursos, body.page, body.single {
  scroll-snap-type: none !important;
  overflow-y: auto !important;
  height: auto !important;
}
body:not(.home) html {
  scroll-snap-type: none !important;
  overflow-y: auto !important;
  height: auto !important;
}

/* ---------------- TARGETED MOBILE RESPONSIVE ENHANCEMENTS (<768px) ---------------- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  img {
    max-width: 100% !important;
  }

  .site-header {
    padding: 0 16px !important;
  }

  .site-header .brand-mark {
    font-size: 26px !important;
  }

  .site-header .button-small {
    padding: 8px 14px !important;
    font-size: 12px !important;
    height: auto !important;
    min-height: 38px !important;
  }

  .hero-claim {
    font-size: clamp(18px, 4.5vw, 24px) !important;
  }

  .hero-highlight, .trust-line {
    font-size: 13px !important;
    padding: 10px 16px !important;
  }

  .recursos-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .legal-modal-container {
    width: 92% !important;
    padding: 24px 18px !important;
    max-height: 85vh !important;
  }

  .cookie-banner-wrap {
    bottom: 12px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
  }
}

@media (max-width: 475px) {
  .site-header .brand-mark {
    font-size: 22px !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-actions .button, .hero-actions .button-outline {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ---------------- APPLE EDITORIAL READING EXPERIENCE ---------------- */
.editorial-wrapper {
  background: #fbf7f0;
  min-height: 100vh;
  padding: 75px 24px 120px;
}

.editorial-container {
  max-width: 840px;
  margin: 0 auto;
}

.editorial-card {
  background: #ffffff;
  border-radius: 36px;
  padding: clamp(36px, 6vw, 75px) clamp(24px, 6vw, 72px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(26, 25, 24, 0.06);
}

.editorial-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e65947;
  background: rgba(230, 89, 71, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.editorial-h1 {
  font-family: 'Jua', sans-serif;
  font-size: clamp(32px, 5.2vw, 50px);
  font-weight: 400;
  color: #1a1918;
  line-height: 1.16;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.editorial-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #888078;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 48px;
}

.editorial-content {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.78;
  color: #383430;
}

.editorial-content p {
  margin-bottom: 28px;
}

.editorial-content h2 {
  font-size: clamp(26px, 4vw, 36px) !important;
  font-weight: 800 !important;
  color: #1a1918 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.02em !important;
  margin-top: 48px !important;
  margin-bottom: 20px !important;
}

.editorial-content h3 {
    font-size: clamp(20px, 3vw, 26px) !important;
    font-weight: 700 !important;
    color: #2c2825 !important;
    letter-spacing: 0.1px !important;
    line-height: 1.3 !important;
    margin-top: 40px !important;
    margin-bottom: 16px !important;
}

.editorial-content ul, .editorial-content ol {
  margin-bottom: 28px;
  padding-left: 24px;
}

.editorial-content li {
  margin-bottom: 12px;
  line-height: 1.65;
}

.editorial-content blockquote {
  margin: 40px 0;
  padding: 28px 36px;
  background: #fbf7f0;
  border-left: 4px solid #e65947;
  border-radius: 0 20px 20px 0;
  font-size: 20px;
  font-weight: 500;
  color: #1a1918;
  line-height: 1.55;
}

/* SCROLL REVEAL IMMERSIVE ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- FRAMELESS UNENCLOSED EDITORIAL LAYOUT ---------------- */
.editorial-wrapper {
  background: #fbf7f0 !important;
  min-height: 100vh;
  padding: 75px 24px 120px;
}

.editorial-container {
  max-width: 820px;
  margin: 0 auto;
}

.editorial-card {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.editorial-h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(34px, 5.5vw, 54px) !important;
  font-weight: 800 !important;
  color: #1a1918 !important;
  line-height: 1.15 !important;
  letter-spacing: -2px !important;
  margin-bottom: 24px !important;
  text-align: center;
}

/* ---------------- EXACT USER H1 RULE ---------------- */
.editorial-h1 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: clamp(34px, 5.5vw, 64px) !important;
    font-weight: 800 !important;
    color: #1a1918 !important;
    line-height: 1.15 !important;
    letter-spacing: -2px !important;
    margin-bottom: 24px !important;
    text-align: left !important;
}

/* ---------------- RECURSOS 2-COLUMN GRID & FILTER SYSTEM ---------------- */
.recursos-filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.recursos-filter-bar .filter-btn {
  background: #ffffff;
  border: 1px solid rgba(26, 25, 24, 0.12);
  color: #5c564f;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.recursos-filter-bar .filter-btn:hover,
.recursos-filter-bar .filter-btn.active {
  background: #e65947;
  color: #ffffff;
  border-color: #e65947;
  box-shadow: 0 4px 14px rgba(230, 89, 71, 0.25);
}

.recursos-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .recursos-grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.recurso-card-item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 25, 24, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recurso-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.recurso-card-thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5efe6;
}

.recurso-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recurso-card-item:hover .recurso-card-thumb img {
  transform: scale(1.04);
}

.recurso-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recurso-card-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e65947;
  background: rgba(230, 89, 71, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.recurso-card-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: clamp(20px, 2.5vw, 24px) !important;
    font-weight: 700 !important;
    color: #1a1918 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    margin: 0 0 12px 0 !important;
}

.recurso-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.recurso-card-title a:hover {
  color: #e65947;
}

.recurso-card-excerpt {
  font-size: 15px;
  color: #5c564f;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.recurso-card-footer {
  margin-top: auto;
}

/* ---------------- DYNAMIC CALLOUT HIGHLIGHT BOXES & ROUNDED IMAGES ---------------- */
.editorial-callout-box {
  background: #ffffff;
  border: 1px solid rgba(26, 25, 24, 0.08);
  border-left: 5px solid #e65947;
  border-radius: 20px;
  padding: 28px 32px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.editorial-callout-box p {
  margin-bottom: 0 !important;
  font-size: 18px;
  font-weight: 500;
  color: #1a1918;
  line-height: 1.65;
}

.editorial-callout-box strong {
  color: #e65947;
}

.editorial-content figure img,
.editorial-hero-image-wrap img {
  border-radius: 24px !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07) !important;
}

/* ---------------- INTERACTIVE ACCORDIONS, FLOW DIAGRAMS & MINI-GAME ---------------- */
.v-flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(26, 25, 24, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.v-flow-step {
  background: #fbf7f0;
  border: 1.5px solid #e65947;
  border-radius: 100px;
  padding: 12px 28px;
  font-weight: 750;
  color: #1a1918;
  font-size: 16px;
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.v-flow-arrow {
  color: #e65947;
  font-size: 20px;
  font-weight: 700;
}

.v-cards-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 36px 0;
}

@media (max-width: 640px) {
  .v-cards-comparison {
    grid-template-columns: 1fr;
  }
}

.v-card-instead {
  background: #fff5f5;
  border: 1px solid rgba(230, 89, 71, 0.2);
  border-radius: 16px;
  padding: 20px;
}

.v-card-try {
  background: #f0f9f5;
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 16px;
  padding: 20px;
}

.v-accordion-item {
  background: #ffffff;
  border: 1px solid rgba(26, 25, 24, 0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.v-accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 750;
  color: #1a1918;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v-accordion-content {
  padding: 0 24px 20px;
  display: none;
}

.v-accordion-item.active .v-accordion-content {
  display: block;
}

.v-minigame-box {
  background: #ffffff;
  border: 2px solid #e65947;
  border-radius: 24px;
  padding: 32px 28px;
  margin: 48px 0;
  box-shadow: 0 12px 40px rgba(230, 89, 71, 0.08);
}

.v-game-option {
  display: inline-block;
  background: #fbf7f0;
  border: 1px solid rgba(26, 25, 24, 0.12);
  padding: 10px 20px;
  border-radius: 100px;
  margin: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.v-game-option.selected {
  background: #e65947;
  color: #ffffff;
  border-color: #e65947;
}

.pdf-download-box {
  background: linear-gradient(135deg, #181513 0%, #2c2522 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 36px;
  margin: 48px 0;
  text-align: center;
}




.screen h2 {
  font-size: clamp(38px, 5.5vw, 75px);
  font-weight: 700;
  line-height: 1.08;
}


/* LANDING PAGE SPECIFIC HEADINGS (ONLY FRONT-PAGE / .SCREEN) */
.screen h1 {
  font-size: clamp(44px, 5.5vw, 80px) !important;
  font-weight: 700 !important;
  letter-spacing: -2px !important;
  line-height: 1.04;
}

.screen h2 {
  font-size: clamp(36px, 5.2vw, 75px) !important;
  font-weight: 700 !important;
  letter-spacing: -2px !important;
  line-height: 1.08;
}


/* LANDING PAGE SPECIFIC H3 HEADINGS (.SCREEN H3) */
.screen h3 {
  letter-spacing: 0px !important;
}


.cinematic-copy h2 {
  margin-bottom: 14px !important;
}


/* ---------------- DIDI EMOCIONES KIDS YOUTUBE SECTION (LIGHT STYLE) ---------------- */
.kids-section {
  background: #fbf7f0 !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 80px 0 !important;
  min-height: auto !important;
}

.kids-section::after {
  display: none !important;
}

.kids-layout {
  display: grid !important;
  grid-template-columns: 1fr 1.15fr !important;
  align-items: center !important;
  gap: 48px !important;
  width: min(100% - 64px, 1200px) !important;
  margin: 0 auto !important;
}

.kids-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.kids-eyebrow-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

.kids-eyebrow-wrap .play-icon-coral {
  width: 26px !important;
  height: 26px !important;
  flex-shrink: 0 !important;
}

.kids-eyebrow-wrap .eyebrow-text {
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #e65947 !important;
}

.kids-copy h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(34px, 4.2vw, 52px) !important;
  font-weight: 800 !important;
  color: #1a1918 !important;
  line-height: 1.12 !important;
  margin-bottom: 20px !important;
  text-align: left !important;
  letter-spacing: -0.02em !important;
  text-shadow: none !important;
}

.kids-copy p.lead {
  font-size: 18px !important;
  color: #4a453f !important;
  line-height: 1.55 !important;
  margin-bottom: 32px !important;
  text-align: left !important;
  max-width: 480px !important;
  text-shadow: none !important;
}

.kids-cta-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
}

.kids-cta-wrap .button-coral {
  padding: 16px 36px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  background: #e65947 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(230, 89, 71, 0.28) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.kids-cta-wrap .button-coral:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(230, 89, 71, 0.38) !important;
}

.kids-cta-wrap .fineprint-note {
  font-size: 13.5px !important;
  color: #77726b !important;
  margin: 0 !important;
  text-align: left !important;
}

.kids-visual {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.kids-visual img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06) !important;
}

@media (max-width: 900px) {
  .kids-layout {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: left !important;
  }
}



/* ---------------- DOS FORMAS DE USAR DIDI (NUEVA SECCIÓN) ---------------- */
.usage-modes-section {
  background: #fbf7f0 !important;
  padding: 100px 0 !important;
  display: flex !important;
  align-items: center !important;
}

.usage-modes-content {
  width: min(100% - 64px, 1200px) !important;
  margin: 0 auto !important;
}

.usage-modes-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  margin-top: 40px !important;
}

.usage-mode-card {
  background: #ffffff !important;
  padding: 48px !important;
  border-radius: 24px !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(230, 89, 71, 0.06) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.usage-mode-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(230, 89, 71, 0.08) !important;
}

.usage-mode-card .mode-tag {
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #e65947 !important;
  margin-bottom: 16px !important;
}

.usage-mode-card h3 {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #1a1918 !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
}

.usage-mode-card p {
  font-size: 16.5px !important;
  line-height: 1.6 !important;
  color: #5c564f !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .usage-modes-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .usage-mode-card {
    padding: 32px !important;
  }
}

/* ---------------- NECESITO AYUDA AHORA HUB ---------------- */
.situations-help-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
  margin-top: 10px !important;
}

@media (max-width: 900px) {
  .situations-help-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .situations-help-grid {
    grid-template-columns: 1fr !important;
  }
}

.situation-help-card {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  background: #ffffff !important;
  padding: 20px 24px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(26, 25, 24, 0.08) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.situation-help-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(230, 89, 71, 0.06) !important;
  border-color: rgba(230, 89, 71, 0.15) !important;
}

.situation-help-card .situation-card-icon {
  font-size: 28px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  background: #fbf7f0 !important;
  border-radius: 14px !important;
}

.situation-help-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 16px !important;
  font-weight: 750 !important;
  color: #1a1918 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.2 !important;
}

.situation-help-card p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 13px !important;
  color: #77726b !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* ---------------- RECURSOS PAGE ONLY: H3 LETTER SPACING ---------------- */
body.page-template-page-recursos h3,
body.page-id-8 h3,
.situations-help-grid h3,
.situation-help-card h3 {
  letter-spacing: 0px !important;
}



/* ==========================================================================
   MIEDO A EQUIVOCARSE EN NIÑOS - EDITORIAL DYNAMIC STYLES (.m-)
   ========================================================================== */
.m-wrap {
  max-width: 900px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: #1a1918;
  line-height: 1.7;
  font-size: 16.5px;
}

.m-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e65947;
  background: rgba(230,89,71,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.m-lead-card {
  background: #fdfaf7 !important;
  border: 1.5px solid #f0e6d2 !important;
  border-left: 5px solid #e65947 !important;
  border-radius: 18px !important;
  padding: 28px 32px !important;
  margin-bottom: 32px !important;
  box-shadow: 0 10px 28px rgba(40,30,20,0.03) !important;
}

.m-lead-card p {
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: #1a1918 !important;
  margin: 0 0 14px 0 !important;
}

.m-lead-card p:last-child {
  margin-bottom: 0 !important;
}

.m-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 40px;
}

@media (max-width: 768px) {
  .m-grid-2 {
    grid-template-columns: 1fr !important;
  }
}

.m-card-intro {
  background: #ffffff !important;
  border: 1.5px solid rgba(26,25,24,0.08) !important;
  border-radius: 16px !important;
  padding: 22px 24px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.02) !important;
}

.m-card-intro p {
  font-size: 14.5px !important;
  color: #5c564f !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

.m-selector-wrapper {
  background: #fdfaf7 !important;
  border: 1.5px solid #f0e6d2 !important;
  border-radius: 24px !important;
  padding: 36px 30px !important;
  margin: 44px 0 52px 0 !important;
  box-shadow: 0 16px 40px rgba(40,30,20,0.04) !important;
}

.m-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.m-tab-btn {
  background: #ffffff !important;
  border: 1.5px solid #e2d7c5 !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  color: #1a1918 !important;
  cursor: pointer !important;
  text-align: left !important;
  transition: all 0.2s ease !important;
  outline: none !important;
}

.m-tab-btn:hover, .m-tab-btn.active {
  background: #e65947 !important;
  color: #ffffff !important;
  border-color: #e65947 !important;
  box-shadow: 0 6px 18px rgba(230,89,71,0.22) !important;
}

.m-panel {
  display: none;
  background: #ffffff !important;
  border: 1.5px solid #f0e6d2 !important;
  border-radius: 16px !important;
  padding: 26px 28px !important;
  animation: mFadeIn 0.3s ease;
}

.m-panel.active {
  display: block !important;
}

@keyframes mFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.m-panel h3 {
  margin-top: 0 !important;
  font-size: 17.5px !important;
  color: #1a1918 !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
}

.m-panel p {
  font-size: 14.5px !important;
  color: #5c564f !important;
  margin: 0 0 14px !important;
  line-height: 1.6 !important;
}

.m-panel-quote {
  background: #fdfaf7 !important;
  border-left: 3px solid #e65947 !important;
  border-radius: 0 10px 10px 0 !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  color: #1a1918 !important;
}

.m-roadmap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 48px 0;
}

.m-road-step {
  background: #ffffff !important;
  border: 1.5px solid rgba(26,25,24,0.08) !important;
  border-radius: 18px !important;
  padding: 22px 24px !important;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.02) !important;
  transition: transform 0.2s, border-color 0.2s;
}

.m-road-step:hover {
  transform: translateY(-2px);
  border-color: #f0e6d2 !important;
}

.m-road-num {
  background: #e65947 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-road-content {
  flex: 1;
}

.m-road-content h4 {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #1a1918 !important;
  margin: 0 0 6px !important;
}

.m-road-content p {
  font-size: 14.5px !important;
  color: #5c564f !important;
  margin: 0 0 10px !important;
  line-height: 1.55 !important;
}

.m-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 44px;
}

@media (max-width: 860px) {
  .m-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 580px) {
  .m-grid-3 {
    grid-template-columns: 1fr !important;
  }
}

.m-card-col {
  background: #ffffff !important;
  border: 1.5px solid rgba(26,25,24,0.08) !important;
  border-radius: 18px !important;
  padding: 22px !important;
  box-shadow: 0 6px 18px rgba(40,30,20,0.03) !important;
  display: flex;
  flex-direction: column;
}

.m-card-badge {
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #e65947 !important;
  background: rgba(230,89,71,0.08) !important;
  padding: 4px 10px !important;
  border-radius: 8px !important;
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}

.m-card-col h4 {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #1a1918 !important;
  margin: 0 0 10px !important;
}

.m-card-col p {
  font-size: 13.5px !important;
  color: #5c564f !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.m-card-quote {
  background: #fdfaf7 !important;
  border-left: 3px solid #e65947 !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  color: #1a1918 !important;
  font-weight: 650 !important;
  margin-top: 12px;
}

.m-flowchart {
  background: #fbf7f0 !important;
  border: 1.5px solid #f0e6d2 !important;
  border-radius: 22px !important;
  padding: 32px 24px !important;
  margin: 36px 0 !important;
  text-align: center;
}

.m-flow-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .m-flow-flex {
    flex-direction: column !important;
  }
  .m-flow-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }
}

.m-flow-card {
  background: #ffffff !important;
  border: 1.5px solid rgba(26,25,24,0.08) !important;
  border-radius: 14px !important;
  padding: 16px 12px !important;
  flex: 1;
  min-width: 130px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02) !important;
}

.m-flow-card strong {
  font-size: 11px !important;
  color: #e65947 !important;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.m-flow-card span {
  font-size: 13.5px !important;
  color: #1a1918 !important;
  font-weight: 750 !important;
}

.m-flow-arrow {
  font-size: 18px !important;
  color: #d99a36 !important;
  font-weight: bold;
}

.m-table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  font-size: 14px !important;
  margin: 28px 0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1.5px solid #f0e6d2 !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.02) !important;
}

.m-table th {
  background: #fbf7f0 !important;
  border-bottom: 2px solid #f0e6d2 !important;
  padding: 14px 18px !important;
  text-align: left !important;
  color: #1a1918 !important;
  font-weight: 800 !important;
}

.m-table td {
  border-bottom: 1px solid #f0e6d2 !important;
  padding: 14px 18px !important;
  color: #5c564f !important;
  vertical-align: middle !important;
}

.m-table tr:last-child td {
  border-bottom: none !important;
}

.m-table tr:nth-child(even) {
  background: #fdfaf7 !important;
}

.m-table a {
  color: #e65947 !important;
  font-weight: 750 !important;
  text-decoration: none !important;
}

.m-table a:hover {
  text-decoration: underline !important;
}

.m-accordion {
  background: #ffffff !important;
  border: 1.5px solid rgba(26,25,24,0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01) !important;
  transition: all 0.2s ease;
}

.m-accordion[open] {
  border-color: #e65947 !important;
  box-shadow: 0 8px 24px rgba(230,89,71,0.05) !important;
}

.m-accordion summary {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 18px 22px !important;
  font-weight: 750 !important;
  font-size: 15.5px !important;
  color: #1a1918 !important;
  cursor: pointer !important;
  list-style: none !important;
  outline: none !important;
  user-select: none !important;
}

.m-accordion summary::-webkit-details-marker {
  display: none !important;
}

.m-accordion summary::after {
  content: "+" !important;
  font-size: 20px !important;
  color: #e65947 !important;
  font-weight: bold !important;
}

.m-accordion[open] summary::after {
  content: "−" !important;
}

.m-accordion-content {
  padding: 0 22px 20px 22px !important;
  font-size: 14px !important;
  color: #5c564f !important;
  line-height: 1.6 !important;
}

.m-brand-card {
  background: #fdfaf7 !important;
  border: 1.5px solid #f0e6d2 !important;
  border-radius: 24px !important;
  padding: 36px 30px !important;
  margin: 48px 0 !important;
  box-shadow: 0 12px 32px rgba(40,30,20,0.04) !important;
}

.m-brand-badge {
  display: inline-block;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #e65947 !important;
  background: rgba(230,89,71,0.08) !important;
  padding: 5px 12px !important;
  border-radius: 14px !important;
  margin-bottom: 12px !important;
}

.m-brand-card h2 {
  color: #1a1918 !important;
  font-size: 23px !important;
  font-weight: 850 !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.35 !important;
}

.m-brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .m-brand-pillars {
    grid-template-columns: 1fr !important;
  }
}

.m-brand-pillar {
  background: #ffffff !important;
  border: 1.5px solid rgba(26,25,24,0.08) !important;
  border-radius: 18px !important;
  padding: 22px 20px !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02) !important;
  display: flex;
  flex-direction: column;
}

.m-brand-pillar-num {
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #e65947 !important;
  background: rgba(230,89,71,0.08) !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.m-brand-pillar h3 {
  color: #1a1918 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  margin: 0 0 8px 0 !important;
}

.m-brand-pillar p {
  color: #5c564f !important;
  font-size: 13.5px !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

.m-btn-coral {
  display: inline-block;
  background: #e65947 !important;
  color: #ffffff !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-weight: 750 !important;
  text-decoration: none !important;
  font-size: 15px !important;
  box-shadow: 0 4px 14px rgba(230,89,71,0.25) !important;
  transition: transform 0.2s, background-color 0.2s;
  text-align: center;
}

.m-btn-coral:hover {
  background: #d94332 !important;
  transform: translateY(-1px);
}
