/* =============================================================
   Eliane Käfer — Website UI kit styles
   ============================================================= */

/* HEADER ---------------------------------------------------- */
.ek-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  background: transparent;
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.ek-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(200,168,104,0.15);
}
.ek-header-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; gap: 24px;
}
.ek-brand { display: flex; align-items: center; border: none !important; }
.ek-brand img { height: 44px; width: auto; display: block; }
.ek-nav {
  display: flex; gap: 28px; margin-left: auto; align-items: center;
}
.ek-nav a {
  font-size: 15px; font-weight: 500; color: var(--navy-700);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.ek-nav a:hover { color: var(--gold-700); border-bottom-color: var(--gold-400); }
.ek-nav-blog { color: var(--gold-700) !important; font-weight: 600; }
.ek-menu-toggle {
  display: none; background: none; border: none;
  width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  color: var(--navy-700); cursor: pointer; border-radius: 8px;
}
.ek-menu-toggle:hover { background: var(--gold-100); }
.ek-menu-toggle i, .ek-menu-toggle svg { width: 24px; height: 24px; }
.ek-mobile-nav {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 12px 24px 20px;
  background: white; border-top: 1px solid var(--border-soft);
}
.ek-mobile-nav[hidden] { display: none !important; }
.ek-mobile-nav a { padding: 12px 0; font-size: 16px; color: var(--navy-700); }

/* BUTTONS --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 8px; border: none;
  cursor: pointer; text-decoration: none !important;
  transition: all 200ms var(--ease-out);
  letter-spacing: -0.005em; line-height: 1;
}
.btn i, .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary {
  background: var(--gradient-gold); color: var(--navy-800) !important;
  box-shadow: var(--shadow-sm); border: none !important;
}
.btn-primary:hover { box-shadow: var(--shadow-gold-glow); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }
.btn-secondary {
  background: transparent; color: var(--navy-700) !important;
  border: 1px solid var(--navy-600) !important;
}
.btn-secondary:hover { background: var(--navy-600); color: var(--neutral-25) !important; }

/* CONTAINER + SECTION -------------------------------------- */
.ek-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.ek-section { padding: var(--section-y) 0; }

/* HERO ====================================================== */
.ek-hero {
  position: relative;
  padding: clamp(88px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}

/* Background layers */
.ek-hero-bg-wrap { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.ek-hero-bg-base { position: absolute; inset: 0; background: var(--neutral-25); }
.ek-hero-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 22%, rgba(200,168,104,0.18), transparent 60%),
    radial-gradient(ellipse 55% 45% at 10% 80%, rgba(30,42,71,0.05), transparent 70%);
}
.ek-hero-bg-paper {
  position: absolute; inset: 0;
  background: var(--neutral-25);
  background-image:
    linear-gradient(to right, rgba(200,168,104,0.07) 1px, transparent 1px);
  background-size: 88px 100%;
}
.ek-hero-bg-navy {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200,168,104,0.16), transparent 65%),
    linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.ek-hero--bg-navy-editorial { color: var(--neutral-25); }
.ek-hero--bg-navy-editorial .ek-hero-title { color: var(--neutral-25); }
.ek-hero--bg-navy-editorial .ek-lead { color: var(--neutral-200); }
.ek-hero--bg-navy-editorial .ek-eyebrow-kicker { color: var(--gold-300); }
.ek-hero--bg-navy-editorial .ek-eyebrow-kicker .rule { background: var(--gold-400); }
.ek-hero--bg-navy-editorial .ek-hero-trust { color: var(--neutral-300); }
.ek-hero--bg-navy-editorial .ek-hero-trust i { color: var(--gold-300); }
.ek-hero--bg-navy-editorial .btn-ghost-navy { color: var(--neutral-25) !important; border-color: rgba(255,255,255,0.25) !important; }
.ek-hero--bg-navy-editorial .btn-ghost-navy:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-400) !important; }
.ek-hero--bg-navy-editorial .ek-portrait-shape { background: radial-gradient(circle at 50% 30%, rgba(200,168,104,0.35), rgba(200,168,104,0.05) 70%); }
.ek-hero--bg-navy-editorial .ek-hero-mini-stat { border-top-color: rgba(200,168,104,0.25); }
.ek-hero--bg-navy-editorial .ek-hero-mini-stat .n { color: var(--gold-300); }
.ek-hero--bg-navy-editorial .ek-hero-mini-stat .l { color: var(--neutral-300); }
.ek-hero--bg-navy-editorial .ek-hero-scroll-label { color: var(--neutral-300); }
.ek-hero--bg-navy-editorial .ek-hero-scroll-line { background: var(--gold-400); }

