/* ─── CUSTOM FONTS ─── */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://institutofga.com/wp-content/uploads/2025/10/ArchivoCondensed-Regular.woff2') format('woff2'),
       url('https://institutofga.com/wp-content/uploads/2025/10/ArchivoCondensed-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://institutofga.com/wp-content/uploads/2025/10/ArchivoCondensed-SemiBold.woff2') format('woff2'),
       url('https://institutofga.com/wp-content/uploads/2025/10/ArchivoCondensed-SemiBold.woff') format('woff');
}
@font-face {
  font-family: 'Aspekta';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://institutofga.com/wp-content/uploads/2026/05/Aspekta-400.woff2') format('woff2'),
       url('https://institutofga.com/wp-content/uploads/2026/05/Aspekta-400.woff') format('woff');
}
@font-face {
  font-family: 'Aspekta';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://institutofga.com/wp-content/uploads/2026/05/Aspekta-700.woff2') format('woff2'),
       url('https://institutofga.com/wp-content/uploads/2026/05/Aspekta-700.woff') format('woff');
}
@font-face {
  font-family: 'PP Editorial Old';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('https://institutofga.com/wp-content/uploads/2026/05/PPEditorialOld-Italic.woff2') format('woff2'),
       url('https://institutofga.com/wp-content/uploads/2026/05/PPEditorialOld-Italic.woff') format('woff');
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #ffdfb9;
  --gold-grad: linear-gradient(90deg, #ffdfb9 0%, #ffdfb9 100%);
  --dark:      #000000;
  --dark2:     #0F0F0F;
  --dark3:     #141414;
  --dark4:     #1A1A1A;
  --dark5:     #1E1E24;
  --white:     #ffffff;
  --gray:      #AFAFAF;
  --gray-dim:  #7C7C7C;
  --border:    #242424;
  --border2:   #191919;
  --border3:   #272727;

  --f-body:    'Aspekta', 'Inter', sans-serif;
  --f-heading: 'Archivo', 'Aspekta', 'Inter', sans-serif;
  --f-serif:   'PP Editorial Old', Georgia, serif;

  /* Paleta vermelho-vinho Medusa */
  --wine:      #5C1025;
  --wine-dark: #2E0512;
  --wine-mid:  #601020;
  --wine-bg:   radial-gradient(ellipse at 50% 25%, #9B1B38 0%, #601020 50%, #2E0512 100%);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--f-body);
  font-size: 18px;
  background: var(--dark);
  color: var(--white);
  line-height: 1.3em;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
b, strong { font-weight: 700; }

/* ─── GRID BG ─── */
.bg-grid {
  position: relative;
}
.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://institutofga.com/wp-content/uploads/2025/10/img-grid-layout.webp');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.bg-grid > * { position: relative; z-index: 1; }

@supports not (background-image: url('')) {
  .bg-grid::before {
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 1;
  }
}

/* ─── CONTAINER ─── */
.e-con-boxed {
  padding-left: 20px;
  padding-right: 20px;
}
.e-con-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* ─── BOTÃO CTA ─── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffdfb9;
  color: #000000;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-direction: row-reverse;
  position: relative;
  overflow: visible;
  animation: btn-jump 1.8s ease-in-out infinite, btn-glow 1.8s ease-in-out infinite;
  transform-origin: center bottom;
}
.btn-cta:hover {
  filter: brightness(0.93);
  animation: none;
  transform: scale(1.04);
}
.btn-cta:active {
  transform: scale(0.97);
  animation: none;
}
@keyframes btn-jump {
  0%   { transform: translateY(0) scale(1); }
  20%  { transform: translateY(-9px) scale(1.04); }
  35%  { transform: translateY(-4px) scale(1.02); }
  50%  { transform: translateY(-7px) scale(1.03); }
  65%  { transform: translateY(0) scale(1); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes btn-glow {
  0%, 65%, 100% { box-shadow: 0 0 0 0 rgba(255,223,185,0.7); }
  20%            { box-shadow: 0 0 0 16px rgba(255,223,185,0); }
}
.btn-cta svg { flex-shrink: 0; display: none; }
.btn-cta path { stroke: #000000; }
.btn-cta-static { animation: none; box-shadow: none; transform: none !important; }

.btn-cta-red {
  background: #ffdfb9;
  color: #000000;
  animation: btn-jump 1.8s ease-in-out infinite, btn-glow 1.8s ease-in-out infinite;
}
.btn-cta-red path { stroke: #000000; }
.btn-cta-red::after { display: none; }

/* ── Checkmark no canto superior direito do botão ── */
.btn-cta::after {
  content: '✓';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  background: #43A047;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  line-height: 22px;
  z-index: 5;
  border: 2px solid #ffffff;
}

/* ─── BADGE GOOGLE ACIMA DOS BOTÕES ─── */
.cta-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  gap: 26px;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 3px;
  padding: 7px 11px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 4px 16px rgba(0,0,0,0.18);
}
.google-badge-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.google-badge-text {
  font-family: var(--f-body);
  font-size: 8px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.google-badge-stars {
  font-size: 9px;
  color: #FFD700;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.diagnostico-cols .google-badge {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 4px 16px rgba(0,0,0,0.08);
}
.diagnostico-cols .google-badge-text { color: #222; }

/* ─── TOPBAR ─── */
.topbar {
  background: #000000;
  padding: 10px 16px;
}
.topbar-text {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffdfb9;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* ─── HERO ─── */
.hero-clientes-bg {
  background: radial-gradient(ellipse at 50% 0%, #9B1B38 0%, #5C1025 40%, #2E0512 100%);
}
.hero {
  background: transparent;
  padding: 24px 20px 18px;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-logo {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-food-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  opacity: 0.90;
}
.hero-logo-img {
  display: block;
  max-width: 138px;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  right: 3%;
  /* O fundo vinho da logo "some" no fundo vinho do hero */
  mix-blend-mode: lighten;
}
.hero-headline {
  font-family: var(--f-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto 24px;
  text-transform: none;
}
.hero-headline i {
  font-style: italic;
  font-family: var(--f-serif);
  font-size: 1.05em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reg-mark {
  font-size: 0.45em;
  vertical-align: super;
  font-style: normal;
  font-family: var(--f-body);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
  line-height: 0;
}
.hero-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}
.hero-video iframe,
.hero-video video {
  border: none;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-frame {
  position: relative;
}
.hero-food-float {
  position: absolute;
  width: 72px;
  height: 72px;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.hero-food-pizza {
  top: -22px;
  right: -18px;
  transform: rotate(12deg);
}
.hero-food-burger {
  bottom: -22px;
  left: -18px;
  transform: rotate(-8deg);
}

.video-sound-btn {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 10;
  transition: opacity 0.3s;
}
.video-sound-btn.hidden { opacity: 0; pointer-events: none; }

.video-restart-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.video-restart-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes fake-progress {
  from { width: 0%; }
  to   { width: 100%; }
}
.video-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.video-progress-fill {
  height: 100%;
  background: #E53935;
  width: 0%;
  transition: width 0.25s linear;
}
.hero-btn-inline {
  padding: 18px 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-btn-inline .btn-cta {
  width: 100%;
  max-width: 360px;
}

.hero-logos-strip {
  background: #601020;
  padding: 16px 0 20px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-logos-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: hero-logos-scroll 22s linear infinite;
}
.hero-logos-track span {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,223,185,0.55);
  padding: 0 28px;
  white-space: nowrap;
}
.hero-logos-track span::before {
  content: '✦';
  margin-right: 28px;
  color: rgba(255,223,185,0.3);
  font-size: 8px;
}
@keyframes hero-logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── CLIENTES ─── */
.clientes {
  padding: 18px 0 40px;
  background: transparent;
  overflow: hidden;
}
.clientes-google-wrap {
  display: flex;
  justify-content: center;
  padding: 0 14px;
  margin-bottom: 14px;
}
.clientes-google-wrap .google-badge {
  display: flex;
  width: 100%;
  max-width: 360px;
  justify-content: center;
  box-sizing: border-box;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 4px 0;
}
.clientes-label {
  font-family: var(--f-display);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.80);
  line-height: 1.25;
  margin-bottom: 10px;
  padding: 0 24px;
}
.clientes-destaque {
  font-style: italic;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.clientes-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 12px 0;
}
.clientes-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}
.cliente-logo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -22px;
  border: 2.5px solid rgba(255,255,255,0.12);
  box-shadow: -6px 0 18px rgba(0,0,0,0.55);
  transition: transform 0.25s, z-index 0s;
  position: relative;
  z-index: 1;
}
.cliente-logo:first-child { margin-left: 0; }
.cliente-logo:hover { transform: scale(1.12) translateY(-4px); z-index: 10; }
.cliente-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── DIVIDER VINHO → PRETO ─── */
.divider-wine-to-dark {
  height: 16px;
  background: linear-gradient(to bottom, #1E0510 0%, #000000 100%);
}

/* ─── MODAL FORMULÁRIO ─── */
.modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.formulario {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 36px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}
.formulario-inner {
  overflow-y: auto;
  max-height: calc(90vh - 36px);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.5);
  line-height: 1;
  padding: 4px;
}
.modal-close:hover { color: #fff; }
.form-header {
  text-align: center;
  margin-bottom: 20px;
}
.form-header-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}
.captacao {
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 0px;
  max-width: 680px;
  margin: 0 auto;
}
.elementor-form-fields-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.elementor-field-group input,
.elementor-field-group select {
  width: 100%;
  background: #C5C5C540;
  border: 1px solid #ACACAC40;
  border-radius: 5px;
  padding: 14px 16px;
  font-family: var(--f-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.elementor-field-group input::placeholder { color: rgba(255,255,255,.4); }
.elementor-field-group input:focus,
.elementor-field-group select:focus { border-color: rgba(255,173,0,.6); }
.phone-wrap {
  display: flex;
  align-items: center;
  background: #C5C5C540;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
}
.phone-wrap input {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  padding: 14px 16px;
}
.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  user-select: none;
}
.phone-ddi { font-size: 14px; color: rgba(255,255,255,.6); }
.elementor-field-group select { color: rgba(255,255,255,.6); cursor: pointer; }
.elementor-field-group select option { background: #2a2a2a; color: #fff; }
.elementor-field-group select.filled { color: var(--white); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255,255,255,.4);
  pointer-events: none;
}
.btn-submit {
  width: 100%;
  background: var(--gold-grad);
  color: #ffffff;
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 600;
  padding: 25px 20px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  cursor: pointer;
  margin-top: 4px;
  transition: filter .2s, transform .2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155, 27, 56, 0.4);
}
.btn-submit:active { transform: scale(0.97); }
.form-privacy {
  max-width: 720px;
  margin: 14px auto 0;
  font-family: 'Montserrat', var(--f-body);
  font-size: 13px;
  color: #C0C0C0;
  text-align: center;
  line-height: 1.3em;
}

/* ─── DESAFIOS ─── */
.desafios {
  padding: 40px 20px;
  background: var(--dark);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.desafios-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.desafios-left {
  width: 100%;
}
.desafios-left h3 {
  font-family: var(--f-body);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3em;
  margin-bottom: 24px;
  color: var(--white);
}
.desafios-left h3 i {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--gold);
}
.desafios-left p {
  font-family: var(--f-body);
  font-size: 18px;
  color: #AFAFAF;
  line-height: 1.3em;
  margin-bottom: 32px;
}
.desafios-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.desafio-card {
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 30px 30px;
}
.desafio-card h3 {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
}
.desafio-card p {
  font-family: var(--f-body);
  font-size: 18px;
  color: #AFAFAF;
  line-height: 1.3em;
}
.desafio-card p b { color: var(--white); font-weight: 700; }

/* ─── BENEFÍCIOS ─── */
.beneficios {
  padding: 40px 0;
  background: var(--dark);
  overflow: hidden;
}
.beneficios-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.beneficios-titulo {
  font-family: var(--f-body);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3em;
  margin-bottom: 32px;
  color: var(--white);
  max-width: 65%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.beneficios-titulo i {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--gold);
}
.beneficios-cta {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

/* ─── CARROSSEL ÁREA DE MEMBROS ─── */
.membros-carousel-wrap {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}
.membros-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.membros-slide {
  flex-shrink: 0;
  width: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  cursor: pointer;
}
.membros-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .membros-slide { width: 200px; }
  .beneficios-titulo { max-width: 90%; font-size: 22px; }
}

/* ─── FLOW MODEL ─── */
.flow-model {
  padding: 40px 0;
  background: var(--wine-bg);
  color: #ffffff;
  overflow: hidden;
}
.flow-model-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}
.flow-model h2 {
  font-family: var(--f-body);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3em;
  margin-top: 24px;
  margin-bottom: 24px;
  color: #ffffff;
}
.flow-model h2 i {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--gold);
}
.flow-model-img {
  width: calc(100% + 16px);
  margin-left: -8px;
  position: relative;
}
.flow-model-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.flow-foguete-wrap {
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  position: relative;
}
.flow-foguete-img {
  width: 100%;
  height: auto;
  display: block;
}
.flow-foguete-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flow-foguete-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.flow-foguete-title sup {
  font-size: 14px;
  vertical-align: super;
}
.flow-foguete-sub {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

/* ─── IMAGENS FULL WIDTH (bola de cristal) ─── */
.flow-full-img {
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-top: 20px;
  overflow: hidden;
}
.flow-full-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── BRILHO NA IMAGEM DO FUNIL ─── */
.flow-model-img {
  position: relative;
  overflow: hidden;
}
.flow-model-img::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(155,27,56,0.38) 0%, transparent 70%);
  animation: funil-brilho 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes funil-brilho {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.12); }
}

/* ─── CARROSSEL BAÚ / DEPOIMENTOS ─── */
.bau-carousel-wrap {
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-top: 48px;
  overflow: hidden;
  padding: 12px 0;
}
.bau-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}
.bau-slide {
  flex-shrink: 0;
  width: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  cursor: pointer;
}
.bau-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.flow-model-placeholder {
  width: 100%;
  max-width: 1120px;
  aspect-ratio: 1120/462;
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,173,0,.3);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
  color: rgba(255,255,255,.3);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ─── SOBRE ─── */
.sobre {
  padding: 40px 20px;
  background: var(--dark);
}
.sobre-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sobre-img {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 455/583;
  background: var(--dark4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.sobre-img img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.15);
  font-size: 11px;
  letter-spacing: 1px;
}
.sobre-texto p {
  font-family: var(--f-body);
  font-size: 18px;
  color: #AFAFAF;
  line-height: 1.6em;
  margin-bottom: 24px;
}
.sobre-texto p b { color: var(--white); }
.sobre-cta { margin-top: 24px; }

/* ─── MARQUEE STRIPS ─── */
.marquee-section {
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
.marquee-section.gold {
  background: #601020;
  clip-path: polygon(0 7px, 100% 0px, 100% calc(100% - 7px), 0 100%);
  z-index: 2;
  margin-bottom: -14px;
}
.marquee-section.dark-stripe {
  background: #1a1a1a;
  clip-path: polygon(0 0px, 100% 7px, 100% 100%, 0 calc(100% - 7px));
  z-index: 1;
}
.marquee {
  display: flex;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-section.dark-stripe .marquee-content {
  animation-direction: reverse;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.marquee-content span {
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 14px;
  white-space: nowrap;
}
.marquee-section.gold .marquee-content span { color: rgba(245, 222, 192, 0.75); }
.marquee-section.dark-stripe .marquee-content span { color: rgba(255,255,255,.22); }

/* ─── DIAGNÓSTICO HERO ─── */
.diagnostico-hero {
  padding: 40px 20px;
  background: var(--dark);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  overflow: hidden;
}
.diagnostico-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.diagnostico-hero h2 {
  font-family: var(--f-body);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1em;
  color: var(--white);
  max-width: 550px;
  flex-shrink: 0;
  text-align: left;
}
.diagnostico-hero h2 i {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--gold);
}
.diagnostico-hero-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.diagnostico-hero-right svg {
  color: var(--gold);
  flex-shrink: 0;
}
.diagnostico-hero p {
  font-family: var(--f-body);
  font-size: 18px;
  color: #AFAFAF;
  max-width: 500px;
  line-height: 1.6em;
}
.diagnostico-hero p b { color: var(--white); }

/* ─── DIAGNÓSTICO TREND BOX ─── */
.diagnostico-trend {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 30px 30px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: left;
}
.diagnostico-trend svg { flex-shrink: 0; margin-top: 2px; }
.diagnostico-trend p {
  font-family: var(--f-body);
  font-size: 18px;
  color: #AFAFAF;
  line-height: 1.3em;
  margin: 0;
}
.diagnostico-trend p b { color: var(--white); }

/* ─── DIAGNÓSTICO CAROUSEL ─── */
.diag-cards-wrap {
  max-width: 1140px;
  margin: 48px auto 0;
  overflow: hidden;
  position: relative;
}
.diag-cards-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.diag-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s;
}
.diag-nav-btn:hover { border-color: var(--white); }
.diag-cards-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}
.diag-card {
  flex-shrink: 0;
  width: calc((100% - 40px) / 3);
  background: #ffffff;
  color: #000000;
  border-radius: 15px;
  overflow: hidden;
}
.diag-card-img {
  width: 100%;
  aspect-ratio: 519/346;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.diag-card-img img { width: 100%; height: 100%; object-fit: cover; }
.diag-card-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,.2);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.diag-card-body { padding: 30px 30px; }
.diag-card-label {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.diag-card-title {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
  margin-bottom: 12px;
  color: #000000;
}
.diag-card-text {
  font-family: var(--f-body);
  font-size: 14px;
  color: #494949;
  line-height: 1.5em;
}
.diag-cta { text-align: center; margin-top: 40px; margin-bottom: 56px; }

/* ─── DIAGNÓSTICO BANNER ─── */
.diag-banner {
  background: #0a0a0a;
  padding: 36px 24px 0;
}
.diag-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.diag-banner-title {
  font-family: var(--f-heading);
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2em;
  margin-bottom: 24px;
}
.diag-banner-title i {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
}
.diag-banner-sub {
  font-family: var(--f-body);
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.6em;
  margin-bottom: 48px;
}
.diag-banner-img-placeholder {
  width: 100%;
  aspect-ratio: 2 / 1;
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.25);
  font-family: var(--f-heading);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ─── DIAGNÓSTICO 2 COLUNAS ─── */
.diagnostico-cols {
  padding: 40px 20px;
  background: #ffffff;
  color: #000000;
}
.diagnostico-cols-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.diagnostico-left h3 {
  font-family: var(--f-body);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3em;
  margin-bottom: 24px;
  color: #000000;
}
.diagnostico-left h3 i {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--gold);
}
.diagnostico-list {
  list-style: none;
  margin-bottom: 20px;
}
.diagnostico-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 18px;
  color: #333333;
  padding: 10px 0;
  line-height: 1.3em;
}
.diagnostico-list li:last-child { border-bottom: none; }
.diagnostico-list li svg { flex-shrink: 0; margin-top: 1px; }
.diagnostico-left-desc {
  font-family: var(--f-body);
  font-size: 18px;
  color: #494949;
  line-height: 1.3em;
  margin-bottom: 28px;
}
.diagnostico-left-desc b { color: #000000; }
.diagnostico-right {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 455/467;
  background: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.07);
}
.diagnostico-right img { width: 100%; height: 100%; object-fit: cover; }
.diagnostico-right-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,.2);
  font-size: 11px;
  letter-spacing: 1px;
}

/* ─── CASES ─── */
.cases {
  padding: 28px 20px 36px;
  background: var(--dark);
}
.cases-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.cases-header {
  margin-bottom: 40px;
  text-align: center;
}
.cases-header h3 {
  font-family: var(--f-body);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 12px;
  color: var(--white);
}
.cases-header h3 i {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--gold);
}
.cases-header p {
  font-family: var(--f-body);
  font-size: 10px;
  color: #AFAFAF;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.case-card {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--dark4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.50) 100%);
}
.case-play-btn {
  position: relative;
  z-index: 2;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.case-play-btn svg { color: #000; margin-left: 3px; }
.case-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  padding: 24px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.case-name {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.case-role {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.4px;
}
.cases-cta { text-align: center; }

/* ─── ALPHA HERO ─── */
.alpha-hero {
  padding: 40px 20px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.alpha-hero-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.alpha-hero-icon {
  width: 88px;
  height: auto;
  margin: 0 auto 24px;
}
.alpha-hero h3 {
  font-family: var(--f-body);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3em;
  margin-bottom: 24px;
  color: var(--white);
}
.alpha-hero h3 i {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--gold);
}
.alpha-hero p {
  font-family: var(--f-body);
  font-size: 18px;
  color: #AFAFAF;
  line-height: 1.6em;
  margin-bottom: 24px;
}
.alpha-hero p b { color: var(--white); }

/* ─── COUNTERS ─── */
.counters-section {
  background: #601020;
  padding: 32px 20px 36px;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 20px auto 0;
}
.counter-card {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
  border: 1px solid rgba(155, 27, 56, 0.35);
  padding: 20px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.counter-val {
  font-family: var(--f-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1em;
  margin-bottom: 6px;
}
.counter-label {
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.3em;
}

/* ─── FUNDADORES ─── */
.fundadores {
  padding: 40px 20px;
  background: var(--dark);
}
.fundadores-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.fundadores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}
.fundador-foto {
  width: 100%;
  aspect-ratio: 1707/2260;
  background: var(--dark4);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fundador-foto img { width: 100%; height: 100%; object-fit: cover; }
.fundador-foto-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.15);
  font-size: 11px;
  letter-spacing: 1px;
}
.fundador-info h3 {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3em;
  margin-bottom: 4px;
}
.fundador-info p {
  font-family: var(--f-body);
  font-size: 18px;
  color: #AFAFAF;
  line-height: 1.3em;
}
.fundador-info p b { color: var(--white); }
.fundadores-cta { text-align: center; }

/* ─── FAQ ─── */
.faq {
  padding: 40px 20px;
  background: var(--dark);
}
.faq-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-left {
  position: static;
}
.faq-left h3 {
  font-family: var(--f-body);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3em;
  color: var(--white);
}
.faq-left h3 i {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--gold);
}
.faq-video {
  margin-top: 24px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--dark4);
  aspect-ratio: 4/3;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.e-n-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.e-n-accordion-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border3);
}
.e-n-accordion-item-title {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
  list-style: none;
}
.e-n-accordion-item[open] > .e-n-accordion-item-title {
  background: var(--gold);
  color: #ffffff;
}
.e-n-accordion-item-title::-webkit-details-marker { display: none; }
.e-n-accordion-item-title-header { flex: 1; }
.e-n-accordion-item-title-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.e-n-accordion-item.active .e-n-accordion-item-title-icon { transform: rotate(90deg); }
.e-n-accordion-item.active .e-n-accordion-item-title-icon svg path { stroke: #fff; }
.e-opened { display: none; }
.e-closed { display: flex; }
.e-n-accordion-item.active .e-opened { display: flex; }
.e-n-accordion-item.active .e-closed { display: none; }
.e-n-accordion-item.active > .e-n-accordion-item-title { background: var(--gold); color: #fff; }
.e-n-accordion-item.active .e-n-accordion-body {
  max-height: 600px;
  padding: 20px 20px;
  border-top: 1px solid var(--border3);
}
.e-n-accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.75s ease, padding 0.75s ease;
  background: var(--dark3);
  border-radius: 0 0 10px 10px;
  font-family: var(--f-body);
  font-size: 18px;
  color: #AFAFAF;
  line-height: 1.3em;
}
.e-n-accordion-body a { color: var(--gold); }

/* ─── FOOTER ─── */
.footer {
  padding: 30px 20px;
  background: var(--dark2);
  border-top: 1px solid var(--dark5);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 8px;
}
.footer-links {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-dim);
  line-height: 1.3em;
  text-align: end;
}
.footer-links a { color: var(--gray-dim); }
.footer-links a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
/* ─── DESKTOP: carrossel de imagens ─── */
@media (min-width: 768px) {
  .mob-only { display: none !important; }

  .desk-img-carousel {
    display: block;
    position: relative;
    max-width: 680px;
    margin: 36px auto 12px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 48px rgba(0,0,0,0.6);
  }
  .desk-car-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .desk-car-slide {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .desk-car-slide img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    display: block;
  }
  .desk-car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
    line-height: 1;
    padding-bottom: 2px;
  }
  .desk-car-btn:hover { background: rgba(155,27,56,0.75); }
  .desk-car-prev { left: 12px; }
  .desk-car-next { right: 12px; }
  .desk-car-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
  }
  .desk-car-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .desk-car-dot.active {
    background: #ffdfb9;
    transform: scale(1.3);
  }
}

