:root {
  --teal: #004048;
  --teal-dark: #002830;
  --teal-light: #005a66;
  --red: #FC552D;
  --red-dark: #d94420;
  --white: #F5F0EB;
  --off-white: #EDE8E2;
  --black: #0A0A0A;
  --gray: #8a8a8a;
  --border: rgba(252,85,45,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #ffffff;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 28px 80px 28px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-color: var(--border);
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  position: static;
  transform: none;
}
.nav-logo .dot { color: var(--red); }

/* Mobile menu toggle */
.nav-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.nav-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.nav-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-cta {
  background: linear-gradient(135deg, #FC552D 0%, #e03010 100%);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(252,85,45,0.3), 0 4px 16px rgba(252,85,45,0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(252,85,45,0.5), 0 6px 24px rgba(252,85,45,0.5);
}
.nav-cta:active { transform: scale(0.98); }
.cta-short { display: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: #020e12;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}

/* Mobile video optimization */
@media (max-width: 768px) {
  .hero-bg-video {
    display: none;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #020e12 0%, #00232e 50%, #011820 100%);
    z-index: 0;
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: -25%; right: -10%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(252,85,45,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.hero-glow-left {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,64,72,0.5) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  z-index: 4;
}

.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(2,14,18,0.82) 0%, rgba(0,35,46,0.78) 45%, rgba(1,16,24,0.82) 80%, rgba(6,6,6,0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px 10%;
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--white);
  max-width: 660px;
}
.hero h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(245,240,235,0.85);
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,240,235,0.08);
}
.hero-brand span {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.35);
  white-space: nowrap;
}
.hero-brand-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 0.25s;
}
.hero-brand-logo:hover { opacity: 0.75; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 80px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { 
  box-shadow: 0 0 0 1px rgba(252,85,45,0.5), 0 6px 24px rgba(252,85,45,0.5);
  background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(252,85,45,0.3); 

}

.btn-ghost {
  color: rgba(245,240,235,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

.hero-right {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 56px 80px 32px;
}

.video-frame {
  width: 100%;
  max-width: 644px;
  position: relative;
  padding: 12px;
}

.corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--red);
  border-style: solid;
  opacity: 0.7;
  z-index: 3;
  pointer-events: none;
}
.corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(252,85,45,0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,90,102,0.35), 0 0 30px rgba(252,85,45,0.1), inset 0 0 28px rgba(0,64,72,0.15);
  animation: videoBorderPulse 4s ease-in-out infinite;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252,85,45,0.05), transparent 60%);
}

@keyframes videoBorderPulse {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(0,90,102,0.35), 0 0 28px rgba(252,85,45,0.1), inset 0 0 28px rgba(0,64,72,0.15);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(0,90,102,0.6), 0 0 50px rgba(252,85,45,0.22), 0 0 90px rgba(252,85,45,0.07), inset 0 0 40px rgba(0,64,72,0.22);
  }
}

.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.play-btn svg { width: 26px; height: 26px; fill: white; margin-left: 5px; }

.video-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245,240,235,0.6);
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.video-caption {
  position: absolute;
  bottom: 16px; left: 20px; right: 20px;
  font-size: 0.8rem;
  color: rgba(245,240,235,0.5);
  line-height: 1.55;
  z-index: 1;
}

/* ─── PARCEIROS (CAROUSEL) ─── */
.partners-strip {
  background: var(--black);
  border-top: 1px solid rgba(252,85,45,0.1);
  border-bottom: 1px solid rgba(252,85,45,0.1);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 28px 0;
}

.hero .partners-strip {
  grid-column: 1 / -1;
  background: #ffffff;
  border-top: none;
  border-bottom: none;
  position: relative;
  z-index: 3;
}

.partners-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
  padding: 0 36px 0 52px;
  flex-shrink: 0;
  line-height: 1.3;
}

.partners-label strong {
  font-weight: 800;
}

.partners-divider {
  width: 1px;
  height: 44px;
  background: rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.marquee-track {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 92%, transparent 100%);
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0;
}

.logo-svg { width: 44px; height: 44px; }
.logo-img { height: 72px; width: auto; object-fit: contain; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION BASE ─── */
section { position: relative; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ─── SOBRE ─── */
.about {
  background: #ffffff;
  color: var(--black);
  padding: 120px 0;
}
.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.about-header-right {
  padding-top: 8px;
}
.about h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--black);
}
.about h2 span { color: var(--red); }
.about-intro {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #444;
  margin-bottom: 32px;
}
.about-intro strong {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

/* ─── ROLES SPLIT — Divisão de Responsabilidades (Visual de Balança) ─── */
.roles-split {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.role-panel {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  padding: 52px 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  cursor: default;
  overflow: hidden;
}

.role-panel:hover {
  box-shadow: 0 20px 64px rgba(0,0,0,0.11), 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-6px);
}

/* Icon circle — line art laranja */
.role-panel-icon {
  width: 60px; height: 60px;
  border: 1.5px solid rgba(252,85,45,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  flex-shrink: 0;
}

.role-panel-icon svg {
  width: 26px; height: 26px;
  stroke: var(--red);
  transition: stroke 0.35s ease;
}

.role-panel:hover .role-panel-icon {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.role-panel:hover .role-panel-icon svg { stroke: #ffffff; }

/* Label */
.role-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* Title */
.role-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.38;
}

/* Desc — oculto, expande no hover */
.role-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: #666;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.role-panel:hover .role-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 18px;
}

/* Divisor central — ícone de balança */
.roles-center-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
  padding: 52px 0 48px;
}

.roles-center-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(252,85,45,0.18), transparent);
  min-height: 36px;
}

.roles-center-badge {
  width: 42px; height: 42px;
  background: #ffffff;
  border: 1px solid rgba(252,85,45,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}

.roles-center-badge svg {
  width: 18px; height: 18px;
  stroke: var(--red);
}

/* ─── STEPS INTERATIVOS — BLOCO 3 ─── */
.steps-band {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(252,85,45,0.12);
}

.steps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.step-card {
  border: 1px solid rgba(252,85,45,0.18);
  padding: 28px 24px;
  background: #fdfbf9;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.38s ease, transform 0.38s ease, border-color 0.25s;
}

.step-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.step-card-idx {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(252,85,45,0.18);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.step-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: #555;
}

.steps-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.steps-nums::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
  transform: translateY(-50%);
  z-index: 0;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  background: #f5f0eb;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #bbb;
  cursor: default;
  user-select: none;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.step-num:hover { transform: scale(1.06); }

.step-num.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: scale(1.1);
}