.ek-hero-bg-grain {
  position: absolute; inset: 0; opacity: 0.5;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(32,30,26,0.05) 1px, transparent 0);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

/* Eyebrow */
.ek-eyebrow-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 28px;
}
.ek-eyebrow-kicker .rule { width: 40px; height: 1px; background: var(--gold-400); }

/* Title */
.ek-hero-title {
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 28px;
  font-weight: 500;
  color: var(--navy-800);
  text-wrap: balance;
}
.ek-hero-title em {
  font-style: italic; color: var(--gold-700);
  font-weight: 400; font-family: var(--font-display);
  display: inline;
}
.ek-hero-title-last { display: inline-block; }

/* Lead */
.ek-hero .ek-lead {
  font-size: clamp(16.5px, 1.25vw, 19px);
  color: var(--fg2); line-height: 1.6;
  max-width: 52ch; margin: 0 0 36px;
}

/* CTAs */
.ek-hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px; align-items: center;
}
.btn-ghost-navy {
  background: transparent;
  color: var(--navy-800) !important;
  border: 1px solid var(--navy-600) !important;
}
.btn-ghost-navy:hover {
  background: var(--navy-800); color: var(--neutral-25) !important;
  border-color: var(--navy-800) !important;
}
.btn-ghost-navy:hover i { transform: translateX(2px); }
.btn-ghost-navy i { transition: transform 180ms var(--ease-out); }

/* Trust row */
.ek-hero-trust {
  display: flex; gap: 14px; align-items: center;
  font-size: 13.5px; color: var(--fg3); flex-wrap: wrap;
  letter-spacing: 0.01em;
}
.ek-hero-trust > div { display: inline-flex; align-items: center; gap: 7px; }
.ek-hero-trust i { width: 15px; height: 15px; color: var(--gold-600); }
.ek-hero-trust-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-400); display: inline-block;
}

/* Grid layouts */
.ek-hero-grid {
  position: relative;
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.ek-hero--split .ek-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
}
.ek-hero--split .ek-hero-portrait { max-width: 420px; margin-left: auto; }
.ek-hero--split .ek-hero-mini-stats { max-width: 420px; margin-left: auto; }
.ek-hero--editorial .ek-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
}
.ek-hero--editorial .ek-hero-content { padding-bottom: 40px; }
.ek-hero--editorial .ek-hero-portrait-col { transform: translateY(40px); }
.ek-hero--centered .ek-hero-grid {
  grid-template-columns: 1fr; text-align: center; gap: 48px;
  max-width: 1000px; margin: 0 auto;
}
.ek-hero--centered .ek-hero-content { display: flex; flex-direction: column; align-items: center; }
.ek-hero--centered .ek-hero-title { max-width: 18ch; margin-left: auto; margin-right: auto; }
.ek-hero--centered .ek-lead { margin-left: auto; margin-right: auto; text-align: center; }
.ek-hero--centered .ek-hero-ctas { justify-content: center; }
.ek-hero--centered .ek-hero-trust { justify-content: center; }
.ek-hero--centered .ek-hero-portrait { margin: 0 auto; max-width: 440px; }

/* PORTRAIT */
.ek-hero-portrait-col {
  position: relative;
  display: flex; flex-direction: column; gap: 32px;
}
.ek-hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  isolation: isolate;
}

