/* ============================================================
   27n — estilo "Aylix": azul elétrico imersivo, feixes de luz,
   cartões glass, pílulas brancas. Secções de conteúdo claras.
   ============================================================ */

:root {
  --blue: #1f6bff;
  --blue-600: #1559e6;
  --blue-700: #0e44c2;
  --hero-from: #1453e6;
  --hero-to: #2f7dff;
  --navy: #061233;
  --ink: #0a1330;
  --ink-soft: #5a6480;
  --bg: #ffffff;
  --bg-soft: #f4f7fd;
  --line: #e6eaf4;
  --on-blue: #ffffff;
  --on-blue-soft: rgba(255, 255, 255, 0.78);

  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --maxw: 1160px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; font-weight: 600; letter-spacing: -0.025em; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 0; }

/* ---------- Beams (feixes de luz) ---------- */
.hero__beams, .statband__beams, .cta__beams { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.beam {
  position: absolute; top: -40%; height: 180%; width: 26%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  filter: blur(28px); transform: rotate(18deg); opacity: 0.5;
  animation: drift 14s ease-in-out infinite;
}
.beam--1 { left: 8%; }
.beam--2 { left: 42%; width: 14%; opacity: 0.35; animation-delay: -4s; animation-duration: 18s; }
.beam--3 { left: 70%; width: 20%; opacity: 0.4; animation-delay: -8s; animation-duration: 16s; }
@keyframes drift {
  0%, 100% { transform: rotate(18deg) translateX(0); }
  50% { transform: rotate(15deg) translateX(40px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--white { background: #fff; color: var(--blue-700); box-shadow: 0 8px 24px -10px rgba(0,0,0,0.4); }
.btn--white:hover { background: #f0f4ff; }
.btn--glass { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(6px); }
.btn--glass:hover { background: rgba(255,255,255,0.2); }
.btn--outline { background: transparent; color: var(--blue-700); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--sm { padding: 9px 17px; font-size: 0.875rem; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 83, 230, 0.65); backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1); transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled { background: rgba(255,255,255,0.85); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; letter-spacing: -0.04em; display: inline-flex; align-items: baseline; color: #fff; }
.site-header.scrolled .logo { color: var(--ink); }
.logo__n { color: #bcd2ff; }
.site-header.scrolled .logo__n { color: var(--blue); }

.nav { display: flex; gap: 30px; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--on-blue-soft); transition: color 0.2s; }
.nav a:hover { color: #fff; }
.site-header.scrolled .nav a { color: var(--ink-soft); }
.site-header.scrolled .nav a:hover { color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 24px; background: #fff; border-bottom: 1px solid var(--line); }
.mobile-menu a { padding: 12px 0; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a.btn { border: 0; margin-top: 12px; color: var(--blue-700); }

/* ---------- Language switcher ---------- */
.lang { display: inline-flex; align-items: center; gap: 2px; font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; }
.lang a { color: var(--on-blue-soft); padding: 5px 10px; border-radius: 999px; transition: color 0.2s, background 0.2s; }
.lang a:hover { color: #fff; }
.lang a.is-active { color: #fff; background: rgba(255,255,255,0.16); }
.site-header.scrolled .lang a { color: var(--ink-soft); }
.site-header.scrolled .lang a:hover { color: var(--ink); }
.site-header.scrolled .lang a.is-active { color: var(--blue); background: rgba(31,107,255,0.1); }
.lang--menu { margin-top: 14px; }
.lang--menu a { color: var(--ink-soft); }
.lang--menu a.is-active { color: var(--blue); background: rgba(31,107,255,0.1); }
.footer__lang a { color: rgba(255,255,255,0.6); }
.footer__lang a:hover { color: #fff; }
.footer__lang a.is-active { color: #fff; background: rgba(255,255,255,0.14); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--on-blue); overflow: hidden;
  padding: clamp(80px, 12vw, 150px) 0 clamp(64px, 9vw, 110px);
  margin-top: -70px; padding-top: clamp(150px, 18vw, 220px);
  background:
    radial-gradient(120% 90% at 80% 10%, var(--hero-to), transparent 60%),
    linear-gradient(135deg, var(--hero-from) 0%, var(--blue) 55%, var(--hero-to) 100%);
}
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 60% at 50% 120%, rgba(4,12,40,0.35), transparent 70%); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 50px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
  font-weight: 500; font-size: 0.9rem; color: #fff; padding: 7px 15px;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px); margin-bottom: 26px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #7dffb0; box-shadow: 0 0 0 4px rgba(125,255,176,0.25); }
.hero__title { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 700; max-width: 14ch; }
.hero__lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--on-blue-soft); max-width: 52ch; margin: 24px 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero glass card */
.hero__card {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-xl); padding: 28px; backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px -30px rgba(4,12,40,0.6);
}
.hero__card-label { font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--on-blue-soft); margin-bottom: 18px; }
.hero__card-stats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 14px; }
.hero__card-stats strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.hero__card-stats span { display: block; margin-top: 5px; font-size: 0.82rem; color: var(--on-blue-soft); }
.hero__card-cta { display: inline-block; margin-top: 22px; font-family: var(--font-display); font-weight: 600; color: #fff; border-bottom: 1.5px solid rgba(255,255,255,0.5); padding-bottom: 2px; transition: border-color 0.2s; }
.hero__card-cta:hover { border-color: #fff; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy); color: #fff; padding: 22px 0; }
.trust__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust__label { font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); }
.trust__list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.trust__list li { font-family: var(--font-display); font-weight: 500; color: rgba(255,255,255,0.85); position: relative; }
.trust__list li::before { content: "›"; margin-right: 10px; color: var(--blue); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--alt { background: var(--bg-soft); }
.section__head { max-width: 720px; margin-bottom: 52px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__kicker { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 14px; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); }
.section__intro { font-size: 1.12rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -24px rgba(20,83,230,0.4); border-color: transparent; }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; background: linear-gradient(135deg, var(--blue), var(--hero-to)); color: #fff; margin-bottom: 20px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--blue); opacity: 0.25; }
.step h3 { font-size: 1.25rem; margin: 8px 0 10px; }
.step p { color: var(--ink-soft); }

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.benefit { padding: 28px 30px; border-left: 3px solid var(--blue); background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0; }
.benefit h3 { font-size: 1.2rem; margin-bottom: 8px; }
.benefit p { color: var(--ink-soft); }

/* ---------- Audience ---------- */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.aud { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; }
.aud__tag { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--blue-700); margin-bottom: 12px; }
.aud p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Stat band ---------- */
.statband { position: relative; overflow: hidden; color: #fff; padding: clamp(54px, 8vw, 88px) 0;
  background: linear-gradient(135deg, var(--hero-from), var(--blue) 60%, var(--hero-to)); }
.statband__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.sb { text-align: center; }
.sb__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; font-variant-numeric: tabular-nums; }
.sb__label { display: block; margin-top: 10px; color: var(--on-blue-soft); font-size: 0.95rem; }

/* ---------- Work / portfolio grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.work-item {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.work-item:hover { transform: translateY(-5px); box-shadow: 0 22px 48px -26px rgba(20,83,230,0.45); border-color: transparent; }
.work-thumb {
  display: block; aspect-ratio: 16 / 10; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--blue), var(--hero-to));
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.work-thumb--fallback::after {
  content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1rem; text-align: center; padding: 0 14px;
}
.work-cap { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 16px; }
.work-name { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink); word-break: break-word; }
.work-go { color: var(--ink-soft); font-size: 0.95rem; transition: color 0.2s, transform 0.2s; }
.work-item:hover .work-go { color: var(--blue); transform: translate(2px, -2px); }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; display: flex; flex-direction: column; gap: 20px; }
.quote blockquote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.45; color: var(--ink); }
.quote figcaption strong { display: block; }
.quote figcaption span { color: var(--ink-soft); font-size: 0.9rem; }
.quotes__note { margin-top: 32px; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pricing--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 34px 28px; position: relative; display: flex; flex-direction: column; gap: 8px; }
.pricing--4 .plan { padding: 30px 24px; }
.pricing--4 .plan__price { font-size: 1.7rem; }
.plan--featured { background: linear-gradient(160deg, var(--blue-700), var(--blue)); color: #fff; border-color: transparent; box-shadow: 0 30px 60px -28px rgba(20,83,230,0.6); transform: translateY(-8px); }
.plan__badge { position: absolute; top: 18px; right: 18px; font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(255,255,255,0.2); padding: 5px 11px; border-radius: 999px; }
.plan h3 { font-size: 1.3rem; }
.plan__price { font-family: var(--font-display); font-weight: 700; font-size: 2rem; margin: 6px 0; }
.plan__from { font-size: 0.85rem; font-weight: 500; opacity: 0.6; margin-right: 4px; }
.plan__for { color: var(--ink-soft); margin-bottom: 14px; }
.plan--featured .plan__for { color: var(--on-blue-soft); }
.plan ul { list-style: none; display: grid; gap: 11px; margin: 6px 0 24px; }
.plan li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 0.95rem; }
.plan--featured li { color: var(--on-blue-soft); }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.plan--featured li::before { color: #7dffb0; }
.plan .btn { margin-top: auto; }

/* ---------- Cal.com embed ---------- */
.cal-embed {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px -32px rgba(20,83,230,0.4); padding: 8px; overflow: hidden;
  min-height: 640px;
}
.cal-embed #my-cal-inline-meeting { min-height: 624px; border-radius: calc(var(--radius-xl) - 8px); }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; color: #fff; padding: clamp(70px, 10vw, 120px) 0;
  background: linear-gradient(135deg, var(--hero-from), var(--blue) 55%, var(--hero-to)); }
.cta__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.cta h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.cta p { color: var(--on-blue-soft); font-size: 1.12rem; margin-top: 14px; }
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 38px auto 0; text-align: left; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; color: #fff; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 13px 15px; border-radius: 12px; resize: vertical;
  border: 1.5px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: #fff; transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.6); }
.field input:focus, .field textarea:focus { outline: none; border-color: #fff; background: rgba(255,255,255,0.18); }
.field--full .btn { width: 100%; }
.form__status { margin-top: 12px; font-size: 0.95rem; color: #d6ffe6; font-weight: 500; text-align: center; min-height: 1.4em; }
.form__status--error { color: #ffd9d9; }
.cta__or { margin-top: 28px; color: var(--on-blue-soft); }
.cta__or a { color: #fff; font-weight: 600; border-bottom: 1.5px solid rgba(255,255,255,0.5); }
.cta__or a:hover { border-color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 56px 0 38px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
.logo--footer { font-size: 1.5rem; color: #fff; }
.footer__brand p { margin-top: 12px; max-width: 30ch; }
.footer__partner { display: block; margin-top: 18px; height: 31px; width: auto; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; justify-self: end; }
.footer__nav a:hover { color: #fff; }
.footer__meta { grid-column: 1 / -1; padding-top: 28px; margin-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem; }

/* ---------- Floating contact widget ---------- */
.fab-contact {
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  font-family: var(--font-display); font-weight: 600;
}
.fab-launch { display: flex; align-items: center; gap: 10px; }
.fab-contact.is-open .fab-launch { display: none; }

.fab-bubble {
  background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 14px;
  box-shadow: 0 10px 26px -12px rgba(0,0,0,0.35); font-size: 0.95rem; white-space: nowrap;
}
.fab-trigger {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; padding: 0;
  background: radial-gradient(circle at 32% 28%, #5ea6f5, #0a55cf 78%); color: #fff;
  border: 0; border-radius: 50%; cursor: pointer;
  box-shadow: 0 16px 36px -10px rgba(20,83,230,0.7), 0 0 0 7px rgba(20,83,230,0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.fab-trigger svg { width: 30px; height: 30px; }
.fab-trigger:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -12px rgba(20,83,230,0.8), 0 0 0 9px rgba(20,83,230,0.16); }
.fab-badge {
  position: absolute; top: -7px; left: -7px; width: 22px; height: 22px; border-radius: 50%;
  background: #ff3b30; color: #fff; display: grid; place-items: center; font-size: 0.78rem;
  box-shadow: 0 0 0 2px #fff;
}

.fab-panel { display: none; flex-direction: column; gap: 10px; align-items: stretch; min-width: 230px; }
.fab-contact.is-open .fab-panel { display: flex; animation: fabUp 0.28s var(--ease); }
.fab-panel-title { color: var(--ink-soft); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; text-align: right; padding-right: 6px; margin-bottom: 2px; }

.fab-wa {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: linear-gradient(90deg, #4caf50, #8bc34a); color: #fff;
  padding: 13px 20px; border-radius: 999px; box-shadow: 0 12px 28px -14px rgba(0,0,0,0.45);
  transition: transform 0.2s var(--ease), filter 0.2s;
}
.fab-wa:hover { transform: translateY(-2px); filter: brightness(1.05); }
.fab-wa svg { width: 21px; height: 21px; flex: none; }
.fab-wa-name { font-weight: 600; }

.fab-close {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #1b2233; color: #fff; border: 0; border-radius: 999px; padding: 13px 20px;
  font-family: inherit; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: background 0.2s;
}
.fab-close:hover { background: #2a3450; }

@keyframes fabUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
  .fab-contact { right: 16px; bottom: 16px; }
  .fab-bubble { display: none; }
}

/* ---------- Page hero (subpáginas: careers, etc.) ---------- */
.page-hero {
  position: relative; color: var(--on-blue); overflow: hidden; text-align: center;
  margin-top: -70px; padding: clamp(150px, 18vw, 200px) 0 clamp(58px, 8vw, 92px);
  background:
    radial-gradient(120% 90% at 80% 10%, var(--hero-to), transparent 60%),
    linear-gradient(135deg, var(--hero-from) 0%, var(--blue) 55%, var(--hero-to) 100%);
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 60% at 50% 120%, rgba(4,12,40,0.35), transparent 70%); pointer-events: none; }
.page-hero__beams { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.025em; line-height: 1.06; }
.page-hero__lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--on-blue-soft); max-width: 56ch; margin: 22px auto 0; }
.page-hero__meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.page-hero__meta .job__tag { color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

/* ---------- Jobs list (careers) ---------- */
.jobs { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; }
.job {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 30px; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.job:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -24px rgba(20,83,230,0.4); border-color: transparent; }
.job__info h3 { font-size: 1.22rem; margin-bottom: 12px; color: var(--ink); }
.job__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.job__tag {
  font-family: var(--font-display); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.02em;
  color: var(--blue-700); background: rgba(31,107,255,0.08); border: 1px solid rgba(31,107,255,0.14);
  border-radius: 999px; padding: 5px 12px;
}
.job__go { flex: none; font-family: var(--font-display); font-weight: 600; color: var(--blue); transition: transform 0.2s; }
.job:hover .job__go { transform: translateX(3px); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 700; }

@media (max-width: 600px) {
  .job { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav, .nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-menu[hidden] { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .cards--3, .steps, .quotes, .pricing { grid-template-columns: 1fr; }
  .pricing--4 { grid-template-columns: repeat(2, 1fr); }
  .audience, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
}
@media (max-width: 600px) {
  .hero__card-stats { grid-template-columns: 1fr 1fr; }
  .benefits, .audience, .pricing--4 { grid-template-columns: 1fr; }
  .statband__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
  .cta__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .beam { animation: none; }
  .btn:hover, .card:hover { transform: none; }
}