@media (max-width: 700px) {
  .steps-cards { grid-template-columns: 1fr; }
  .steps-nums { grid-template-columns: repeat(3, auto); justify-content: center; gap: 0; }
}

/* ─── DIFERENCIAIS ─── */
.differentials {
  background: linear-gradient(150deg, #020e12 0%, #00232e 45%, #011018 80%, #060606 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.differentials::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252,85,45,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.diff-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.diff-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.diff-header h2 span { color: var(--red); }
.diff-header p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245,240,235,0.75);
}

.diff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.diff-card {
  background: rgba(0,0,0,0.25);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.diff-card:hover { background: rgba(0,0,0,0.45); }
.diff-number {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(252,85,45,0.15);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  transition: color 0.3s;
}
.diff-card:hover .diff-number { color: rgba(252,85,45,0.3); }
.diff-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}
.diff-desc {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245,240,235,0.75);
}

/* ─── PERFIL IDEAL ─── */
.profile {
  background: #ffffff;
  color: var(--black);
  padding: 120px 0;
}
.profile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.profile h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--black);
}
.profile h2 span { color: var(--red); }
.profile-intro {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}
.profile-items { display: flex; flex-direction: column; gap: 20px; }
.profile-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}
.profile-item:hover {
  border-color: rgba(252,85,45,0.35);
  background: rgba(252,85,45,0.04);
}
.profile-icon {
  width: 40px; height: 40px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.profile-item-text h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}
.profile-item-text p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  color: #555;
}
.profile-right { position: relative; }
.profile-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--teal);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(245,240,235,0.4);
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}
.profile-img-placeholder::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.img-icon svg {
  width: 40px; height: 40px;
  stroke: rgba(0, 0, 0, 0.4);
  fill: none;
  stroke-width: 1.5;
}

/* ─── GIGANTES — BLOCO 5 ─── */
/* ─── GIGANTES — BLOCO 5 ─── */
.gigantes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.gigantes::before {
  display: none;
}

/* LEFT */
.gigantes-left {
  display: flex;
  align-items: center;
  padding: 120px 64px 120px 10%;
  position: relative;
  z-index: 2;
}

.gigantes-left::after {
  display: none;
}

.gigantes-content { max-width: 520px; }

.gigantes-headline {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0D0D0D;
  margin-bottom: 24px;
}
.gigantes-headline span { color: var(--red); }

.gigantes-body {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(13,13,13,0.65);
  margin-bottom: 40px;
  max-width: 440px;
}

/* Checklist */
.gigantes-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.gigantes-check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(13,13,13,0.82);
  letter-spacing: 0.01em;
}

.check-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(252,85,45,0.5);
}

/* Metrics */
.gigantes-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  margin-bottom: 48px;
  border-top: 1px solid rgba(13,13,13,0.08);
  border-bottom: 1px solid rgba(13,13,13,0.08);
}

.gigantes-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-value {
  font-family: 'Tektur', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FF5000;
  letter-spacing: -0.01em;
  line-height: 1;
}

.metric-label {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(13,13,13,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gigantes-metric-div {
  width: 1px;
  height: 36px;
  background: rgba(13,13,13,0.12);
  flex-shrink: 0;
}

/* RIGHT */
.gigantes-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* imagem direta sem container */
.gigantes-right > img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* "JUNTOS SOMOS GIGANTES" */
.gigantes-quote {
  margin-top: 20px;
  background: white;
  padding: 10px 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gigantes-quote::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff5a2c;
  margin: 0 auto 12px;
  border-radius: 2px;
}

.gigantes-quote-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ff5a2c;
  letter-spacing: 1px;
  text-align: center;

  text-shadow:
    0 2px 10px rgba(255, 90, 44, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.15);
}

.gigantes-quote-line {
  width: 48px; height: 2px;
  background: var(--red);
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .gigantes {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .gigantes::before { display: none; }
  .gigantes-left { padding: 80px 32px; }
  .gigantes-right { 
    height: auto; 
    min-height: 400px;
    padding: 30px;
  }
  .gigantes-right > div:first-child {
    height: auto;
    overflow: visible;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .gigantes-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .gigantes-quote {
    width: 100%;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .gigantes-left { padding: 64px 20px; }
  .gigantes-right { 
    height: auto; 
    min-height: 300px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .gigantes-right > div:first-child {
    height: auto;
    overflow: visible;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .gigantes-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .gigantes-quote { 
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gigantes-quote-text { font-size: 1.5rem; }
  .gigantes-badge { top: 20px; right: 20px; }
  .gigantes-metrics { gap: 18px; }
  .metric-value { font-size: 1.4rem; }
}

@media (max-width: 450px) {
  .gigantes {
    grid-template-columns: 1fr;
    gap: 15px;
    min-height: auto;
  }
  .gigantes-left { 
    padding: 30px 12px;
  }
  .gigantes-right { 
    min-height: 200px;
    padding: 12px 15px;
    order: 2;
  }
  .gigantes-right > div:first-child {
    max-width: 100%;
    height: auto;
  }
  .gigantes-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .gigantes-quote { 
    max-width: 100%;
    margin-top: 12px;
    padding: 8px 15px;
  }
  .gigantes-quote-text { 
    font-size: 1rem;
    line-height: 1.2;
  }
  .gigantes-headline {
    font-size: clamp(1.6rem, 4.5vw, 2rem);
    line-height: 1.1;
  }
  .gigantes-body {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .gigantes-metrics {
    gap: 12px;
    padding: 15px 0;
    flex-wrap: wrap;
  }
  .gigantes-metric {
    flex: 1;
    min-width: 80px;
  }
  .metric-value {
    font-size: 1.1rem;
  }
  .metric-label {
    font-size: 0.55rem;
    line-height: 1.2;
  }
}

/* ─── CHAT POPUP ─── */
.chat-popup {
  position: fixed;
  bottom: 108px;
  right: 32px;
  width: 380px;
  max-height: 80vh;
  border-radius: 20px;
  z-index: 985;
  transform-origin: bottom right;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}
.chat-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Mobile chat optimizations */
@media (max-width: 600px) {
  .chat-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    height: 480px;
    max-height: 70vh;
    border-radius: 20px;
    transform-origin: bottom right;
    transform: scale(0.9) translateY(12px);
  }
  
  .chat-popup.open {
    transform: scale(1) translateY(0);
  }
  
  .chat-window {
    height: 100%;
    max-height: 100%;
    border-radius: 20px;
    margin: 0;
  }
  
  .chat-messages {
    max-height: calc(100% - 140px);
    min-height: 200px;
  }
  
  .chat-header {
    padding: 16px 20px;
    border-bottom: 2px solid var(--border);
  }
  
  .chat-input-area {
    padding: 16px 20px 20px 20px;
  }
}
.chat-popup .chat-window {
  max-width: none;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.65);
  background: rgba(2,18,24,0.97);
  backdrop-filter: blur(20px);
}

.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: rgba(245,240,235,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  flex-shrink: 0;
}
.chat-close:hover { color: var(--white); }
.chat-close svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* Toggle icon on bubble btn */
.chatbot-btn .icon-close {
  display: none;
  width: 22px; height: 22px;
  stroke: white; fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* ─── QUALIFICAÇÃO ─── */
.qualification {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,210,230,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(0,140,160,0.10) 0%, transparent 60%),
    radial-gradient(circle, rgba(0,90,102,0.18) 1px, transparent 1px),
    linear-gradient(160deg, #021a22 0%, #013545 35%, #00414f 55%, #011e2b 80%, #080808 100%);
  background-size: 100% 100%, 100% 100%, 32px 32px, 100% 100%;
  padding: 130px 0 140px;
  position: relative;
  overflow: hidden;
}

/* Feixe de luz esquerdo */
.qualification::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 55%; height: 140%;
  background: conic-gradient(from 20deg at 0% 50%, transparent 0deg, rgba(0,200,220,0.07) 20deg, transparent 40deg);
  pointer-events: none;
  z-index: 0;
}

/* Linha teal no topo com bloom */
.qualification::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(61,214,232,0.9) 30%, rgba(61,214,232,1) 50%, rgba(61,214,232,0.9) 70%, transparent 100%);
  z-index: 2;
}

.qual-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.qual-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 6px;
}

.qual-header h2 span {
  color: #3dd6e8;
  position: relative;
}

/* Underline decorativo no título */
.qual-header h2 span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, #3dd6e8, rgba(61,214,232,0.15));
  border-radius: 2px;
}

.qual-header p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(220,235,238,0.65);
  max-width: 480px;
  margin-top: 28px;
}

/* ─── TAG ─── */
.qual-tag {
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid rgba(232, 61, 61, 0.25);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.qual-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #3dd6e8;
  box-shadow: 0 0 8px rgba(61,214,232,0.8);
  animation: tagBlink 2s ease-in-out infinite;
}

@keyframes tagBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─── BOTÃO ─── */
.qual-btn {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 52px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #FC552D 0%, #e03010 100%);
  color: var(--white);
  box-shadow:
    0 0 0 1px rgba(252,85,45,0.3),
    0 4px 24px rgba(252,85,45,0.4),
    0 1px 0 rgba(255,130,100,0.3) inset;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Shimmer no hover */
.qual-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.4s ease;
}

.qual-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(252,85,45,0.5),
    0 8px 32px rgba(252,85,45,0.55),
    0 1px 0 rgba(255,130,100,0.4) inset;
}