/* Decorative shape (behind photo) */
.ek-portrait-shape {
  position: absolute; inset: 0;
  z-index: 1;
}
.ek-hero-portrait--arch .ek-portrait-shape {
  background: linear-gradient(170deg, var(--navy-700) 0%, var(--navy-800) 65%, var(--navy-900) 100%);
  border-radius: 50% 50% 16px 16px / 32% 32% 4% 4%;
  box-shadow:
    inset 0 2px 0 rgba(200,168,104,0.25),
    0 30px 60px rgba(15,22,40,0.28);
  overflow: hidden;
}

.ek-hero-portrait--arch .ek-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  border-radius: 50% 50% 16px 16px / 32% 32% 4% 4%;
}

.ek-hero-portrait--rect .ek-portrait-shape {
  background: var(--gradient-gold);
  border-radius: 6px;
  transform: translate(16px, 16px);
  z-index: 0;
}
.ek-hero-portrait--rect::after {
  content: ''; position: absolute; inset: 0;
  background: var(--neutral-25);
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  z-index: 1;
}
.ek-hero-portrait--rect .ek-portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(15,22,40,0.18));
}

.ek-hero-portrait--softblob .ek-portrait-shape {
  background: radial-gradient(circle at 50% 40%, var(--gold-200), var(--gold-100) 55%, var(--neutral-25) 90%);
  border-radius: 46% 54% 42% 58% / 40% 36% 64% 60%;
  z-index: 0;
  animation: ek-blob 18s ease-in-out infinite;
}
@keyframes ek-blob {
  0%, 100% { border-radius: 46% 54% 42% 58% / 40% 36% 64% 60%; }
  50%      { border-radius: 58% 42% 56% 44% / 52% 60% 40% 48%; }
}
.ek-hero-portrait--softblob .ek-portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
  z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(15,22,40,0.2));
}

.ek-hero-portrait--ring .ek-portrait-shape {
  background: var(--neutral-25);
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  z-index: 0;
  inset: 4%;
}
.ek-hero-portrait--ring::after {
  content: ''; position: absolute; inset: -2% -2% 20% -2%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(200,168,104,0.18), transparent 70%);
  z-index: 0;
}
.ek-hero-portrait--ring .ek-portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
  z-index: 2;
  filter: drop-shadow(0 24px 36px rgba(15,22,40,0.22));
}

.ek-portrait-shadow {
  position: absolute; left: 10%; right: 10%; bottom: -2%;
  height: 24px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15,22,40,0.2), transparent 70%);
  z-index: 0; filter: blur(6px);
}

/* Hairlines — removed */

/* Floating badge */
.ek-portrait-badge {
  position: absolute;
  left: -8%; bottom: 18%;
  background: var(--neutral-0);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold-400);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  z-index: 4;
}
.ek-portrait-badge-n {
  font-family: var(--font-display); font-size: 34px;
  font-weight: 500; color: var(--gold-700); line-height: 1;
  letter-spacing: -0.02em;
}
.ek-portrait-badge-l {
  font-size: 11px; color: var(--fg3);
  letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1.3; font-weight: 600;
}

/* Monogram */
.ek-portrait-monogram {
  position: absolute;
  right: -4%; top: 6%;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 24px; font-weight: 500; color: var(--navy-800);
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-gold-glow);
  z-index: 4;
}

