/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #ffffff;
  --bg-2:      #eef4fb;
  --paper:     #ffffff;
  --ink:       #0f1f30;
  --ink-soft:  #1c2e42;
  --ink-mute:  #5c6b7a;
  --red:       #d2192a;
  --red-dark:  #a3121f;
  --blue:      #0b4c86;
  --blue-dark: #06325c;
  --line:      rgba(15, 31, 48, 0.12);

  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  /* !important is a deliberate safety net: this page is a full
     standalone document (no other theme CSS should apply here at
     all), but GeneratePress's own stylesheet has proven to slip in
     regardless of the PHP-side dequeue, so this guarantees the
     brand font wins no matter what else loads. */
  font-family: var(--sans) !important;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif) !important; font-weight: 500; color: var(--ink); }
em { font-style: italic; color: var(--red); }
::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.container-narrow { max-width: 760px; }
.container-wide { max-width: 1320px; }

.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: .9rem; font-family: var(--sans);
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.1rem; max-width: 20ch; }
.section-lede { font-size: 1.1rem; color: var(--ink-mute); max-width: 56ch; }

/* Reveal on scroll */
[data-reveal], .reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed, .reveal.is-revealed { opacity: 1; transform: none; }
/* Defensive: elements with both .reveal and data-split must stay visible even if JS never fires */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.9rem; border-radius: 999px;
  font-weight: 600; font-size: .98rem; font-family: var(--sans);
  box-shadow: 0 4px 14px rgba(15,31,48,0.08), 0 1px 3px rgba(15,31,48,0.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out), color .3s var(--ease-out);
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(210,25,42,0.28), 0 8px 18px rgba(15,31,48,0.14);
}
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { transform: translateY(-4px); border-color: var(--blue); color: var(--blue); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,15,25,0.6) 0%, rgba(6,15,25,0.38) 35%, rgba(6,15,25,0.78) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: clamp(2rem, 6vw, 4.5rem) 1.25rem clamp(3rem, 8vw, 5.5rem);
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  color: #fff;
}
.hero .kicker {
  font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: #f4dede; margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.3rem, 6.4vw, 4.4rem);
  color: #fff;
  max-width: 18ch;
  margin-inline: auto;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-title em { color: #9fc4ea; font-style: italic; }
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 46ch; margin: 1.4rem auto 0;
}
.hero-actions { justify-content: center; }
.hero-actions .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08);
}
.hero-actions .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.16); }

/* =============================================================
   6. Trust ticker (marquee)
   ============================================================= */
.ticker-wrap {
  background: var(--blue);
  padding-block: .95rem;
  overflow: hidden;
}
.marquee { overflow: hidden; position: relative; }
.marquee-track {
  display: inline-flex; align-items: center; gap: .9rem; white-space: nowrap;
  will-change: transform;
  font-family: var(--sans); font-weight: 600; font-size: .84rem;
  letter-spacing: .06em; text-transform: uppercase; color: #eaf2fb;
}
.marquee-track .dot { color: #ff8a94; font-weight: 700; margin-inline: .4rem; }

/* =============================================================
   7. Identificación
   ============================================================= */
.section-id { background: var(--bg); }
.id-grid {
  display: grid; gap: 1.4rem;
  margin-top: 2rem;
}
@media (min-width: 720px) { .id-grid { grid-template-columns: repeat(3, 1fr); } }
.id-item {
  font-size: 1.05rem; color: var(--ink-soft);
  padding: 1.4rem 1.5rem;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
}
.id-item::before {
  content: "→"; color: var(--red); font-weight: 700; margin-right: .5rem;
}

/* =============================================================
   8. Features grid
   ============================================================= */
.section-features { background: var(--bg-2); }
.features-grid {
  display: grid; gap: 1.1rem; margin-top: 2.4rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line);
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(15,31,48,0.18);
  border-color: rgba(210,25,42,0.25);
}
.feature-num {
  display: inline-block; font-family: var(--serif); font-style: italic;
  font-size: 1.6rem; color: var(--blue); opacity: .55; margin-bottom: .6rem;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: .55rem; }
.feature-card p { color: var(--ink-mute); font-size: .96rem; }

/* =============================================================
   9. Gallery
   ============================================================= */