.qual-btn:hover::before { left: 100%; }
.qual-btn:active { transform: translateY(0) scale(0.99); }

/* Chat window */
.chat-window {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-avatar-wrap { position: relative; flex-shrink: 0; }
.chat-avatar-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.chat-online {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid rgba(0,40,48,0.9);
}
.chat-header-info strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.chat-header-info span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #22c55e;
}

.chat-messages {
  flex: 1;
  max-height: 420px;
  min-height: 200px;
  overflow-y: auto;
  padding: 28px 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(252,85,45,0.3); border-radius: 2px; }

.chat-msg {
  display: flex;
  gap: 12px;
  max-width: 82%;
  animation: fadeUp 0.3s ease both;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }

.chat-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  align-self: flex-end;
}

.chat-bubble {
  padding: 13px 17px;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.62;
}
.chat-msg.bot .chat-bubble {
  background: rgba(0,64,72,0.75);
  border: 1px solid rgba(0,90,102,0.5);
  border-radius: 0 14px 14px 14px;
  color: var(--white);
}
.chat-msg.user .chat-bubble {
  background: var(--red);
  color: white;
  border-radius: 14px 0 14px 14px;
}

/* Typing dots */
.typing-dots {
  display: flex !important;
  gap: 5px;
  align-items: center;
  padding: 16px 20px !important;
}
.typing-dots span {
  width: 7px; height: 7px;
  background: rgba(245,240,235,0.45);
  border-radius: 50%;
  animation: typingDot 1.3s ease infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-7px); opacity: 1; }
}

/* Quick replies */
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 28px;
  min-height: 0;
}
.quick-reply {
  background: transparent;
  border: 1px solid rgba(252,85,45,0.4);
  color: rgba(245,240,235,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 24px;
  transition: all 0.2s;
  white-space: nowrap;
}
.quick-reply:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* Input area */
.chat-input-area {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  flex-shrink: 0;
}
#chatInput {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  padding: 16px 20px;
  outline: none;
}
#chatInput::placeholder { color: rgba(245,240,235,0.3); }
#chatInput:disabled { opacity: 0.4; cursor: not-allowed; }

#chatSend {
  background: var(--red);
  border: none;
  padding: 0 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
#chatSend:hover { background: var(--red-dark); }
#chatSend:disabled { opacity: 0.4; cursor: not-allowed; }
#chatSend svg {
  width: 18px; height: 18px;
  stroke: white; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── CTA FINAL ─── */
.cta-final {
  background: linear-gradient(150deg, #020e12 0%, #00232e 45%, #011018 80%, #060606 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(252,85,45,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
}
.cta-final h2 span { color: var(--red); }
.cta-final p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245,240,235,0.75);
  max-width: 480px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}
.cta-final .btn-primary { position: relative; z-index: 2; font-size: 0.9rem; padding: 18px 48px; }

/* ─── FOOTER ─── */
footer {
  background: #ffffff;
  color: var(--black);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 48px 56px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--black);
}
.footer-logo span { color: var(--red); }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 32px;
}
.footer-tagline strong { color: var(--black); font-weight: 600; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--red); }
.footer-contact-item svg {
  width: 15px; height: 15px;
  stroke: var(--red);
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-social-link {
  color: #000;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--red); }

/* ─── FAQ ─── */
.footer-faq-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-faq-title::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--red); }
.faq-q::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
}
details[open] .faq-q::after { content: '−'; }