/* Mini stats below portrait */
.ek-hero-mini-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ek-hero-mini-stat {
  padding: 16px 8px 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.ek-hero-mini-stat .n {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 500; color: var(--gold-700); line-height: 1;
  letter-spacing: -0.02em;
}
.ek-hero-mini-stat .n em {
  font-size: 14px; color: var(--fg3); font-style: normal;
  margin-left: 2px; font-family: var(--font-sans); font-weight: 500;
}
.ek-hero-mini-stat .l {
  font-size: 12.5px; color: var(--fg3);
  letter-spacing: 0.02em;
}

/* Scroll hint */
.ek-hero-scroll {
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg3); font-weight: 600;
  pointer-events: none; opacity: 0.7;
}
.ek-hero-scroll-line {
  width: 1px; height: 40px; background: var(--gold-400);
  animation: ek-scroll-pulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes ek-scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* Tweaks panel */
.ek-tweaks {
  position: fixed; right: 20px; bottom: 96px;
  width: 280px;
  background: var(--neutral-0);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 18px 18px 16px;
  z-index: 450;
  font-family: var(--font-sans);
  display: flex; flex-direction: column; gap: 14px;
}
.ek-tweaks-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-soft);
}
.ek-tweaks-head strong { font-size: 13px; color: var(--navy-800); letter-spacing: 0.04em; text-transform: uppercase; }
.ek-tweaks-head span { font-size: 11px; color: var(--fg3); letter-spacing: 0.12em; text-transform: uppercase; }
.ek-tweak { display: flex; flex-direction: column; gap: 8px; }
.ek-tweak > span:first-child { font-size: 11px; color: var(--fg3); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.ek-tweak-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ek-tweak-chips button {
  font: inherit; font-size: 12px; font-weight: 500;
  padding: 6px 10px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--neutral-0);
  color: var(--fg2); cursor: pointer;
  transition: all 140ms var(--ease-out);
}
.ek-tweak-chips button:hover { border-color: var(--gold-400); color: var(--navy-800); }
.ek-tweak-chips button.on {
  background: var(--navy-800); color: var(--neutral-25);
  border-color: var(--navy-800);
}
.ek-tweak-row { flex-direction: row; align-items: center; justify-content: space-between; }
.ek-tweak-row > span { font-size: 12px !important; color: var(--fg2) !important; letter-spacing: 0.04em !important; text-transform: none !important; font-weight: 500 !important; }

/* Old back-compat */
.ek-hero-inner { position: relative; text-align: center; }
.ek-dot { color: var(--gold-400); }

/* SECTION HEADER shared ----------------------------------- */
.ek-section-header {
  text-align: center; max-width: 720px; margin: 0 auto 64px;
}
.ek-section-header h2 { margin: 10px 0 16px; }
.ek-section-header h2 .ek-display-italic {
  font-style: italic; color: var(--gold-700); font-weight: 400;
}
.ek-section-sub { font-size: 17px; color: var(--fg2); line-height: 1.6; }
.ek-display-italic { font-style: italic; color: var(--gold-700); font-weight: 400; }

/* SOBRE ---------------------------------------------------- */
.ek-sobre { background: white; }
.ek-sobre-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px;
  margin-bottom: 80px;
}
.ek-sobre-col-left h2 { margin: 8px 0 0; }
.ek-sobre-col-left .hairline-gold { margin: 20px 0 24px; max-width: 120px; }
.ek-sobre-col-left strong { color: var(--navy-800); font-weight: 600; }
.ek-formacao {
  background: var(--neutral-25); padding: 28px 30px;
  border-radius: 12px; border: 1px solid var(--border-soft);
}
.ek-formacao-title {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 18px;
}
.ek-formacao-item { padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.ek-formacao-item:last-child { border-bottom: none; padding-bottom: 0; }
.ek-formacao-t {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: var(--navy-800); line-height: 1.3; margin-bottom: 4px;
}
.ek-formacao-m { font-size: 13px; color: var(--fg3); }
.ek-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ek-stat {
  text-align: center; padding: 32px 20px;
  background: var(--neutral-25); border-radius: 12px;
}
.ek-stat-n {
  font-family: var(--font-display); font-size: 56px;
  font-weight: 500; color: var(--gold-700);
  line-height: 1; letter-spacing: -0.02em;
}
.ek-stat .hairline-gold { max-width: 60px; margin: 16px auto; }
.ek-stat-l {
  font-size: 14px; color: var(--fg2);
  letter-spacing: 0.02em;
}

/* SERVICOS ------------------------------------------------- */
.ek-servicos { background: var(--neutral-25); }
.ek-servicos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ek-service-card {
  background: white; border-radius: 12px; padding: 36px 32px;
  border: 1px solid var(--border-soft); box-shadow: var(--shadow-xs);
  transition: all 240ms var(--ease-out); position: relative;
}
.ek-service-card:hover {
  box-shadow: var(--shadow-md); border-color: var(--gold-200);
  transform: translateY(-2px);
}
.ek-service-num {
  position: absolute; top: 28px; right: 32px;
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; color: var(--gold-400); font-weight: 400;
}
.ek-service-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  line-height: 1;
}
.ek-service-icon,
.ek-service-meta > svg.ek-service-icon,
.ek-service-meta > i.ek-service-icon {
  color: var(--gold-700);
  width: 32px; height: 32px;
  flex: 0 0 32px;
  display: block;
}
.ek-service-meta .ek-service-tag {
  margin: 0;
  align-self: center;
  line-height: 1.2;
}
.ek-service-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-800); background: var(--gold-100);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 14px;
}
.ek-service-card h3 {
  font-size: 24px; color: var(--navy-800); margin: 0 0 12px;
  line-height: 1.22; font-weight: 600;
}
.ek-service-card p {
  font-size: 15px; color: var(--fg2); line-height: 1.65; margin: 0;
}
.ek-service-list {
  list-style: none; padding: 0; margin: 0;
  font-size: 15px; color: var(--fg2); line-height: 1.55;
}
.ek-service-list li {
  position: relative; padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--border-soft);
}
.ek-service-list li:last-child { border-bottom: 0; }
.ek-service-list li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500, var(--gold-400));
}