.section-gallery { background: var(--bg); }
.gallery-grid {
  display: grid; gap: .8rem; margin-top: 2.2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
  .gallery-item--big { grid-column: span 2; grid-row: span 2; }
}
.gallery-item {
  overflow: hidden; border-radius: 14px; position: relative;
  aspect-ratio: 4/3;
}
@media (min-width: 720px) { .gallery-item { aspect-ratio: auto; height: 100%; } }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft), filter .55s;
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.15) brightness(1.03); }

/* =============================================================
   10. Levels
   ============================================================= */
.section-levels { background: var(--bg-2); }
.levels-grid {
  display: grid; gap: 1.2rem; margin-top: 2.2rem;
}
@media (min-width: 860px) { .levels-grid { grid-template-columns: repeat(3, 1fr); } }
.level-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 2.1rem 1.8rem;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.level-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(15,31,48,0.16); }
.level-tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px;
  background: rgba(210,25,42,0.1); color: var(--red); margin-bottom: 1rem;
}
.level-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.level-card p { color: var(--ink-mute); }
/* Featured card overrides — declared LAST so they win over the generic
   .level-card rules above despite equal selector specificity. */
.level-card--featured {
  background: var(--blue);
  border-color: var(--blue);
}
.level-card--featured .level-tag { background: rgba(255,255,255,0.18); color: #fff; }
.level-card--featured h3 { color: #fff; }
.level-card--featured p { color: rgba(255,255,255,0.9); }

/* =============================================================
   11. Stats / diferenciadores
   ============================================================= */
.section-stats { background: var(--bg-2); }
.container-split { display: grid; gap: 2.6rem; align-items: center; }
@media (min-width: 960px) { .container-split { grid-template-columns: 1fr 1fr; gap: 4.5rem; } }
.stats-figure-wrap { position: relative; max-width: 460px; margin-inline: auto; }
@media (min-width: 960px) { .stats-figure-wrap { margin-inline: 0; } }
.stats-figure-wrap::before {
  content: ""; position: absolute; z-index: -1;
  inset: 22px -22px -22px 22px;
  background: var(--blue);
  border-radius: 22px;
}
.stats-figure {
  border-radius: 22px; overflow: hidden; aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 30px 60px -22px rgba(15,31,48,0.35);
}
.stats-figure img { width: 100%; height: 100%; object-fit: cover; }
.stats-badge {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 1;
  background: #fff; color: var(--ink);
  padding: .7rem 1.1rem; border-radius: 12px;
  font-size: .82rem; font-weight: 600; line-height: 1.3;
  box-shadow: 0 14px 30px -10px rgba(15,31,48,0.35);
  max-width: 78%;
}
.stats-badge strong { color: var(--red); display: block; font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin: 2.2rem 0 2rem; }
.stat-num { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--blue); }
.stat-label { display: block; font-size: .84rem; color: var(--ink-mute); margin-top: .3rem; }

/* =============================================================
   12. Testimonials
   ============================================================= */
.section-testimonials { background: var(--bg-2); }
.testimonials-grid { display: grid; gap: 1.1rem; margin-top: 2.2rem; }
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card {
  background: var(--paper); border-radius: 18px; padding: 1.9rem 1.8rem;
  border: 1px solid var(--line); position: relative;
}
.testimonial-card p { font-size: 1.04rem; color: var(--ink-soft); margin-bottom: 1.1rem; font-family: var(--serif); font-style: italic; }
.testimonial-card footer { font-size: .88rem; color: var(--ink-mute); font-family: var(--sans); }
.testimonial-card footer strong { color: var(--ink); }

/* =============================================================
   13. Follow-up strip
   ============================================================= */
.section-followup { background: var(--blue); text-align: center; }
.section-followup .eyebrow { color: #ffd9dc; }
.section-followup h2 { color: #fff; margin-inline: auto; }
.section-followup .section-lede { color: rgba(255,255,255,0.85); margin-inline: auto; }

/* =============================================================
   14. FAQ
   ============================================================= */
.section-faq { background: var(--bg); }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.1rem 1.4rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 1.02rem; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: var(--red); flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: .9rem; color: var(--ink-mute); }

/* =============================================================
   15. CTA final + form
   ============================================================= */
.section-cta { background: var(--bg-2); text-align: center; }
.section-cta .section-title, .section-cta .section-lede { margin-inline: auto; }
.cta-form {
  margin-top: 2.4rem; text-align: left;
  background: var(--paper); border-radius: 22px; padding: 2.2rem;
  border: 1px solid var(--line);
  position: relative;
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft);
}
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; position: absolute; inset: 0; }
.field { position: relative; margin-bottom: 1.2rem; }
.field input {
  width: 100%; padding: 1.35rem 1rem .5rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg); color: var(--ink); font-size: 1rem; font-family: var(--sans);
  transition: border-color .25s var(--ease-out);
}
.field input:focus { outline: none; border-color: var(--blue); }
.field label {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; transition: all .22s var(--ease-out);
  color: var(--ink-mute); font-size: 1rem;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: .6rem; transform: none; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
}
.cta-submit { width: 100%; position: relative; margin-top: .4rem; }
.cta-form-spinner {
  position: absolute; inset: 0; display: none; place-items: center;
}
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { display: grid; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-legal { font-size: .82rem; color: var(--ink-mute); margin-top: 1rem; text-align: center; }
.form-legal a { color: var(--blue); text-decoration: underline; }

/* Wrapper card for the WordPress/Fluent Forms integration — keeps the
   same card look even though Fluent Forms renders its own markup. */
.cta-form-wrap {
  margin-top: 2.4rem; text-align: left;
  background: var(--paper); border-radius: 22px; padding: 2.2rem;
  border: 1px solid var(--line);
}
.cta-form-wrap .fluentform label,
.cta-form-wrap .ff-el-input--label label { font-family: var(--sans); font-weight: 600; font-size: .85rem; color: var(--ink); }
.cta-form-wrap .fluentform input[type="text"],
.cta-form-wrap .fluentform input[type="tel"],
.cta-form-wrap .fluentform input[type="email"],
.cta-form-wrap .fluentform textarea,
.cta-form-wrap .fluentform select {
  font-family: var(--sans); border: 1.5px solid var(--line) !important; border-radius: 12px !important;
  background: var(--bg) !important; padding: .9rem 1rem !important;
}
.cta-form-wrap .fluentform input:focus,
.cta-form-wrap .fluentform textarea:focus,
.cta-form-wrap .fluentform select:focus { border-color: var(--blue) !important; box-shadow: none !important; }
.cta-form-wrap .fluentform button[type="submit"],
.cta-form-wrap .ff-btn-submit {
  background: var(--red) !important; border: 0 !important; border-radius: 999px !important;
  font-family: var(--sans); font-weight: 600 !important; padding: 1rem 1.9rem !important;
  width: 100%; transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft) !important;
}
.cta-form-wrap .fluentform button[type="submit"]:hover,
.cta-form-wrap .ff-btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(210,25,42,0.28);
}