.faq-a {
  font-size: 0.9rem;
  line-height: 1.72;
  color: #555;
  padding: 0 24px 20px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 20px 48px;
  max-width: 1120px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #999;
}
.footer-bottom strong { color: #777; font-weight: 500; }

/* ─── CHATBOT BUBBLE ─── */
.chatbot-bubble {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 990;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 14px;
}
.chatbot-tooltip {
  background: #ffffff;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.55;
  padding: 13px 16px;
  max-width: 210px;
  text-align: left;
  border-radius: 14px 14px 0 14px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  position: relative;
  animation: fadeUp 0.5s ease 1s both;
}
.chatbot-tooltip strong { font-weight: 700; }
.chatbot-tooltip::after {
  content: '';
  position: absolute;
  right: -9px; bottom: 14px;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid #ffffff;
}
.chatbot-btn {
  width: 68px; height: 68px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: none;
  transition: transform 0.2s;
  animation: fadeUp 0.4s ease 0.8s both;
}
.chatbot-btn:hover { transform: scale(1.08); }

.chatbot-avatar-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 1px solid #ff7b00;
}
.chatbot-btn[aria-expanded="true"] .chatbot-avatar-img { display: none; }
.chatbot-btn[aria-expanded="true"] .icon-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── DIVIDER ─── */
.red-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
  opacity: 0.4;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── SCROLL REVEAL — BLOCO 2 (Sobre) ─── */
.sr-from-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sr-from-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sr-from-left.active,
.sr-from-bottom.active {
  opacity: 1;
  transform: translate(0, 0);
}
.sr-delay-0 { transition-delay: 0s; }
.sr-delay-1 { transition-delay: 0.2s; }
.sr-delay-2 { transition-delay: 0.4s; }
.sr-delay-3 { transition-delay: 0.6s; }