/* DIFERENCIAIS --------------------------------------------- */
.ek-diferenciais { background: white; }
.ek-dif-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px;
}
.ek-dif-card { padding: 24px 4px; }
.ek-dif-icon { color: var(--gold-700); width: 28px; height: 28px; margin-bottom: 14px; }
.ek-dif-card h4 {
  font-size: 19px; color: var(--navy-800); margin: 0 0 8px;
  font-weight: 600; line-height: 1.3;
}
.ek-dif-card p { font-size: 14.5px; color: var(--fg2); line-height: 1.6; margin: 0; }

/* CTA BAND ------------------------------------------------- */
.ek-cta-band {
  position: relative; background: var(--navy-800);
  color: var(--fg-on-ink); padding: 80px 0;
  overflow: hidden;
}
.ek-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(200,168,104,0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
}
.ek-cta-inner {
  position: relative; display: flex; align-items: center; gap: 40px;
  justify-content: space-between; flex-wrap: wrap;
}
.ek-cta-text h2 {
  color: var(--neutral-25); font-size: 38px; margin: 0 0 10px;
  max-width: 22ch; line-height: 1.15;
}
.ek-cta-text p { color: var(--neutral-200); margin: 0; font-size: 17px; max-width: 40ch; }

/* FAQ ------------------------------------------------------ */
.ek-faq { background: var(--neutral-25); }
.ek-faq-inner { max-width: var(--container-narrow); }
.ek-faq-header { text-align: center; }
.ek-faq-list { display: flex; flex-direction: column; gap: 12px; }
.ek-faq-item {
  background: white; border-radius: 10px;
  border-left: 3px solid var(--gold-400);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow 200ms var(--ease-out);
}
.ek-faq-item.open { box-shadow: var(--shadow-sm); }
.ek-faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 26px; background: transparent; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--navy-800); line-height: 1.3;
}
.ek-faq-plus {
  color: var(--gold-700); font-family: var(--font-sans); font-size: 26px;
  font-weight: 300; line-height: 1;
  transition: transform 240ms var(--ease-out);
}
.ek-faq-item.open .ek-faq-plus { transform: rotate(45deg); }
.ek-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 320ms var(--ease-out);
}
.ek-faq-item.open .ek-faq-a { max-height: 400px; }
.ek-faq-a p {
  padding: 0 26px 24px; margin: 0; color: var(--fg2);
  font-size: 15.5px; line-height: 1.7;
}