/* ─── desktop: ocultar o carrossel desktop no mobile ─── */
.desk-img-carousel { display: none; }

@media (max-width: 1024px) {
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .fundadores-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .diag-card { width: calc((100% - 20px) / 2); }
}

@media (max-width: 900px) {
  .desafios-inner { grid-template-columns: 1fr; gap: 40px; }
  .desafios-left { position: static; }
  .sobre-inner { grid-template-columns: 1fr; gap: 32px; }
  .diagnostico-cols-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { text-align: center; }
  .desafios-left h3 { font-size: 28px; }
  .beneficios-titulo { font-size: 28px; }
  .flow-model h2 { font-size: 28px; }
  .cases-header h3 { font-size: 28px; }
  .alpha-hero h3 { font-size: 28px; }
  .faq-left h3 { font-size: 28px; }
  .diagnostico-hero h2 { font-size: 28px; }
  .diagnostico-hero-inner { flex-direction: column; gap: 32px; }
  .diagnostico-left h3 { font-size: 26px; }
}

@media (max-width: 767px) {
  /* ── topbar compacto ── */
  .topbar { padding: 8px 14px; }
  .topbar-text { font-size: 10px; letter-spacing: 1px; }

  /* ── hero compacto ── */
  .hero { padding: 18px 16px 0; }
  .hero-logo { margin-bottom: 16px; gap: 10px; }
  .hero-logo-img { max-width: 124px; }
  .hero-food-icon { display: none; }
  .hero-headline { font-size: 17px; line-height: 1.35; margin: 0 auto 18px; text-align: center; text-wrap: balance; }
  .hero-video { border-radius: 6px; padding-top: 56.25%; }
  .hero-btn-inline { padding: 8px 0 0; }

  /* ── badge google ── */
  .google-badge { padding: 5px 8px; gap: 5px; }
  .google-badge-text { font-size: 7px; }
  .google-badge-stars { font-size: 8px; }

  /* ── botão ── */
  .btn-cta { white-space: nowrap; font-size: 13px; padding: 13px 20px; width: 100%; max-width: 360px; }
  .hero-btn-inline { padding: 16px 14px 0; }

  /* ── resto ── */
  .beneficios-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .fundadores-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .diag-card { width: calc(100vw - 40px); }
  .captacao { padding: 28px 18px; }
  .modal-overlay { padding: 8px; }
  .formulario { border-radius: 10px; }
  .counter-val { font-size: 48px; }
  .cliente-logo { width: 70px; height: 70px; margin-left: -18px; }
}