.cta-success {
  margin-top: 2.4rem; background: var(--paper); border-radius: 22px; padding: 2.6rem;
  border: 1px solid var(--line);
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity .7s var(--ease-out), max-height .7s var(--ease-soft), padding .7s;
}
.cta-success.is-visible { opacity: 1; max-height: 300px; }
.cta-success h3 { color: var(--blue); margin-bottom: .5rem; }
.cta-success p { color: var(--ink-mute); }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--blue-dark); color: #c9d9ea; padding-block: 3rem 1.4rem; }
.footer-inner {
  display: grid; gap: 2rem; padding-block-end: 2rem; border-bottom: 1px solid rgba(201,217,234,0.16);
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-logo { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: #fff; }
.footer-logo .dot-sep { color: #ff5a68; }
.footer-logo em { font-style: italic; color: #9fc4ea; font-weight: 400; }
.footer-brand p { margin-top: .6rem; font-size: .9rem; color: #a9c0d6; }
.footer-contact, .footer-legal { display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; }
.footer-contact a, .footer-legal a { transition: color .25s; }
.footer-contact a:hover, .footer-legal a:hover { color: #ff8a94; }
.footer-bottom { padding-top: 1.4rem; font-size: .82rem; color: #7f9ab5; }

/* =============================================================
   17. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-title { max-width: 22ch; }
}
@media (min-width: 1280px) {
  .container { padding-inline: 2rem; }
}

/* =============================================================
   18. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  /* Marquee, reveals, hovers, count-ups stay ON — only truly intrusive motion is gated in JS */
}

/* =============================================================
   19. Legal pages (cookies, privacidad, términos, aviso legal)
   ============================================================= */
.legal-page { background: var(--bg); }

.legal-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-block: 1.1rem;
  position: sticky; top: 0; z-index: 50;
}
.legal-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.legal-logo {
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--ink);
}
.legal-logo .dot-sep { color: var(--red); }
.legal-logo em { font-style: italic; color: var(--blue); font-weight: 400; }
.legal-back {
  font-size: .88rem; font-weight: 600; color: var(--blue);
  transition: color .25s var(--ease-out);
}
.legal-back:hover { color: var(--red); }

.legal-main {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  min-height: 55vh;
}
.legal-title {
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  margin-bottom: 2.4rem;
}
.legal-body {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.8;
}
.legal-body h1, .legal-body h2 {
  font-size: 1.5rem; color: var(--blue);
  margin-top: 2.6rem; margin-bottom: .9rem;
}
.legal-body h3, .legal-body h4 {
  font-size: 1.15rem; color: var(--ink);
  margin-top: 2rem; margin-bottom: .6rem;
}
.legal-body > *:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 1.2rem; }
.legal-body ul, .legal-body ol { margin: 0 0 1.2rem 1.4rem; }
.legal-body li { margin-bottom: .45rem; }
.legal-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--red); }
.legal-body strong { color: var(--ink); }
.legal-body hr { border: none; border-top: 1px solid var(--line); margin: 2.4rem 0; }
.legal-body table {
  width: 100%; border-collapse: collapse; margin: 0 0 1.6rem; font-size: .92rem;
  display: block; overflow-x: auto;
}
.legal-body table th, .legal-body table td {
  border: 1px solid var(--line); padding: .65rem .85rem; text-align: left;
}
.legal-body table th { background: var(--bg-2); font-weight: 600; color: var(--ink); }
.legal-body blockquote {
  border-left: 3px solid var(--red); padding-left: 1.1rem;
  color: var(--ink-mute); font-style: italic; margin: 1.6rem 0;
}

/* =============================================================
   20. Join.chat WhatsApp bubble — step aside near the lead form
   ============================================================= */
/* .joinchat is injected by the Join.chat plugin, fixed bottom-right
   (bottom-left if configured), sitting on top of the form/consent
   checkbox on narrow phones. When the form section scrolls into
   view, main.js adds .ahv-form-in-view to <html>; slide the bubble
   down out of the way instead of leaving it stacked on the form. */
html.ahv-form-in-view .joinchat {
  /* .joinchat is a zero-size positioning wrapper (the visible 60px
     button is an absolutely-positioned child, .joinchat__button),
     so a percentage-based offset resolves against a 0px box and
     barely moves it. Use a fixed value comfortably larger than the
     button + its bottom/right inset instead. */
  transform: translate3d(0, 160px, 0) !important;
  transition: transform .3s var(--ease-out);
  pointer-events: none;
}
.joinchat { transition: transform .3s var(--ease-out); }

/* =============================================================
   21. Complianz cookie banner — compact on mobile
   ============================================================= */
/* Complianz's own "CSS personalizado" field is Premium-only on the
   free plan (greyed out, not editable), so these rules live here
   instead — same effect, no upgrade needed. Every real page on this
   site loads this stylesheet, so it reaches the banner everywhere. */
@media (max-width: 480px) {
  .cmplz-cookiebanner {
    padding: 12px 16px !important;
  }
  .cmplz-cookiebanner .cmplz-logo {
    display: none !important;
  }
  .cmplz-cookiebanner .cmplz-header {
    margin-bottom: 6px !important;
  }
  .cmplz-cookiebanner .cmplz-title {
    font-size: 15px !important;
  }
  .cmplz-cookiebanner .cmplz-message {
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }
  .cmplz-cookiebanner .cmplz-divider {
    margin: 6px 0 !important;
  }
  .cmplz-cookiebanner .cmplz-buttons {
    gap: 6px !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .cmplz-cookiebanner .cmplz-btn {
    padding: 9px 12px !important;
    font-size: 13px !important;
    margin-bottom: 0 !important;
  }
  .cmplz-cookiebanner .cmplz-btn.cmplz-accept,
  .cmplz-cookiebanner .cmplz-btn.cmplz-deny {
    flex: 1 1 calc(50% - 3px) !important;
  }
  .cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences {
    flex: 1 1 100% !important;
  }
  .cmplz-cookiebanner .cmplz-documents {
    margin-top: 6px !important;
    font-size: 11px !important;
  }
}
