/* ===== RESET + BODY ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
html, body { overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #faf8f5;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.4s;
}
body.loaded { opacity: 1; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { text-wrap: pretty; }
img { display: block; max-width: 100%; }

/* ===== ROOT VARIABLES (shared palette) ===== */
:root {
  --black: #1a1a1a;
  --dark: #0a0a0a;
  --warm: #f5f0eb;
  --warm-dark: #3d3833;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --white: #ffffff;
  --accent: #0891b2;
  --accent-dark: #0e7490;
  --green: #059669;
  --green-950: #243d2e;
  --green-400: #34d399;
  --green-50: #ecfdf5;
  --whatsapp: #25d366;
  --max-w: 1280px;
}

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* ===== ARCA BANNER ===== */
.arca-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 16px 48px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d4a3e 50%, #1a1a1a 100%);
  color: #fff;
  font-size: 15px; line-height: 1.5; text-align: center;
}
.arca-banner p { margin: 0; }
.arca-banner strong { font-weight: 700; letter-spacing: 0.5px; }
.arca-banner .arca-arrow { display: inline-block; margin: 0 6px; opacity: 0.5; }
.arca-banner .arca-cta {
  display: inline-block; margin-left: 12px;
  padding: 5px 16px; border-radius: 6px;
  background: #fff; color: var(--dark);
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
}
.arca-banner .arca-cta:hover { opacity: 0.85; }
.arca-banner button {
  background: none; border: none; color: #fff; font-size: 22px;
  cursor: pointer; padding: 0 4px; opacity: 0.5; transition: opacity 0.2s;
  flex-shrink: 0;
}
.arca-banner button:hover { opacity: 1; }
.has-arca-banner .ws-nav { top: var(--arca-h, 52px); }