/* ─── RESPONSIVE 900px ─── */
@media (max-width: 900px) {
  nav { padding: 20px 32px; gap: 12px; }
  nav.scrolled { padding: 14px 32px; }
  .hero-left { padding: 110px 32px 40px 32px; }

  .footer-top { grid-template-columns: 1fr; gap: 48px; padding: 56px 32px 40px; }
  .footer-bottom { padding: 18px 32px; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 110px 32px 40px; }
  .hero-right { padding: 0 32px 56px; }
  .video-frame { max-width: 100%; }

  .about-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .roles-split { flex-direction: column; }
  .roles-center-divider {
    flex-direction: row;
    width: 100%; height: 52px;
    padding: 0 48px;
  }
  .roles-center-line {
    flex: 1;
    width: auto; height: 1px;
    min-height: 0;
    background: linear-gradient(to right, transparent, rgba(252,85,45,0.18), transparent);
  }
  .profile-inner { grid-template-columns: 1fr; gap: 48px; }

  .diff-cards { grid-template-columns: 1fr; gap: 2px; }

  .container { padding: 0 24px; }

  .chat-messages { max-height: 380px; }

  .chatbot-bubble { bottom: 20px; right: 20px; }
  .chatbot-tooltip { max-width: 170px; font-size: 0.78rem; }
  .chat-popup { right: 20px; bottom: 92px; width: calc(100vw - 40px); max-width: 380px; }

  /* Partners strip improvements */
  .partners-strip { padding: 20px 0; }
  .partners-label { font-size: 0.9rem; padding: 0 20px 0 32px; }
  .logo-item { padding: 0 30px; }
  .logo-img { height: 56px; }

  /* Flow section improvements */
  .flow-track { gap: 40px; }
  .flow-card { max-width: 180px; padding: 28px 18px; }
  .flow-ghost-num { font-size: 1.6rem; }

  /* How works cards */
  .howworks-cards { gap: 16px; }
  .hw-card { padding: 32px 24px; }
  .hw-card-number { font-size: 4rem; }

  /* Gigantes improvements */
  .gigantes-left { padding: 80px 32px 80px 6%; }
  .gigantes-right { padding: 48px 32px; }
  .gigantes-img { max-width: 100%; height: auto; }
  .gigantes-metrics { gap: 24px; }
  .metric-value { font-size: 1.6rem; }
  
  /* Container da imagem responsivo */
  .gigantes-right > div:first-child {
    max-width: none;
    border-radius: 16px;
  }
  
  /* Container da imagem responsivo */
  .gigantes-right > div:first-child {
    border-radius: 16px;
  }
  .gigantes-img {
    border-radius: 16px;
  }

  /* Show mobile menu toggle */
  .nav-menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 40px 20px;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-cta {
    margin: 20px 0;
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}

/* ─── RESPONSIVE 600px ─── */
@media (max-width: 600px) {
  nav { padding: 14px 20px; gap: 10px; }
  nav.scrolled { padding: 12px 20px; }

  .footer-top { padding: 48px 20px 36px; gap: 40px; }
  .footer-bottom { padding: 16px 20px; }
  .nav-logo { font-size: 0.95rem; letter-spacing: 0.06em; }
  .nav-cta { font-size: 0.68rem; padding: 9px 14px; letter-spacing: 0.06em; margin-right: 4px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }

  .hero-left { padding: 96px 20px 36px; }
  .hero-right { padding: 0 20px 48px; }
  .hero h1 { font-size: 2rem; line-height: 1.12; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary { width: 100%; text-align: center; }

  .about,
  .differentials,
  .profile,
  .cta-final { padding: 80px 0; }
  .qualification { padding: 72px 0 88px; }

  .about h2,
  .profile h2,
  .diff-header h2,
  .cta-final h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .qual-header { margin-bottom: 32px; }
  .qual-header h2 { font-size: 1.6rem; }

  .chat-header { padding: 14px 18px; }
  .chat-messages { max-height: 320px; padding: 18px 16px 10px; gap: 16px; }
  .chat-msg { max-width: 90%; }
  .chat-bubble { font-size: 0.88rem; padding: 12px 14px; }
  .chat-quick-replies { padding: 8px 16px; gap: 6px; }
  .quick-reply { font-size: 0.78rem; padding: 7px 14px; }
  #chatInput { font-size: 0.88rem; padding: 14px 16px; }
  #chatSend { padding: 0 16px; }

  .partners-strip { padding: 24px 0; }
  .partners-label { display: none; }
  .partners-divider { display: none; }
  .logo-item { padding: 0 28px; }
  .logo-img { height: 48px; }

  .chatbot-bubble { bottom: 16px; right: 16px; gap: 10px; }
  .chatbot-tooltip { max-width: 150px; font-size: 0.74rem; padding: 10px 12px; }
  .chatbot-btn { width: 52px; height: 52px; }

  /* Flow section mobile improvements */
  .flow-section { padding: 72px 0 80px; }
  .flow-wrap { padding: 0 20px; }
  .flow-header { margin-bottom: 44px; }
  .flow-header h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .flow-card { padding: 24px 16px; max-width: 100%; }
  .flow-ghost-num { font-size: 2.4rem; margin-bottom: 12px; }
  .flow-card h3 { font-size: 0.85rem; }
  .flow-card p { font-size: 0.78rem; }

  /* How works mobile improvements */
  .howworks-container { padding: 72px 20px; }
  .howworks-cards { grid-template-columns: 1fr; gap: 12px; }
  .hw-card { padding: 24px 20px; aspect-ratio: auto; min-height: 200px; }
  .hw-card-number { font-size: 3.2rem; margin-bottom: 16px; }
  .hw-card h3 { font-size: 1rem; margin-top: 0; }
  .hw-card p { font-size: 0.85rem; }
  .hw-step-nums { grid-template-columns: 1fr; gap: 16px; }
  .hw-step-num { width: 56px; height: 56px; font-size: 1.2rem; }

  /* Gigantes mobile improvements */
  .gigantes-left { padding: 64px 20px 64px 5%; }
  .gigantes-right { padding: 32px 20px; }
  .gigantes-content { max-width: 100%; }
  .gigantes-headline { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .gigantes-body { font-size: 0.95rem; margin-bottom: 32px; }
  .gigantes-checklist { margin-bottom: 32px; gap: 12px; }
  .gigantes-check-item { font-size: 0.85rem; }
  .gigantes-metrics { gap: 16px; padding: 24px 0; margin-bottom: 32px; }
  .metric-value { font-size: 1.4rem; }
  .metric-label { font-size: 0.6rem; }
  .gigantes-img { max-width: 100%; height: auto; border-radius: 16px; }
  .gigantes-quote { margin-top: 32px; }
  .gigantes-quote-text { font-size: clamp(1.2rem, 5vw, 1.5rem); line-height: 1.2; }
  
  /* Container da imagem mobile */
  .gigantes-right > div:first-child {
    border-radius: 16px;
  }

  /* About section mobile */
  .about { padding: 72px 0; }
  .about-header { margin-bottom: 32px; }
  .about h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 24px; }
  .about-intro { font-size: 0.95rem; margin-bottom: 24px; }
  .roles-split { gap: 16px; }
  .role-panel { padding: 32px 20px; }
  .role-title { font-size: 0.95rem; }
  .role-desc { font-size: 0.85rem; }
  .roles-center-divider { padding: 32px 16px; width: 40px; }
  .roles-center-badge { width: 36px; height: 36px; }

  /* Profile section mobile */
  .profile { padding: 72px 0; }
  .profile-inner { gap: 32px; }
  .profile h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 20px; }
  .profile-intro { font-size: 0.95rem; margin-bottom: 32px; }
  .profile-items { gap: 16px; }
  .profile-item { padding: 20px; }
  .profile-item-text h4 { font-size: 0.9rem; }
  .profile-item-text p { font-size: 0.85rem; }

  /* Differentials mobile */
  .differentials { padding: 72px 0; }
  .diff-header { margin-bottom: 48px; }
  .diff-header h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .diff-card { padding: 32px 24px; }
  .diff-number { font-size: 3rem; margin-bottom: 16px; }
  .diff-title { font-size: 0.9rem; margin-bottom: 12px; }
  .diff-desc { font-size: 0.85rem; }

  /* Qualification mobile */
  .qualification { padding: 64px 0 80px; }
  .qual-header h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .qual-header p { font-size: 0.95rem; max-width: 100%; }
  .qual-btn { padding: 16px 32px; font-size: 0.85rem; margin-top: 32px; }

  /* Footer mobile improvements */
  .footer-faq-title { font-size: 0.62rem; margin-bottom: 20px; }
  .faq-q { font-size: 0.85rem; padding: 16px 0; }
  .faq-a { font-size: 0.85rem; padding: 0 20px 16px 0; }
  .footer-tagline { font-size: 0.82rem; margin-bottom: 24px; }
  .footer-socials { gap: 16px; }
}

/* ─── RESPONSIVE 400px ─── */
@media (max-width: 400px) {
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 0.85rem; }
  .nav-cta { font-size: 0.62rem; padding: 8px 12px; margin-right: 6px; }

  .hero-left { padding: 80px 16px 32px; }
  .hero h1 { font-size: 1.8rem; line-height: 1.15; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { gap: 10px; }
  .btn-primary { padding: 14px 24px; font-size: 0.8rem; }
  .btn-ghost { font-size: 0.82rem; }

  .container { padding: 0 16px; }
  .chat-msg { max-width: 95%; }

  /* Partners ultra mobile */
  .logo-item { padding: 0 20px; }
  .logo-img { height: 40px; }

  /* Flow ultra mobile */
  .flow-section { padding: 56px 0 64px; }
  .flow-wrap { padding: 0 16px; }
  .flow-card { padding: 20px 12px; }
  .flow-ghost-num { font-size: 2rem; }
  .flow-card h3 { font-size: 0.8rem; }
  .flow-card p { font-size: 0.75rem; }

  /* How works ultra mobile */
  .howworks-container { padding: 56px 16px; }
  .hw-card { padding: 20px 16px; min-height: 180px; }
  .hw-card-number { font-size: 2.8rem; }
  .hw-card h3 { font-size: 0.9rem; }
  .hw-card p { font-size: 0.8rem; }

  /* Gigantes ultra mobile */
  .gigantes-left { padding: 48px 16px 48px 3%; }
  .gigantes-right { padding: 24px 16px; }
  .gigantes-headline { font-size: clamp(1.6rem, 6vw, 2rem); }
  .gigantes-body { font-size: 0.9rem; }
  .gigantes-check-item { font-size: 0.8rem; gap: 12px; }
  .gigantes-metrics { gap: 12px; padding: 20px 0; }
  .metric-value { font-size: 1.2rem; }
  .metric-label { font-size: 0.55rem; }
  .gigantes-quote-text { font-size: clamp(1.2rem, 5vw, 1.5rem); }

  /* About ultra mobile */
  .about { padding: 56px 0; }
  .role-panel { padding: 24px 16px; }
  .role-title { font-size: 0.9rem; }
  .role-desc { font-size: 0.8rem; }

  /* Profile ultra mobile */
  .profile { padding: 56px 0; }
  .profile-item { padding: 16px; gap: 12px; }
  .profile-icon { width: 32px; height: 32px; }

  /* Differentials ultra mobile */
  .differentials { padding: 56px 0; }
  .diff-card { padding: 24px 20px; }
  .diff-number { font-size: 2.5rem; }
  .diff-title { font-size: 0.85rem; }
  .diff-desc { font-size: 0.8rem; }

  /* Qualification ultra mobile */
  .qualification { padding: 48px 0 64px; }
  .qual-header h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .qual-header p { font-size: 0.9rem; }
  .qual-btn { padding: 14px 28px; font-size: 0.8rem; }

  /* Footer ultra mobile */
  .footer-top { padding: 40px 16px 32px; }
  .footer-faq-title { font-size: 0.58rem; }
  .faq-q { font-size: 0.8rem; padding: 14px 0; }
  .faq-a { font-size: 0.8rem; }
  .footer-bottom { padding: 14px 16px; }
  .footer-bottom p { font-size: 0.72rem; }

  /* Chat ultra mobile */
  .chat-popup { width: calc(100vw - 32px); right: 16px; bottom: 80px; }
  .chat-header { padding: 12px 14px; }
  .chat-messages { padding: 16px 12px 8px; max-height: 280px; }
  .chat-bubble { font-size: 0.82rem; padding: 10px 12px; }
  #chatInput { font-size: 0.82rem; padding: 12px 14px; }
  .quick-reply { font-size: 0.72rem; padding: 6px 12px; }

  /* Partners strip animation speed for mobile */
  .marquee-inner { animation-duration: 24s; }
}

/* ═══════════════════════════════════════════════
   DIFERENCIAIS · 3 Cards
   ═══════════════════════════════════════════════ */

.howworks {
  background:
    radial-gradient(circle, rgba(0,90,102,0.18) 1px, transparent 1px),
    linear-gradient(150deg, #021a22 0%, #00414f 45%, #012030 80%, #0a0a0a 100%);
  background-size: 38px 38px, 100% 100%;
  position: relative;
  overflow: hidden;
}

.howworks::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,90,102,0.35) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.howworks::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,64,72,0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.howworks-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 48px;
  position: relative;
  z-index: 1;
}