@media (max-width: 480px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 17px; }
  .desafios-left h3 { font-size: 22px; }
  .beneficios-titulo { font-size: 22px; }
}

/* ─── TRANSIÇÕES ENTRE SEÇÕES ─── */
.divider-dark-to-wine {
  height: 24px;
  background: linear-gradient(to bottom, #000000 0%, #2E0512 100%);
}
.divider-dark-to-white {
  height: 24px;
  background: linear-gradient(to bottom, #000000 0%, #ffffff 100%);
}
.divider-white-to-dark {
  height: 24px;
  background: linear-gradient(to bottom, #ffffff 0%, #000000 100%);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.from-left  { transform: translateX(-44px); }
.reveal.from-right { transform: translateX(44px); }
.reveal.from-scale { transform: scale(0.90); opacity: 0; }
.reveal.visible    { opacity: 1 !important; transform: none !important; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ─── RIPPLE ─── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: ripple-out 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-out {
  to { transform: scale(4); opacity: 0; }
}

/* ─── PARTICLE CANVAS ─── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
}

/* ─── CURSOR GLOW ─── */
#cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 27, 56, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: left, top;
}

/* Sections acima do canvas por ordem no DOM; sem z-index para não criar stacking contexts entre seções */
body > * { position: relative; }
#particles-canvas,
#cursor-glow { z-index: 0; }

/* ─── HERO — efeito shimmer no headline ─── */
.desafios-left h3 i,
.beneficios-titulo i,
.flow-model h2 i,
.alpha-hero h3 i,
.diagnostico-hero h2 i,
.diagnostico-left h3 i,
.cases-header h3 i,
.faq-left h3 i,
.sobre-texto i,
.diag-banner-title i {
  background: linear-gradient(90deg, var(--gold) 0%, #e8b880 45%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* ─── DIAG-NAV BTN HOVER ─── */
.diag-nav-btn {
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.diag-nav-btn:hover {
  background: rgba(200, 64, 112, 0.15);
  border-color: var(--gold);
  transform: scale(1.08);
}


/* ─── URGÊNCIA HERO ─── */
.hero-urgencia {
  font-family: var(--f-body);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.03em;
}
.urgencia-dot {
  color: #4CAF50;
  margin-right: 4px;
  display: inline-block;
  animation: urgencia-blink 1.4s ease-in-out infinite;
}
@keyframes urgencia-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: #ffffff;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.stat-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 30px;
  color: #9B1B38;
  line-height: 1;
}
.stat-label {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  color: rgba(155,27,56,0.65);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(155,27,56,0.2);
  flex-shrink: 0;
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  padding: 10px 20px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(0,0,0,0.97) 60%, transparent 100%);
  display: flex;
  justify-content: center;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta .btn-cta {
  width: 100%;
  max-width: 380px;
  font-size: 13px;
  padding: 14px 20px;
  background: #9B1B38;
  color: #ffffff;
  animation: none;
  box-shadow: none;
}
.sticky-cta .btn-cta::after { display: none; }
.sticky-dot {
  color: #4CAF50;
  margin-right: 6px;
  animation: urgencia-blink 1.4s ease-in-out infinite;
}

/* ─── SAVE CLIPS ─── */
.save-clips {
  background: #0a0005;
  padding: 32px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.save-clip-img {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  line-height: 0;
}
.save-clip-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── CTA WRAPPERS ─── */
.flow-cta-wrap {
  padding: 32px 20px 8px;
  text-align: center;
}

.cta-final-wrap {
  background: #000000;
  padding: 40px 20px 48px;
  text-align: center;
}

/* ─── MÉTODO MEDUSA ─── */
.metodo {
  background: #0a0005;
  padding: 56px 0 48px;
  overflow: hidden;
}

.metodo-inner {
  padding: 0 20px;
  max-width: 480px;
  margin: 0 auto;
}

.metodo-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.85;
}

.metodo-titulo {
  font-family: var(--f-body);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 36px;
}

.metodo-titulo i {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--gold) 0%, #e8b880 45%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}

.metodo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.metodo-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,223,185,0.25) 15%, rgba(255,223,185,0.25) 85%, transparent 100%);
}

.metodo-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.metodo-card:last-child {
  border-bottom: none;
}

.metodo-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,223,185,0.35);
  background: rgba(255,223,185,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.metodo-card-body {
  flex: 1;
  padding-top: 6px;
}

.metodo-step-title {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.metodo-step-desc {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
}

.metodo-cta {
  margin-top: 40px;
  text-align: center;
}

/* ─── VSL OVERLAY DE SOM ─── */
.vsl-sound-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.vsl-sound-overlay.hidden { display: none; }
.vsl-sound-big-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,30,30,0.75);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: none;
}

/* ─── VSL PAUSE BAR ─── */
.vsl-pause-bar {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 20;
}
.vsl-pause-bar.hidden { display: none; }
.vsl-pause-btn {
  background: rgba(30,30,30,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ─── VSL CONTROLES CUSTOMIZADOS ─── */
.vsl-controls {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.vsl-btn {
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.vsl-btn:hover { background: rgba(155,27,56,0.8); }

/* ─── CASE THUMB PLACEHOLDER ─── */
.case-thumb-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  background: linear-gradient(135deg, #1a0008 0%, #3d0015 100%);
}

/* ─── MODAL DEPOIMENTO ─── */
.depo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000;
  align-items: center;
  justify-content: center;
}
.depo-modal.active {
  display: flex;
}
.depo-modal video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.depo-modal-close {
  position: absolute;
  top: env(safe-area-inset-top, 16px);
  right: 16px;
  margin-top: 16px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #ffffff;
  font-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── FAQ ACCORDION TITLE ─── */
.e-n-accordion-item-title {
  transition: background 0.25s, color 0.25s;
}