/* ===== NAV ===== */
.ws-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(245, 240, 235, 0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ws-nav-logo, .ws-nav-right { flex: 1; }
.ws-nav-right { justify-content: flex-end; }
.ws-nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.ws-nav-logo { display: flex; align-items: center; }
.ws-nav-logo img { height: 44px; }
.ws-nav-center { display: flex; gap: 32px; align-items: center; }
.ws-nav-center a { display: inline-flex; align-items: center; font-size: 13.5px; font-weight: 500; color: var(--gray-600); transition: color 0.2s; min-height: 44px; }
.ws-nav-center a:hover { color: var(--dark); }
.ws-nav-right { display: flex; gap: 12px; align-items: center; }
.ws-nav-login { font-size: 13.5px; font-weight: 500; color: var(--dark); padding: 11px 20px; border: 1.5px solid var(--gray-300); border-radius: 8px; transition: border-color 0.2s; }
.ws-nav-login:hover { border-color: var(--dark); }
.ws-nav-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 500; color: #fff; background: var(--dark); padding: 11px 20px; border-radius: 8px; transition: background 0.2s; }
.ws-nav-cta svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }
.ws-nav-cta:hover { background: #333; }

.ws-hamburger { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 28px; flex-direction: column; justify-content: center; gap: 5px; }
.ws-hamburger span { display: block; width: 100%; height: 1.5px; background: var(--dark); border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.ws-hero {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  justify-content: center;
  padding-top: 96px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.ws-hero-wrapper {
  background: #faf8f5;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.ws-hero-text {
  padding: 80px 0 80px 80px;
  max-width: 600px;
  position: relative;
  z-index: 3;
}
.ws-hero-label {
  font-size: 13px; font-weight: 500; color: var(--warm-dark); opacity: 0.6;
  margin-bottom: 24px;
  display: block;
}
.ws-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 28px;
}
.ws-hero-highlight {
  color: var(--dark);
}
.ws-hero-desc {
  font-size: 17px; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.ws-hero-ctas { display: flex; flex-direction: row; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-hero-main { padding: 18px 34px; font-size: 17px; font-weight: 600; }
.btn-hero-main svg { width: 24px; height: 24px; flex-shrink: 0; }
.btn-hero-sub { display: inline-flex; align-items: center; font-size: 15px; font-weight: 500; color: var(--gray-500); padding: 16px 28px; border-radius: 8px; border: 1.5px solid var(--gray-300); transition: border-color 0.2s, color 0.2s; }
.btn-hero-sub:hover { border-color: var(--dark); color: var(--dark); }

.ws-hero-visual {
  position: relative;
  height: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile notification cards */
.ws-hero-notifs { display: none; }

/* Aurora canvas */
.ws-hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ws-hero-aurora canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ws-hero-grain { display: none; }

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -15%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 10%); }
  80% { transform: translate(3%, -20%); }
  90% { transform: translate(-10%, 5%); }
}

.ws-hero-phone {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Notification stagger entrance */
.ws-hero-phone .impact-mockup .notif-card {
  opacity: 0;
  animation: notifEnter 0.5s ease-out both;
}
.ws-hero-phone .impact-mockup .notif-card:nth-of-type(1) { animation-delay: 0s; }
.ws-hero-phone .impact-mockup .notif-card:nth-of-type(2) { animation-delay: 0.6s; }
.ws-hero-phone .impact-mockup .notif-card:nth-of-type(3) { animation-delay: 1.2s; }
@keyframes notifEnter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ws-hero-phone .impact-mockup {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.ws-hero-phone .impact-mockup .iphone {
  width: 320px;
  height: 692px;
  transform: scale(0.82);
  transform-origin: center center;
  position: relative;
  border-radius: 50px;
  padding: 3px;
  background: linear-gradient(145deg, #5a5b5f 0%, #333438 40%, #1f2024 74%, #4e5054 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -1px 1px rgba(0, 0, 0, 0.3),
    0 12px 28px rgba(0, 0, 0, 0.25),
    0 28px 56px rgba(0, 0, 0, 0.15);
}
.ws-hero-phone .impact-mockup .side { position: absolute; z-index: 6; background: linear-gradient(180deg, #5a5a5f, #2c2d31, #57585d); }
.ws-hero-phone .impact-mockup .silent   { left: -2px; top: 92px;  width: 2px; height: 20px; border-radius: 2px 0 0 2px; }
.ws-hero-phone .impact-mockup .vol-up   { left: -2px; top: 128px; width: 2px; height: 38px; border-radius: 2px 0 0 2px; }
.ws-hero-phone .impact-mockup .vol-down { left: -2px; top: 176px; width: 2px; height: 38px; border-radius: 2px 0 0 2px; }
.ws-hero-phone .impact-mockup .power    { right:-2px; top: 146px; width: 2px; height: 84px; border-radius: 0 2px 2px 0; }
.ws-hero-phone .impact-mockup .bezel { width: 100%; height: 100%; background: #000; border-radius: 47px; padding: 3px; }
.ws-hero-phone .impact-mockup .screen {
  width: 100%; height: 100%; border-radius: 44px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #0e1a14 0%, #152a1e 40%, #1c3226 100%);
}
.ws-hero-phone .screen-wp { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ws-hero-phone .screen-wp-shape { position: absolute; border-radius: 50%; }
.ws-hero-phone .screen-wp-shape-1 { width: 380px; height: 380px; background: radial-gradient(ellipse at 40% 40%, rgba(120,180,140,0.25), rgba(80,140,100,0.05) 70%, transparent); top: -10%; left: -30%; border-radius: 45% 55% 50% 50%; }
.ws-hero-phone .screen-wp-shape-2 { width: 340px; height: 500px; background: radial-gradient(ellipse at 50% 50%, rgba(150,200,165,0.2), rgba(100,160,120,0.06) 60%, transparent); top: 10%; right: -40%; border-radius: 50% 50% 40% 60%; transform: rotate(-15deg); }
.ws-hero-phone .screen-wp-shape-3 { width: 300px; height: 400px; background: radial-gradient(ellipse at 50% 60%, rgba(100,155,120,0.2), rgba(70,120,85,0.05) 65%, transparent); bottom: -5%; left: -15%; border-radius: 55% 45% 50% 50%; transform: rotate(10deg); }
.ws-hero-phone .screen-wp-shape-4 { width: 250px; height: 350px; background: radial-gradient(ellipse at 40% 50%, rgba(140,190,155,0.16), transparent 65%); bottom: 5%; right: -20%; border-radius: 50% 50% 45% 55%; transform: rotate(-25deg); }
.ws-hero-phone .impact-mockup .screen::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.035;
}
.ws-hero-phone .impact-mockup .island { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 112px; height: 30px; border-radius: 16px; background: #000; z-index: 20; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); }
.ws-hero-phone .impact-mockup .iphone-status { position: relative; z-index: 10; padding-top: 0; height: 44px; color: #f7fbff; text-shadow: 0 1px 3px rgba(0,0,0,0.3); font-weight: 600; letter-spacing: 0.18px; }
.ws-hero-phone .impact-mockup .status-inner { display: grid; grid-template-columns: 1fr 112px 1fr; align-items: center; height: 44px; width: 100%; padding: 0 7px; }
.ws-hero-phone .impact-mockup .status-spacer { grid-column: 1; }
.ws-hero-phone .impact-mockup .status-right { grid-column: 3; justify-self: start; margin-left: 10px; margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.ws-hero-phone .impact-mockup .signal { display: flex; align-items: flex-end; gap: 1.1px; height: 9px; }
.ws-hero-phone .impact-mockup .signal span { width: 1.9px; border-radius: 1px; background: #f7fbff; }
.ws-hero-phone .impact-mockup .signal span:nth-child(1) { height: 2.8px; }
.ws-hero-phone .impact-mockup .signal span:nth-child(2) { height: 4.9px; }
.ws-hero-phone .impact-mockup .signal span:nth-child(3) { height: 6.9px; }
.ws-hero-phone .impact-mockup .signal span:nth-child(4) { height: 9px; }
.ws-hero-phone .impact-mockup .wifi svg { width: 12px; height: 10px; display: block; }
.ws-hero-phone .impact-mockup .battery { position: relative; width: 26px; height: 13px; border-radius: 3.5px; border: 1.2px solid rgba(247,251,255,0.96); color: rgba(247,251,255,0.97); font-size: 7px; font-weight: 700; letter-spacing: -0.1px; display: flex; align-items: center; justify-content: center; text-shadow: none; background: rgba(247,251,255,0.12); padding-right: 0.5px; }
.ws-hero-phone .impact-mockup .battery::before { content: ""; position: absolute; left: 1.5px; top: 1.3px; width: 20px; height: 8px; border-radius: 2.4px; background: rgba(247,251,255,0.18); z-index: -1; }
.ws-hero-phone .impact-mockup .battery::after { content: ""; position: absolute; right: -2.5px; top: 3.6px; width: 1.8px; height: 4.8px; border-radius: 0 1px 1px 0; background: rgba(247,251,255,0.96); }
.ws-hero-phone .impact-mockup .clock { position: relative; z-index: 10; margin-top: 8px; text-align: center; color: #f7fbff; }
.ws-hero-phone .impact-mockup .lock-icon { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 5px; opacity: 0.95; }
.ws-hero-phone .impact-mockup .lock-icon svg { width: 14px; height: 14px; }
.ws-hero-phone .impact-mockup .date { font-size: 15px; font-weight: 590; opacity: 0.98; letter-spacing: 0.1px; margin-top: 6px; text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.ws-hero-phone .impact-mockup .hour {
  font-size: 92px; line-height: 0.9; font-weight: 700; letter-spacing: -1.5px;
  color: rgba(255,255,255,0.50);
  text-shadow: 0 4px 12px rgba(0,0,0,0.15);
  -webkit-font-smoothing: antialiased;
}
.ws-hero-phone .impact-mockup .notifications { position: absolute; left: 6px; right: 6px; top: 208px; display: flex; flex-direction: column; gap: 6px; z-index: 15; }
.ws-hero-phone .impact-mockup .notif-topbar { display: flex; align-items: center; justify-content: space-between; padding: 0 12px 2px; margin-bottom: 2px; }
.ws-hero-phone .impact-mockup .notif-brand { font-size: 14.5px; font-weight: 500; color: rgba(247,251,255,0.98); letter-spacing: 0.2px; text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.ws-hero-phone .impact-mockup .close-btn { border: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; line-height: 1; font-weight: 300; color: rgba(244,249,253,0.98); background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.ws-hero-phone .impact-mockup .notif-card {
  border-radius: 19px; padding: 8px 10px; display: flex; align-items: center; gap: 7px; position: relative;
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(22px) saturate(1.15); -webkit-backdrop-filter: blur(22px) saturate(1.15);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.ws-hero-phone .impact-mockup .notif-card,
.ws-hero-phone .impact-mockup .notif-content,
.ws-hero-phone .impact-mockup .notif-topbar { text-align: left; }
.ws-hero-phone .impact-mockup .avatar-wrap { position: relative; width: 32px; height: 32px; flex-shrink: 0; }
.ws-hero-phone .impact-mockup .avatar { width: 32px; height: 32px; border: none; display: flex; align-items: center; justify-content: center; background: transparent; }
.ws-hero-phone .impact-mockup .avatar img { width: 100%; height: 100%; object-fit: contain; }
.ws-hero-phone .impact-mockup .wa-badge { position: absolute; right: -2px; bottom: -2px; width: 13px; height: 13px; border-radius: 50%; background: #21c063; border: 1px solid rgba(255,255,255,0.8); display: grid; place-items: center; color: #fff; box-shadow: 0 1px 4px rgba(5,24,12,0.35); }
.ws-hero-phone .impact-mockup .wa-badge svg { width: 7px; height: 7px; }
.ws-hero-phone .impact-mockup .notif-content { min-width: 0; flex: 1; }
.ws-hero-phone .impact-mockup .notif-sender { font-size: 13.5px; font-weight: 600; color: #fff; line-height: 1.2; letter-spacing: 0.1px; }
.ws-hero-phone .impact-mockup .notif-msg { font-size: 14px; line-height: 1.32; color: rgba(239,246,251,0.96); margin: 0; letter-spacing: 0.03px; }
.ws-hero-phone .impact-mockup .notif-time { font-size: 10px; color: rgba(241,247,252,0.55); font-weight: 500; text-transform: lowercase; white-space: nowrap; flex-shrink: 0; align-self: flex-start; margin-top: 2px; }
.ws-hero-phone .impact-mockup .bottom-icons { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 32px; z-index: 10; }
.ws-hero-phone .impact-mockup .bottom-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); display: grid; place-items: center; }
.ws-hero-phone .impact-mockup .bottom-btn svg { width: 16px; height: 16px; color: rgba(255,255,255,0.85); }
.ws-hero-phone .impact-mockup .home-indicator { position: absolute; left: 50%; transform: translateX(-50%); bottom: 8px; width: 122px; height: 4.5px; border-radius: 3px; background: rgba(255,255,255,0.28); z-index: 20; }

/* ===== BUTTONS ===== */
.btn-pill-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--dark);
  color: #fff;
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  transition: opacity 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-pill-dark svg, .btn-pill-white svg, .btn-pill-outline svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-pill-dark:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-pill-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: var(--dark);
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  transition: background 0.2s; border: none; cursor: pointer;
}
.btn-pill-white:hover { background: var(--gray-100); }
.btn-pill-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  border: 1.5px solid var(--gray-300);
  transition: background 0.2s, color 0.2s; cursor: pointer;
}
.btn-pill-outline:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ===== EDITORIAL SPLIT SECTIONS ===== */
.ws-split-edit {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.ws-split-edit-cta { display: none; }
.ws-split-edit-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.ws-split-edit-text .section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.ws-split-edit-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}
.ws-split-edit-text h2 em { font-style: italic; }
.ws-split-edit-text > p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.ws-channel-block { margin-top: 8px; margin-bottom: 16px; }
.ws-channel-block-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-400); margin-bottom: 12px; display: block; }
.ws-channel-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.ws-channel-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 10px; border: 1px solid var(--gray-200); background: var(--gray-50, #fafaf8); font-size: 13px; font-weight: 500; color: var(--gray-600); transition: border-color .2s, background .2s; }
.ws-channel-pill:hover { border-color: var(--gray-300); background: var(--gray-100); }
.ws-channel-pill svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gray-500); }
.ws-split-edit-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.ws-card-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 540px;
}

/* ===== DIA A DIA CAROUSEL ===== */
.ws-diaadia-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.ws-diaadia-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -48px;
  left: 0;
  right: 0;
}
.ws-diaadia-arrows button {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.ws-diaadia-arrows button:hover { border-color: var(--gray-400); }
.ws-diaadia-arrows button svg { width: 14px; height: 14px; color: var(--gray-500); }
.ws-diaadia-swipe-hint { display: none; text-align: center; font-size: .7rem; color: var(--gray-400); margin-top: 8px; }
.ws-diaadia-slides-wrap { display: grid; }
.ws-diaadia-slides-wrap > .ws-diaadia-slide { grid-area: 1 / 1; opacity: 0; pointer-events: none; transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: scale(0.97) translateY(6px); display: flex; }
.ws-diaadia-slides-wrap > .ws-diaadia-slide.active { transform: scale(1) translateY(0); }
.ws-diaadia-slides-wrap > .ws-diaadia-slide.active { opacity: 1; pointer-events: auto; }
.ws-chat-card, .ws-email-card { display: flex; flex-direction: column; height: 100%; }
.ws-chat-body, .ws-email-content { flex: 1; }

/* Chat card — WhatsApp style (light) */
.ws-chat-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  width: 100%;
}
.ws-card-wp, .ws-card-wp-shape { display: none; }
.ws-chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.04);
  background: rgba(5,150,105,0.03);
}
.ws-chat-head-icon {
  width: 34px; height: 34px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.ws-chat-head-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ws-chat-head-meta { display: flex; flex-direction: column; gap: 2px; }
.ws-chat-head-name { font-size: .72rem; font-weight: 700; color: var(--black); line-height: 1.1; }
.ws-chat-head-sub { font-size: .6rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; line-height: 1.1; }
.ws-chat-head-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--whatsapp); }
.ws-chat-tag {
  margin-left: auto; font-size: .58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; padding: 3px 8px; border-radius: 5px;
  background: rgba(5,150,105,0.08); color: var(--green);
  white-space: nowrap;
}
.ws-chat-head-back { color: var(--gray-400); display: flex; align-items: center; margin-right: -2px; }
.ws-chat-head-back svg { width: 18px; height: 18px; }
.ws-chat-head-actions { display: flex; align-items: center; gap: 14px; color: var(--gray-400); }
.ws-chat-head-actions svg { width: 18px; height: 18px; }
.ws-chat-body { padding: 12px 16px; display: flex; flex-direction: column; gap: 6px; }
.ws-chat-body::before { display: none; }
.ws-chat-b {
  max-width: 90%; padding: 9px 13px; border-radius: 14px;
  font-size: .76rem; line-height: 1.5;
}
.ws-chat-b-time { display: block; text-align: right; font-size: .56rem; color: rgba(0,0,0,0.3); margin-top: 3px; }
.ws-chat-b.user .ws-chat-b-time::after { display: none; }
.ws-chat-b.user { align-self: flex-end; background: #dcf8c6; border-bottom-right-radius: 4px; }
.ws-chat-b.bond { align-self: flex-start; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-bottom-left-radius: 4px; }
.ws-chat-b.proactive {
  align-self: flex-start; background: linear-gradient(135deg, var(--green-50), #d1fae5);
  border: 1px solid rgba(5,150,105,0.12); border-bottom-left-radius: 4px;
}
.ws-chat-b.proactive .pro-label {
  display: flex; align-items: center; gap: 4px;
  font-size: .62rem; font-weight: 600; color: var(--green); margin-bottom: 3px;
}
.ws-chat-b.proactive .pro-label svg { width: 11px; height: 11px; }
.ws-chat-b strong { font-weight: 600; }
.ws-chat-dc {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px; padding: 8px; margin: 5px 0;
}
.ws-chat-dr { display: flex; justify-content: space-between; font-size: .7rem; padding: 2px 0; color: var(--gray-500); }
.ws-chat-dr:last-child:not(:only-child) { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 5px; margin-top: 3px; font-weight: 600; color: var(--black); }
.ws-chat-dr span:last-child { font-family: monospace; font-size: .68rem; }
.ws-chat-stat { text-align: center; background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; padding: 10px; margin-top: 5px; }
.ws-chat-stat-num { font-family: monospace; font-size: 1.3rem; font-weight: 600; color: var(--green); display: block; }
.ws-chat-stat-cap { font-size: .65rem; color: var(--gray-400); }
.ws-chat-attach { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; padding: 6px 12px; background: rgba(5,150,105,0.08); border: 1px solid rgba(5,150,105,0.15); border-radius: 8px; font-size: .7rem; color: var(--green); font-weight: 500; }
.ws-chat-attach svg { stroke: var(--green); flex-shrink: 0; }
.ws-chat-input-bar { display: flex; align-items: center; gap: 6px; padding: 5px 6px; background: rgba(0,0,0,0.02); border-top: 1px solid rgba(0,0,0,0.04); }
.ws-chat-input-plus { display: flex; align-items: center; justify-content: center; color: var(--gray-400); }
.ws-chat-input-plus svg { width: 20px; height: 20px; }
.ws-chat-input-pill { flex: 1; display: flex; align-items: center; gap: 8px; padding: 7px 12px; background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 20px; color: var(--gray-400); font-size: .72rem; }
.ws-chat-input-pill svg { width: 16px; height: 16px; color: var(--gray-400); flex-shrink: 0; }
.ws-chat-input-pill .ws-chat-input-cam { margin-left: auto; }
.ws-chat-input-mic { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--gray-400); }
.ws-chat-input-mic svg { width: 18px; height: 18px; }
.ws-diaadia-counter { text-align: center; font-size: 11px; color: var(--gray-400); min-width: 32px; }

/* ===== SERVICOS GLASS CARD ===== */
.ws-servicos-card { position: relative; max-width: 540px; width: 100%; background: #1a2b22; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.3); z-index: 1; }
.ws-servicos-top { padding: 24px 28px 20px; }
.ws-servicos-top h4 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.ws-servicos-top > p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; margin-bottom: 18px; }
.ws-servicos-pill-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; color: #fff; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 6px; }
.ws-servicos-pill-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.ws-servicos-items { display: flex; flex-direction: column; gap: 14px; }
.ws-servicos-item { display: flex; gap: 12px; align-items: center; }
.ws-servicos-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: rgba(5,150,105,0.12); display: flex; align-items: center; justify-content: center; }
.ws-servicos-icon svg { color: var(--green); width: 16px; height: 16px; }
.ws-servicos-item h5 { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 2px; }
.ws-servicos-item p { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.ws-servicos-strip { border-top: 1px solid rgba(255,255,255,0.06); padding: 12px 28px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.ws-servicos-strip-label { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; width: 100%; text-align: center; margin-bottom: 2px; }
.ws-servicos-strip-pill { font-size: 10px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 6px; }
.ws-servicos-creds { border-top: 1px solid rgba(255,255,255,0.06); padding: 14px 28px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ws-servicos-creds-label { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; }
.ws-servicos-creds-logos { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ws-servicos-creds-logos div { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); }
.ws-servicos-creds-logos img { height: 14px; object-fit: contain; opacity: 0.85; }
.ws-servicos-creds-logos div:hover img { opacity: 1; }
.ws-servicos-creds-logos span { font-size: 10px; color: rgba(255,255,255,0.45); white-space: nowrap; }

/* ===== SHOWCASE SPLIT ===== */
.ws-showcase {
  margin: 120px auto;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ws-showcase-text {
  background:
    radial-gradient(ellipse 80% 80% at 10% 15%, rgba(120,180,140,0.28), rgba(80,140,100,0.06) 60%, transparent 100%),
    radial-gradient(ellipse 70% 90% at 85% 20%, rgba(150,200,165,0.24), rgba(100,160,120,0.07) 55%, transparent 100%),
    radial-gradient(ellipse 75% 85% at 20% 85%, rgba(100,155,120,0.24), rgba(70,120,85,0.06) 60%, transparent 100%),
    radial-gradient(ellipse 65% 75% at 80% 80%, rgba(140,190,155,0.20), transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(130,175,140,0.12), transparent 70%),
    linear-gradient(180deg, #0e1a14 0%, #152a1e 40%, #1c3226 100%);
  color: #fff;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.ws-showcase-text::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.035;
}
.ws-showcase-text > * { position: relative; z-index: 2; }
.ws-showcase-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ws-showcase-text p {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 0;
}
.ws-showcase-text .btn-pill-white {
  margin-top: auto;
  margin-bottom: -8px;
  font-size: 17px;
  gap: 10px;
  padding: 16px 36px;
}

/* ===== REVERSE SPLIT ===== */
.ws-split-edit--reverse {
  direction: rtl;
}
.ws-split-edit--reverse > * {
  direction: ltr;
}

/* ===== STEPS ===== */
.ws-steps { padding: 120px 0; }
.ws-steps-header { margin-bottom: 64px; }
.ws-steps-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -0.02em;
}
.ws-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
}
.ws-step {
  border-top: 2px solid var(--dark);
  padding-top: 24px;
}
.ws-step-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 12px;
}
.ws-step h4 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.ws-step p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

/* ===== FAQ ===== */
.ws-faq { padding: 120px 0; background: var(--gray-50); }
.ws-faq-header { margin-bottom: 48px; }
.ws-faq-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
}
.ws-faq-list { max-width: 720px; }
.ws-faq-item { border-bottom: 1px solid var(--gray-200); }
.ws-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; background: none; border: none;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500;
  color: var(--dark); cursor: pointer; text-align: left;
}
.ws-faq-q svg { width: 20px; height: 20px; min-width: 20px; stroke: var(--gray-400); transition: transform 0.3s; }
.ws-faq-item.open .ws-faq-q svg { transform: rotate(180deg); }
.ws-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease, padding-bottom 0.3s ease; padding-bottom: 0; }
.ws-faq-a > p { overflow: hidden; }
.ws-faq-item.open .ws-faq-a { grid-template-rows: 1fr; padding-bottom: 24px; }
.ws-faq-a p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* ===== CTA ===== */
.ws-cta {
  padding: 120px 0;
  background: var(--warm);
  text-align: center;
}
.ws-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; line-height: 1.08;
  color: var(--dark);
  margin-bottom: 16px;
}
.ws-cta p { font-size: 17px; color: var(--gray-500); margin-bottom: 40px; }

/* ===== FOOTER ===== */
.ws-footer { padding: 48px 0; border-top: 1px solid var(--gray-200); }
.ws-footer-inner { display: flex; flex-direction: column; gap: 32px; }
.ws-footer-top { display: flex; justify-content: space-between; align-items: center; }
.ws-footer-logo { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 600; color: var(--dark); letter-spacing: -0.02em; }
.ws-footer-links { display: flex; gap: 28px; }
.ws-footer-links a { font-size: 13px; color: var(--gray-500); transition: color 0.2s; min-height: 44px; display: inline-flex; align-items: center; }
.ws-footer-links a:hover { color: var(--dark); }
.ws-footer-bottom { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--gray-200); padding-top: 24px; }
.ws-footer-legal { display: flex; flex-direction: column; gap: 4px; }
.ws-footer-address { font-size: 12px; color: var(--gray-400); line-height: 1.5; }
.ws-footer-copy { font-size: 12px; color: var(--gray-400); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 99; transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== MOBILE MENU ===== */
.ws-mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); z-index: 99; padding: 32px 24px; flex-direction: column; gap: 4px; }
.ws-mobile.open { display: flex; }
.ws-mobile a { font-size: 18px; font-weight: 500; color: var(--dark); padding: 16px 0; border-bottom: 1px solid var(--gray-100); }

/* ===== SCROLL ANIM ===== */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.anim.vis { opacity: 1; transform: none; }
.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }

/* ===== FOUNDERS + INVESTORS ===== */
/* Toggles: sit directly below the dark .ws-servicos-card, inside the split visual column */
.founders-toggles { display: flex; justify-content: center; align-items: center; gap: 16px; padding: 20px 0; text-align: center; }
.accordion-pair-sep { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }
.team-accordion-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-600); background: none; border: 0; cursor: pointer;
  padding: 8px 4px; transition: color 0.2s;
}
.team-accordion-toggle:hover { color: var(--dark); }
.team-accordion-toggle svg { transition: transform 0.2s; }
.team-accordion-toggle[aria-expanded="true"] { color: var(--green); }
.team-accordion-toggle[aria-expanded="true"] svg { transform: rotate(90deg); }