.howworks-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.howworks-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--white);
}
.howworks-header h2 span { color: var(--red); }

.howworks-header > p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(245,240,235,0.72);
  padding-top: 16px;
  border-top: 1px solid rgba(0,140,160,0.2);
}

/* ─── CARDS GRID ─── */
.howworks-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hw-card {
  background: rgba(0, 55, 65, 0.45);
  border: 1px solid rgba(0,140,160,0.3);
  border-radius: 0;
  padding: 36px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.38s ease,
    opacity 0.38s ease;
}

/* Top accent bar slides in on hover */
.hw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,200,220,0.9), rgba(0,140,160,0.3));
  border-radius: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Corner bracket — bottom right decoration */
.hw-card::after {
  content: '';
  position: absolute;
  bottom: 20px; right: 20px;
  width: 28px; height: 28px;
  border-bottom: 1px solid rgba(0,160,180,0.25);
  border-right: 1px solid rgba(0,160,180,0.25);
  transition: border-color 0.35s ease, width 0.35s ease, height 0.35s ease;
}

.hw-card:hover {
  transform: translateY(-10px);
  border-color: var(--red);
  background: var(--red);
  box-shadow:
    0 28px 72px rgba(252,85,45,0.35),
    0 0 0 1px rgba(252,85,45,0.3),
    0 0 60px rgba(252,85,45,0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.hw-card:hover::before {
  transform: scaleX(1);
  background: rgba(255,255,255,0.25);
}

.hw-card:hover::after {
  border-color: rgba(255,255,255,0.35);
  width: 36px; height: 36px;
}

/* Number */
.hw-card-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: auto;
  transition: color 0.38s ease;
}

.hw-card:hover .hw-card-number {
  color: rgba(0,0,0,0.25);
}

/* Title */
.hw-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  margin-top: 20px;
  letter-spacing: 0.01em;
  transition: color 0.38s ease;
}

.hw-card:hover h3 { color: #ffffff; }

/* Body */
.hw-card p {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(245,240,235,0.65);
  transition: color 0.38s ease;
}

.hw-card:hover p { color: rgba(255,255,255,0.88); }

/* ─── HW STEP NUMS ─── */
.howworks-band { position: relative; }

.hw-step-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  position: relative;
}

.hw-step-nums::before {
  content: '';
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}

.hw-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hw-step-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: center;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.hw-step-item:has(.hw-step-num.active) .hw-step-label {
  color: rgba(252,85,45,0.9);
}

.hw-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.28);
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.hw-step-num:hover {
  transform: scale(1.08);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.55);
}

.hw-step-num.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(252,85,45,0.18);
}

/* ─── RESPONSIVE 900px ─── */
@media (max-width: 900px) {
  .howworks-container { padding: 80px 32px; }
  .howworks-cards { gap: 16px; }
  .hw-card { padding: 28px; }
  .hw-card-number { font-size: 3.8rem; }
}

/* ─── RESPONSIVE 600px ─── */
@media (max-width: 600px) {
  .howworks-container { padding: 72px 20px; }
  .howworks-cards { grid-template-columns: 1fr; gap: 14px; }
  .hw-card { padding: 28px; aspect-ratio: auto; min-height: 200px; }
  .hw-card-number { font-size: 3.2rem; margin-bottom: 16px; }
  .hw-card h3 { margin-top: 0; }
  .hw-card:hover { transform: translateY(-4px); }
}

/* ═══════════════════════════════════════════════
   FLOW SECTION — BLOCO 3
   ═══════════════════════════════════════════════ */

.flow-section {
  background: #080808;
  padding: 120px 0 130px;
  position: relative;
  overflow: hidden;
}

.flow-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse, rgba(252,85,45,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.flow-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── HEADER ─── */
.flow-header {
  text-align: center;
  margin-bottom: 72px;
}

.flow-tag {
  justify-content: center !important;
}
.flow-tag::before { display: none !important; }

.flow-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.flow-header h2 span { color: var(--red); }

.flow-header p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,240,235,0.42);
}