/* CONTATO -------------------------------------------------- */
.ek-contato { background: white; }
.ek-contato-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px;
}
.ek-contato-info h2 { margin: 10px 0; }
.ek-contato-info .hairline-gold { max-width: 100px; margin: 16px 0 22px; }
.ek-contato-sub { color: var(--fg2); font-size: 16px; line-height: 1.65; margin-bottom: 32px; }
.ek-contato-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.ek-contato-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.ek-contato-list i {
  color: var(--gold-700); width: 20px; height: 20px;
  flex-shrink: 0; margin-top: 2px;
}
.ek-contato-list strong {
  display: block; font-size: 16px; color: var(--navy-800);
  font-weight: 600; margin-bottom: 2px;
}
.ek-contato-list span { font-size: 13px; color: var(--fg3); }

/* FORM ----------------------------------------------------- */
.ek-form {
  background: var(--neutral-25); border-radius: 12px;
  padding: 36px 36px; border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 18px;
}
.ek-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--fg1);
}
.ek-form-label-text { display: block; }
.ek-form label .req { color: var(--gold-700); font-weight: 700; }
.ek-form input, .ek-form select, .ek-form textarea {
  font-family: var(--font-sans); font-size: 15px; font-weight: 400;
  padding: 12px 14px; border: 1px solid var(--border);
  background: white; border-radius: 8px; color: var(--fg1);
  outline: none; transition: all 160ms var(--ease-out);
  width: 100%; box-sizing: border-box;
}
.ek-form textarea { resize: vertical; font-family: var(--font-sans); }
.ek-form input:focus, .ek-form select:focus, .ek-form textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(200,168,104,0.18);
}
.ek-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ek-form .btn { align-self: flex-start; margin-top: 4px; }
.ek-form-hint { font-size: 12px; color: var(--fg3); line-height: 1.5; }

/* FOOTER --------------------------------------------------- */
.ek-footer { background: var(--navy-800); color: var(--neutral-200); padding: 72px 0 0; }
.ek-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.ek-footer-logo { width: 150px; height: auto; margin-bottom: 14px; display: block; }
.ek-footer-brand p { color: var(--neutral-100); font-size: 14px; margin: 0 0 6px; }
.ek-footer-desc { color: var(--neutral-300) !important; max-width: 40ch; }
.ek-footer-h {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 18px;
}
.ek-footer-col { display: flex; flex-direction: column; gap: 10px; }
.ek-footer-col a {
  color: var(--neutral-100); font-size: 14.5px; text-decoration: none;
  border: none; transition: color var(--dur-fast) var(--ease-out);
}
.ek-footer-col a:hover { color: var(--gold-400); }
.ek-footer-meta { font-size: 13px; color: var(--neutral-300); }
.ek-footer-bar { border-top: 1px solid rgba(200,168,104,0.15); padding: 20px 0; }
.ek-footer-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--neutral-300); flex-wrap: wrap; gap: 12px;
}
.ek-footer-legal { display: flex; gap: 10px; align-items: center; }
.ek-footer-legal a { color: var(--neutral-300); }
.ek-footer-legal a:hover { color: var(--gold-400); }
.ek-credit { color: var(--neutral-400); }

/* WA FAB --------------------------------------------------- */
.ek-wa-fab {
  position: fixed; bottom: 24px; right: 24px;
  z-index: var(--z-wa-fab); width: 58px; height: 58px;
  border-radius: 50%; background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
  border: none !important;
}
.ek-wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 4px 10px rgba(0,0,0,0.15);
}

/* =============================================================
   RESPONSIVE
   Breakpoints: 1100 · 900 · 640 · 480 · 375
   ============================================================= */

/* --- 1200px: retrato encolhe antes de empilhar ------------ */
@media (max-width: 1200px) {
  .ek-hero--split .ek-hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
  }
  .ek-hero--split .ek-hero-portrait { max-width: 360px; }
  .ek-hero--split .ek-hero-mini-stats { max-width: 360px; }
  .ek-hero-mini-stat .n { font-size: 26px; }
  .ek-hero-mini-stat .l { font-size: 11.5px; }
}