/* Band: full-width light strip that only appears when a panel is open */
.founders-band { width: 100vw; margin-left: calc(50% - 50vw); grid-column: 1 / -1; background: transparent; border-top: 1px solid transparent; border-bottom: 1px solid transparent; transition: background-color 0.35s ease, border-color 0.35s ease; }
.founders-band.is-open { background: #fff; border-top-color: var(--gray-200); border-bottom-color: var(--gray-200); }
.founders-band-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; transition: padding 0.35s ease; }
.accordion-pair-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.founders-band.is-open .founders-band-inner { padding-top: 20px; padding-bottom: 20px; }
/* Tighten spacing between toggles and founders panel when open (only in por-que-bond section) */
#por-que-bond .ws-split-edit-visual { padding-bottom: 0; }

.team-accordion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 0; text-align: left; }
.team-bio h4 { font-family: Sora, sans-serif; font-size: 18px; font-weight: 600; color: var(--dark); margin: 0 0 4px; }
.team-bio-role { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.team-bio p { font-size: 14px; line-height: 1.55; color: var(--gray-600); margin: 0; }
.bio-dots { display: none; justify-content: center; gap: 8px; padding-top: 16px; }
.bio-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: background 0.2s; }
.bio-dot.active { background: var(--green); }
.investors-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; padding: 0; }
.inv-card-light { display: inline-flex; align-items: center; gap: 10px; }
.inv-card-light img { height: 26px; object-fit: contain; }
.inv-card-light strong { font-family: Sora, sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); }
.inv-card-light span { font-size: 11px; line-height: 1.4; color: var(--gray-500); text-align: left; }
.inv-sep-light { display: inline-block; width: 1px; height: 30px; background: var(--gray-200); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .ws-nav { padding: 0 32px; }
  .ws-nav-center { gap: 20px; }
  .ws-nav-center a { font-size: 13px; }
  .ws-nav-login, .ws-nav-cta { font-size: 13px; padding: 10px 16px; }
}
@media (max-width: 1080px) {
  .ws-nav { padding: 0 24px; }
  .ws-nav-center, .ws-nav-right { display: none; }
  .ws-hamburger { display: flex; }
}
@media (max-width: 960px) {
  .container { padding: 0 24px; }

  .ws-hero { grid-template-columns: 1fr; min-height: 75vh; min-height: 75dvh; align-content: center; }
  .ws-hero-text { display: contents; }
  .ws-hero-label { display: none; }
  .ws-hero h1 { font-size: 38px; margin-bottom: 12px; text-align: center; padding: 0 24px; padding-top: 0; order: 1; }
  .ws-hero-desc { display: none; }
  .ws-hero-notifs {
    display: flex; flex-direction: column; gap: 8px;
    order: 2; padding: 16px 16px 8px;
  }
  .ws-hero-ctas { order: 3; flex-direction: column; align-items: center; padding: 16px 24px 24px; }
  .btn-hero-sub { font-size: 13px; padding: 10px 24px; }
  .ws-hero-visual { display: none; }
  .ws-hero-notif {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    opacity: 0;
    animation: notifEnter 0.5s ease-out both;
  }
  .ws-hero-notif:nth-child(1) { animation-delay: 0s; }
  .ws-hero-notif:nth-child(2) { animation-delay: 0.6s; }
  .ws-hero-notif:nth-child(3) { animation-delay: 1.2s; }
  .ws-hero-notif-header {
    display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
  }
  .ws-hero-notif-icon {
    width: 16px; height: 16px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  }
  .ws-hero-notif-icon img { width: 100%; height: 100%; object-fit: cover; }
  .ws-hero-notif-sender {
    font-size: 13px; font-weight: 600; color: var(--dark); flex: 1;
  }
  .ws-hero-notif-time {
    font-size: 11px; color: var(--gray-500); font-weight: 500;
  }
  .ws-hero-notif-msg {
    font-size: 14px; line-height: 1.4; color: var(--gray-700); margin: 0;
  }

  .ws-split-edit { grid-template-columns: 1fr; min-height: auto; overflow: hidden; }
  .ws-split-edit-text { padding: 32px 20px 16px; }
  .ws-split-edit-text h2 { font-size: 28px; overflow-wrap: break-word; word-break: break-word; max-width: 100%; }
  .ws-split-edit-visual { min-height: auto; margin: 0 20px; padding: 0; }
  .ws-servicos-card { max-width: 100%; }
  .ws-chat-card, .ws-email-card { max-width: 100%; }
  .ws-split-edit--reverse { direction: ltr; }
  .ws-split-edit-text { order: 1; }
  .ws-split-edit-visual { order: 2; }
  .ws-split-edit .founders-band { order: 3; }
  .ws-split-edit-cta { display: block; order: 4; padding: 20px 20px 0; text-align: center; }
  .ws-split-edit-text .ws-desktop-cta { display: none; }

  /* Dia a dia mobile */
  .ws-split-edit-visual.ws-diaadia-parent { margin: 0; padding: 0; overflow: visible; }
  .ws-diaadia-visual { width: 100%; max-width: 100vw; overflow: hidden; padding: 0; }
  .ws-diaadia-slides-wrap {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 20px 28px;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 100%;
  }
  .ws-diaadia-slides-wrap::-webkit-scrollbar { display: none; }
  .ws-diaadia-slides-wrap > .ws-diaadia-slide {
    flex: 0 0 82vw;
    scroll-snap-align: center;
    position: relative;
    opacity: 1;
    pointer-events: auto;
  }
  .ws-chat-card, .ws-email-card { max-width: 100%; height: 100%; display: flex; flex-direction: column; }
  .ws-chat-body, .ws-email-content { flex: 1; }
  .ws-diaadia-slides-wrap > .ws-diaadia-slide { display: flex; }
  .ws-diaadia-arrows { display: none; }
  .ws-diaadia-swipe-hint {
    display: block;
    text-align: center;
    font-size: .7rem;
    color: var(--green);
    letter-spacing: .02em;
    animation: diaadiaSwipeHint 2s ease-in-out infinite;
  }
  @keyframes diaadiaSwipeHint {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(8px); }
  }

  .ws-servicos-creds-logos span { display: none; }
  .ws-servicos-creds-logos { max-width: 240px; }

  /* ---- Timeline steps (mobile) ---- */
  .ws-steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-left: 48px;
  }
  .ws-steps-grid::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: var(--gray-200);
  }
  .ws-step {
    border-top: none;
    padding-top: 0;
    position: relative;
    padding-bottom: 24px;
  }
  .ws-step:last-child {
    padding-bottom: 0;
  }
  .ws-step-num {
    position: absolute;
    left: -48px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 0;
  }
  .ws-step h4 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .ws-step p {
    font-size: 14px;
    line-height: 1.55;
  }
  .ws-steps { padding: 64px 0; }
  .ws-faq { padding: 64px 0; }
  .ws-cta { padding: 64px 0; }
  .ws-steps-header h2 { font-size: 28px; }
  .ws-faq-header h2 { font-size: 28px; }
  .ws-cta h2 { font-size: 28px; }
  .ws-cta p { font-size: 16px; }
  .ws-footer-top { flex-direction: column; gap: 16px; text-align: center; }
  .ws-footer-links { flex-wrap: wrap; justify-content: center; }
  .ws-footer-bottom { flex-direction: column; gap: 12px; text-align: center; align-items: center; }

  .ws-showcase { margin: 40px 24px; }
  .ws-showcase { grid-template-columns: 1fr; }
  .ws-showcase-text { padding: 32px 24px; text-align: center; align-items: center; }
  .ws-showcase-text h2 { font-size: 28px; margin-bottom: 16px; }
  .ws-showcase-text .btn-pill-white { padding: 10px 20px; font-size: 13px; margin-top: auto; }
}
@media (max-width: 960px) {
  /* FOUNDERS + INVESTORS — mobile */
  .founders-toggles { flex-direction: column; gap: 8px; padding: 16px 16px 20px; }
  .accordion-pair-sep { display: none; }
  .founders-band-inner { padding: 0 16px; }
  .founders-band.is-open .founders-band-inner { padding-top: 20px; padding-bottom: 20px; }
  .team-accordion-grid { grid-template-columns: 1fr; gap: 20px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .team-bio { flex: 0 0 85%; scroll-snap-align: center; background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 24px; }
  .bio-dots { display: flex; }
  .investors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .inv-sep-light { display: none; }
  .inv-card-light { flex-direction: column; text-align: center; gap: 4px; }
  .inv-card-light:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .inv-card-light img { height: 22px; }
  .inv-card-light span { font-size: 10px; text-align: center; }
}
@media (min-width: 415px) and (max-width: 960px) {
  .ws-hero h1 { font-size: 42px; }
}
@media (max-width: 380px) {
  .ws-hero h1 { font-size: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .anim { opacity: 1; transform: none; }
}