/* ─── TRACK ─── */
.flow-track {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;
  align-items: center;
}

/* ─── NODE ─── */
.flow-node {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.flow-node:nth-child(1) { transition-delay: 0s; }
.flow-node:nth-child(3) { transition-delay: 0.15s; }
.flow-node:nth-child(5) { transition-delay: 0.3s; }
.flow-node:nth-child(7) { transition-delay: 0.45s; }

.flow-section.flow-visible .flow-node {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CARD ─── */
.flow-card {
  width: 100%;
  max-width: 220px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(252,85,45,0.14);
  padding: 34px 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* top glow line */
.flow-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252,85,45,0.6), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.flow-card:hover {
  border-color: rgba(252,85,45,0.38);
  background: rgba(252,85,45,0.05);
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(252,85,45,0.1), 0 0 0 1px rgba(252,85,45,0.15);
}
.flow-card:hover::after { opacity: 1; }

/* highlight variant (VendaMais) */
.flow-card--highlight {
  border-color: rgba(252,85,45,0.18);
  background: rgba(252,85,45,0.03);
  box-shadow: none;
}
.flow-card--highlight::after { opacity: 0.25; }

/* ghost number */
.flow-ghost-num {
  position: absolute;
  top: 10px; right: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(252,85,45,0.07);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}
.flow-card:hover .flow-ghost-num { color: rgba(252,85,45,0.14); }

/* icon */
.flow-icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(252,85,45,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(252,85,45,0.04);
  flex-shrink: 0;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.flow-icon svg {
  width: 20px; height: 20px;
  stroke: var(--red);
  transition: stroke 0.35s ease;
}
.flow-card:hover .flow-icon {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 22px rgba(252,85,45,0.5);
}
.flow-card:hover .flow-icon svg { stroke: #ffffff; }

/* title */
.flow-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  transition: color 0.35s ease;
}

/* description */
.flow-card p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(245,240,235,0.36);
  transition: color 0.35s ease;
}
.flow-card:hover p { color: rgba(245,240,235,0.58); }

/* ─── CONNECTOR ─── */
.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.flow-connector:nth-child(2) { transition-delay: 0.08s; }
.flow-connector:nth-child(4) { transition-delay: 0.23s; }
.flow-connector:nth-child(6) { transition-delay: 0.38s; }

.flow-section.flow-visible .flow-connector { opacity: 1; }

.flow-conn-line {
  width: 100%;
  height: 1px;
  background: rgba(252,85,45,0.18);
  position: relative;
  overflow: visible;
}

.flow-conn-glow {
  position: absolute;
  top: -3px;
  left: -100%;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, transparent, rgba(252,85,45,0.85), transparent);
  border-radius: 4px;
  filter: blur(1.5px);
  animation: connGlow 3s linear infinite;
}


.flow-conn-label {
  position: absolute;
  top: calc(50% + 12px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Syne', sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252,85,45,0.35);
  white-space: nowrap;
}

@keyframes connGlow {
  0%   { left: -100%; opacity: 0; }
  8%   { opacity: 1; }
  45%  { opacity: 1; }
  55%  { left: 100%; opacity: 0; }
  100% { left: 100%; opacity: 0; }
}

/* ─── RESPONSIVE 1100px ─── */
@media (max-width: 1100px) {
  .flow-track { grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr; }
  .flow-card { max-width: 190px; padding: 28px 16px 24px; }
  .flow-ghost-num { font-size: 1.8rem; }
}

/* ─── RESPONSIVE 820px — vertical stack ─── */
@media (max-width: 820px) {
  .flow-section { padding: 80px 0 90px; }
  .flow-wrap { padding: 0 32px; }
  .flow-header { margin-bottom: 52px; }

  .flow-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .flow-node {
    width: 100%;
    max-width: 340px;
  }

  .flow-card { max-width: 100%; }

  .flow-connector {
    width: 1px;
    height: 56px;
    flex-direction: row;
  }

  .flow-conn-line {
    width: 1px;
    height: 100%;
    background: rgba(252,85,45,0.18);
  }

  .flow-conn-glow {
    left: -3px;
    top: -100%;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(252,85,45,0.85), transparent);
    animation: connGlowV 3s linear infinite;
  }

  
  .flow-conn-label { display: none; }

  @keyframes connGlowV {
    0%   { top: -100%; opacity: 0; }
    8%   { opacity: 1; }
    45%  { opacity: 1; }
    55%  { top: 100%; opacity: 0; }
    100% { top: 100%; opacity: 0; }
  }
}

/* ─── RESPONSIVE 600px ─── */
@media (max-width: 600px) {
  .flow-section { padding: 72px 0 80px; }
  .flow-wrap { padding: 0 20px; }
  .flow-header { margin-bottom: 44px; }
  .flow-card { padding: 26px 16px 22px; }
}

/* ═══════════════════════════════════════════════
   BLOCO 3 — WHITE / TEAL THEME
   ═══════════════════════════════════════════════ */

.flow-section {
  background: #ffffff;
}
.flow-section::before {
  background: radial-gradient(ellipse, rgba(0,64,72,0.04) 0%, transparent 70%);
}

/* Header text */
.flow-section .section-tag { color: var(--teal); }
.flow-header h2 { color: var(--black); }
.flow-header p { color: #777; }

/* Numbers — static, visible, black */
.flow-section .flow-ghost-num {
  position: static;
  display: block;
  color: var(--black);
  font-size: 2.8rem;
  pointer-events: auto;
  margin-bottom: 14px;
  transition: none;
}
.flow-section .flow-card:hover .flow-ghost-num { color: var(--black); }

/* Icons: hidden */
.flow-section .flow-icon { display: none; }

/* Cards — light */
.flow-section .flow-card {
  background: #fafafa;
  border-color: rgba(0,64,72,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.flow-section .flow-card::after {
  background: linear-gradient(90deg, transparent, rgba(0,64,72,0.45), transparent);
}
.flow-section .flow-card:hover {
  border-color: rgba(0,64,72,0.26);
  background: rgba(0,64,72,0.025);
  box-shadow: 0 18px 52px rgba(0,64,72,0.08), 0 0 0 1px rgba(0,64,72,0.1);
}
.flow-section .flow-card--highlight {
  border-color: rgba(0,64,72,0.12);
  background: rgba(0,64,72,0.02);
  box-shadow: none;
}
.flow-section .flow-card--highlight::after { opacity: 0.15; }

/* Card text */
.flow-section .flow-card h3 { color: var(--black); }
.flow-section .flow-card p { color: #666; }
.flow-section .flow-card:hover p { color: #444; }

/* Connectors — teal */
.flow-section .flow-conn-line { background: rgba(0,64,72,0.14); }
.flow-section .flow-conn-glow { display: none; }
.flow-section .flow-conn-label { color: rgba(0,64,72,0.36); }

/* Mobile vertical connector — teal */
@media (max-width: 820px) {
  }

/* ═══════════════════════════════════════════════
   BLOCO 5 — WHITE / TEAL THEME + SMALLER IMAGE
   ═══════════════════════════════════════════════ */

/* =============================================
   SEÇÃO GIGANTES — VM Partners
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #ffffff;
  color: #111;
}

/* ─── SEÇÃO PRINCIPAL ─────────────────────── */
.gigantes {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.gigantes-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* ─── LEFT ─────────────────────────────────── */
.gigantes-left {
  flex: 0 0 52%;
  display: flex;
  align-items: center;
  padding: 3.5rem 4rem 2rem 5rem;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.gigantes-content {
  max-width: 100%;
  width: 100%;
}

/* Tag */
.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF5000;
  margin-bottom: 1.4rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 26px;
  height: 2.5px;
  background: #FF5000;
  flex-shrink: 0;
}

/* Headline */
.gigantes-headline {
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: #0a0a0a;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
.gigantes-headline span {
  color: #FF5000;
}

/* Body */
.gigantes-body {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: #444;
  margin-bottom: 2rem;
  max-width: 100%;
}

/* ─── Checklist com ícones ─────────────────── */
.gigantes-checklist {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.2rem;
  gap: 0.8rem;
}

.gigantes-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0.4rem 0;
}

.check-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF5000;
}
.check-icon svg {
  width: 32px;
  height: 32px;
}

.check-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}
.check-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.check-text span {
  font-size: 0.82rem;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
}

/* ─── Métricas ────────────────────────────── */
.gigantes-metrics {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 1.2rem;
}
.gigantes-metric {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.metric-value {
  font-family: 'Tektur', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #FF5000;
  line-height: 1;
  letter-spacing: -0.01em;
}
.metric-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}
.gigantes-metric-div {
  display: none;
}

/* Logo VendaMais */
.vendamais-logo {
  height: 52px;
  width: auto;
  display: block;
}

/* ─── RIGHT: insight cards ────────────────── */
.gigantes-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem 2rem 2rem;
  background: #fff;
}

.gigantes-right::before {
  display: none;
}

.insight-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  position: relative;
  padding: 0.5rem 0;
}

/* linha vertical central */
.insight-cards::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #FF5000 15%, #FF5000 85%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.insight-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #111;
  border: 1px solid #FF5000;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  position: relative;
  z-index: 1;
  width: 46%;
  transition: background 0.2s, box-shadow 0.2s;
}
.insight-card:hover {
  background: #1a1a1a;
  box-shadow: 0 4px 24px rgba(255,80,0,0.18);
}

/* zigzag: ímpares à esquerda, pares à direita */
.insight-card:nth-child(odd) {
  align-self: flex-start;
}
.insight-card:nth-child(even) {
  align-self: flex-end;
}

/* ponto de conexão na linha central */
.insight-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #FF5000;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.insight-card:nth-child(odd)::after {
  right: -5%;
}
.insight-card:nth-child(even)::after {
  left: -5%;
}

.insight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,80,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-icon svg {
  width: 18px;
  height: 18px;
}

.insight-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.insight-value {
  font-family: 'Tektur', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #FF5000;
  line-height: 1.1;
}
.insight-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #aaa;
  line-height: 1.4;
}