/* --- 1100px: hero stacks ---------------------------------- */
@media (max-width: 1100px) {
  .ek-hero--split .ek-hero-grid,
  .ek-hero--editorial .ek-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .ek-hero--editorial .ek-hero-portrait-col { transform: none; }
  .ek-hero--split .ek-hero-portrait,
  .ek-hero-portrait { max-width: 420px; margin: 0 auto; }
  .ek-hero--split .ek-hero-mini-stats,
  .ek-hero-mini-stats { max-width: 420px; width: 100%; margin: 0 auto; }
  .ek-hero--split .ek-hero-content,
  .ek-hero--editorial .ek-hero-content { text-align: left; }
  .ek-hero-portrait-col { align-items: center; }

  /* Reordenação mobile: eyebrow + title + lead → imagem → CTAs + trust
     Usamos display:contents para que os filhos de .ek-hero-content
     participem do flex do .ek-hero-grid e possam ser reordenados
     junto com .ek-hero-portrait-col. */
  .ek-hero--split .ek-hero-content { display: contents; }
  .ek-hero--split .ek-eyebrow-kicker { order: 1; margin-bottom: 0; }
  .ek-hero--split .ek-hero-title      { order: 2; margin-bottom: 0; }
  .ek-hero--split .ek-lead            { order: 3; margin-bottom: 0; max-width: 100%; }
  .ek-hero--split .ek-hero-portrait-col { order: 4; }
  .ek-hero--split .ek-hero-ctas       { order: 5; margin-bottom: 0; }
  .ek-hero--split .ek-hero-trust      { order: 6; }
}

/* --- 1024px: nav collapses, grids simplify -------------- */
@media (max-width: 1024px) {
  /* Header */
  .ek-nav, .ek-header .btn-sm { display: none; }
  .ek-menu-toggle { display: inline-flex; margin-left: auto; }
  .ek-mobile-nav:not([hidden]) { display: flex; }

  /* Hero */
  .ek-hero { padding: 110px 0 64px; }
  .ek-hero-title { font-size: clamp(32px, 8.5vw, 52px); }
  .ek-hero .ek-lead { font-size: 16px; max-width: 100%; }
  .ek-hero-ctas { gap: 10px; width: 100%; }
  .ek-hero-ctas .btn { flex: 1 1 100%; justify-content: center; font-size: 15px; padding: 14px 20px; }
  .ek-hero-trust { font-size: 12.5px; gap: 8px 10px; }
  .ek-hero-trust-sep { display: none; }
  .ek-hero-trust > div { flex: 1 1 130px; }
  .ek-hero-portrait { max-width: 360px; }
  .ek-portrait-badge { left: -2%; padding: 10px 14px; bottom: 14%; }
  .ek-portrait-badge-n { font-size: 26px; }
  .ek-portrait-badge-l { font-size: 10px; }
  .ek-portrait-monogram { width: 50px; height: 50px; font-size: 18px; right: -1%; }
  .ek-hero-mini-stat .n { font-size: 24px; }
  .ek-hero-mini-stat .l { font-size: 11.5px; }
  /* scroll hint fica visível em mobile também — reposicionado estaticamente abaixo */
  .ek-hero-scroll {
    position: static; transform: none;
    margin: 32px auto 0;
  }
  .ek-tweaks { width: calc(100vw - 24px); right: 12px; bottom: 86px; }

  /* Sobre */
  .ek-sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .ek-stats { grid-template-columns: repeat(3, 1fr); } /* keep 3-col */
  .ek-stat { padding: 24px 12px; }
  .ek-stat-n { font-size: 42px; }

  /* Serviços — 2-col antes de colapsar */
  .ek-servicos-grid { grid-template-columns: repeat(2, 1fr); }

  /* Diferenciais — 2-col */
  .ek-dif-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }

  /* CTA band */
  .ek-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ek-cta-text h2 { font-size: 28px; }
  .ek-cta-band .btn { width: 100%; justify-content: center; }

  /* FAQ */
  .ek-faq-q { font-size: 17px; padding: 18px 20px; }
  .ek-faq-a p { padding: 0 20px 20px; font-size: 15px; }

  /* Contato */
  .ek-contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .ek-form-row { grid-template-columns: 1fr; }

  /* Footer */
  .ek-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .ek-footer-brand { grid-column: 1 / -1; }
  .ek-footer-logo { width: 120px; }
}