.insight-tip {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #ccc;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
  display: block;
}

.insight-card:hover .insight-tip {
  max-height: 80px;
  opacity: 1;
  margin-top: 6px;
}

/* ─── BADGES STRIP: carrosel full-width desktop ─── */
.badges-strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
  padding: 1rem 0;
  background: #fff;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.badges-marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  align-items: center;
}

.badge-marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 3.5rem;
  flex-shrink: 0;
  text-align: center;
}
.badge-marquee-item .badge-text {
  text-align: center;
}

/* Badges abaixo da imagem */
.gigantes-badges {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2.5rem;
  padding: 1.2rem 2.5rem;
  background: #ffffff;
  border-top: none;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.badge-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #222;
  line-height: 1.7;
}

.badge-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #FF5000;
  margin-top: 2px;
}
.badge-icon svg {
  width: 32px;
  height: 32px;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #222;
  line-height: 1.4;
}

/* ─── Animação fade-in ────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsivo ──────────────────────────── */
@media (max-width: 900px) {
  .gigantes {
    flex-direction: column;
  }
  .gigantes-left {
    flex: none;
    width: 100%;
    padding: 3rem 1.5rem;
  }
  .gigantes-right {
    height: 55vw;
    min-height: 300px;
  }
  .gigantes-right .gigantes-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .gigantes-badges {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Carrosel de métricas — oculto em desktop */
.metrics-marquee-track {
  display: none;
}

@media (max-width: 600px) {
  .gigantes-right {
    display: none;
  }
  .badges-strip {
    display: none;
  }
  .gigantes-left {
    flex: none;
    width: 100%;
    padding: 2.5rem 1.2rem;
  }
  .gigantes-metrics {
    display: none;
  }
  .metrics-marquee-track {
    display: block;
    overflow: hidden;
    width: 100%;
    margin-bottom: 2rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }
  .metrics-marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 8s linear infinite;
    gap: 0;
  }
  .metrics-marquee-item {
    flex-shrink: 0;
    padding: 0 2.5rem;
    text-align: center;
    border-right: 1px solid #eee;
  }
  .metrics-marquee-item:last-child {
    border-right: none;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .gigantes-right { padding: 32px 24px 32px; }
  .gigantes-img-wrap { min-height: 280px; flex: 0 0 280px; }
  .gigantes-quote-text { font-size: clamp(1.5rem, 5vw, 2rem); }
}

@media (max-width: 600px) {
  .gigantes-right { padding: 24px 16px 24px; }
  .gigantes-img-wrap { min-height: 220px; flex: 0 0 220px; }
  .gigantes-quote-text { font-size: 1.4rem; }
}