/* --- 640px: single column everything --------------------- */
@media (max-width: 640px) {
  .ek-container { padding: 0 20px; }

  /* Hero */
  .ek-hero { padding: 100px 0 56px; }
  .ek-hero-title { font-size: clamp(30px, 8vw, 44px); margin-bottom: 20px; }
  .ek-eyebrow-kicker { font-size: 11px; gap: 10px; margin-bottom: 20px; }
  .ek-eyebrow-kicker .rule { width: 28px; }
  .ek-hero .ek-lead { font-size: 15.5px; margin-bottom: 28px; }
  .ek-hero-ctas { flex-direction: column; }
  .ek-hero-ctas .btn { width: 100%; font-size: 15px; padding: 14px 20px; }
  .ek-hero-trust { gap: 8px; }
  .ek-hero-trust > div { flex: 1 1 100%; }
  .ek-hero-portrait { max-width: 300px; }
  .ek-portrait-badge {
    left: 50%; transform: translateX(-50%);
    bottom: -20px; white-space: nowrap;
  }
  .ek-portrait-monogram { width: 44px; height: 44px; font-size: 15px; right: 0; top: 4%; }
  .ek-hero-mini-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .ek-hero-mini-stat { padding: 12px 4px 0; }
  .ek-hero-mini-stat .n { font-size: 20px; }
  .ek-hero-mini-stat .l { font-size: 10.5px; }

  /* Sobre */
  .ek-stats { grid-template-columns: repeat(3, 1fr); }
  .ek-stat-n { font-size: 36px; }
  .ek-stat-l { font-size: 12px; }
  .ek-stat { padding: 20px 8px; }

  /* Serviços — 1-col */
  .ek-servicos-grid { grid-template-columns: 1fr; }
  .ek-service-card { padding: 28px 24px; }

  /* Diferenciais — 1-col */
  .ek-dif-grid { grid-template-columns: 1fr; gap: 16px; }
  .ek-dif-card { padding: 18px 0; border-bottom: 1px solid var(--border-soft); }
  .ek-dif-card:last-child { border-bottom: none; }

  /* Section headers */
  .ek-section-header { margin-bottom: 40px; }
  .ek-section-header h2 { font-size: clamp(26px, 7vw, 36px); }

  /* CTA */
  .ek-cta-text h2 { font-size: 24px; }
  .ek-cta-band { padding: 56px 0; }

  /* FAQ */
  .ek-faq-q { font-size: 16px; padding: 16px 18px; }

  /* Contato */
  .ek-form { padding: 24px 20px; }
  .ek-contato-info h2 { font-size: clamp(26px, 7vw, 36px); }

  /* Footer */
  .ek-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ek-footer { padding: 48px 0 0; }
  .ek-footer-logo { width: 100px; }
}

/* --- 480px ------------------------------------------------ */
@media (max-width: 480px) {
  .ek-hero-title { font-size: clamp(28px, 8vw, 38px); }
  .ek-hero-portrait { max-width: 260px; }
  .ek-portrait-badge { padding: 8px 12px; gap: 8px; }
  .ek-portrait-badge-n { font-size: 22px; }
  .ek-portrait-badge-l { font-size: 9.5px; }
  .ek-stats { grid-template-columns: repeat(3, 1fr); }
  .ek-stat-n { font-size: 30px; }
  .ek-footer-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* --- 375px: smallest common phones ----------------------- */
@media (max-width: 375px) {
  .ek-container { padding: 0 16px; }
  .ek-hero { padding: 90px 0 48px; }
  .ek-hero-title { font-size: 28px; }
  .ek-hero-portrait { max-width: 240px; }
  .ek-stat-n { font-size: 26px; }
  .ek-stat-l { font-size: 11px; }
  .ek-hero-mini-stat .n { font-size: 18px; }
  .ek-btn, .btn { font-size: 14px; padding: 12px 16px; }
}
