/* ================================================================
   KAIQUE VILELA — SITE INSTITUCIONAL
   Arquivo: css/style.css
   
   FONTES:
   - Títulos/Botões: Plus Jakarta Sans ExtraBold (substituto Gilroy ExtraBold)
   - Corpo/Apoio: Plus Jakarta Sans Light (substituto Gilroy Light)
   - Headline Hero / Números Stats: fonte display geométrica via @font-face MONAMI
     → Para trocar pela MONAMI original: substitua a fonte abaixo na regra @font-face
       e coloque os arquivos .woff2 na pasta /fonts/
   
   PALETTE:
   - Fundo geral:        #f1efef
   - Texto principal:    #302f3b
   - Destaque primário:  #6c63ff
   - Gradiente blob 1:   #00c4ff
   - Gradiente blob 2:   #ff2caa
   ================================================================ */

/* ----------------------------------------------------------------
   @font-face — FONTE DISPLAY (MONAMI / substituto)
   Para usar a fonte MONAMI original:
   1. Coloque os arquivos monami.woff2 (e monami.woff como fallback) na pasta /fonts/
   2. Altere as propriedades src abaixo apontando para os arquivos corretos
   3. Troque 'Clash Display' por 'MONAMI' em --font-display
   ---------------------------------------------------------------- */
/* 
@font-face {
  font-family: 'MONAMI';
  src: url('../fonts/monami.woff2') format('woff2'),
       url('../fonts/monami.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*/

/* Importando fonte display de fallback via Google Fonts embed */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');

/* ----------------------------------------------------------------
   CUSTOM PROPERTIES — DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Colors */
  --color-bg:          #f1efef;
  --color-text:        #302f3b;
  --color-text-muted:  #6b697e;
  --color-primary:     #6c63ff;
  --color-accent-1:    #00c4ff;
  --color-accent-2:    #ff2caa;
  --color-white:       #ffffff;
  --color-border:      rgba(255, 255, 255, 0.6);
  --color-shadow:      rgba(108, 99, 255, 0.08);

  /* Typography */
  --font-display:      'Space Grotesk', 'Plus Jakarta Sans', sans-serif; /* → trocar por 'MONAMI' quando disponível */
  --font-heading:      'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:         'Plus Jakarta Sans', system-ui, sans-serif;

  /* Weights */
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;
  --fw-extrabold: 800;

  /* Glassmorphism — INTENSIFICADO: vidro real, opaco o suficiente para leitura mas translúcido */
  --glass-bg:          rgba(255, 255, 255, 0.62);
  --glass-bg-strong:   rgba(255, 255, 255, 0.78);
  --glass-blur:        24px;
  --glass-border:      1px solid rgba(255, 255, 255, 0.85);
  --glass-border-inner:1px solid rgba(255, 255, 255, 0.45);
  --glass-radius:      24px;
  --glass-shadow:      0 4px 24px rgba(108, 99, 255, 0.10), 0 1px 0 rgba(255,255,255,0.9) inset, 0 -1px 0 rgba(108,99,255,0.06) inset;
  --glass-shadow-hover:0 16px 48px rgba(108, 99, 255, 0.18), 0 1px 0 rgba(255,255,255,0.95) inset;

  /* Layout */
  --container-max:     1280px;
  --container-px:      clamp(24px, 5vw, 80px);
  --section-py:        clamp(64px, 9vw, 120px);
  --gap-section:       clamp(32px, 4vw, 48px);

  /* Animation */
  --ease-smooth:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:       cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:     150ms;
  --duration-normal:   300ms;
  --duration-slow:     600ms;

  /* Header */
  --header-height-desktop: 80px;
  --header-height-mobile:  64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY SCALE
   ---------------------------------------------------------------- */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.body-text {
  font-weight: var(--fw-light);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.eyebrow, .section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* ----------------------------------------------------------------
   LAYOUT — CONTAINER
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin-top: 16px;
}

/* ----------------------------------------------------------------
   GLASSMORPHISM BASE
   ---------------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  border: var(--glass-border);
  /* Borda superior clara simula reflexo de luz no vidro */
  border-top-color: rgba(255, 255, 255, 0.95);
  border-left-color: rgba(255, 255, 255, 0.80);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth),
              background var(--duration-normal) var(--ease-smooth);
}

/* ----------------------------------------------------------------
   GRADIENT BLOBS (background decorativo)
   ---------------------------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

/* Hero Blobs */
.blob-hero-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -10%; right: -5%;
  opacity: 0.2;
}
.blob-hero-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-accent-1) 0%, transparent 70%);
  bottom: 0%; left: -8%;
  opacity: 0.15;
}
.blob-hero-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--color-accent-2) 0%, transparent 70%);
  top: 40%; right: 30%;
  opacity: 0.12;
}

/* Sobre Blobs */
.blob-sobre-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-accent-1) 0%, transparent 70%);
  top: -20%; right: -10%;
  opacity: 0.12;
}
.blob-sobre-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--color-accent-2) 0%, transparent 70%);
  bottom: -10%; left: 20%;
  opacity: 0.1;
}

/* Outros Blobs */
.blob-nordeste-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  bottom: -15%; right: -10%;
  opacity: 0.12;
}
.blob-servicos-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-accent-2) 0%, transparent 70%);
  top: -15%; left: -10%;
  opacity: 0.12;
}
.blob-servicos-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--color-accent-1) 0%, transparent 70%);
  bottom: -10%; right: 10%;
  opacity: 0.12;
}
.blob-processo-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -10%; right: -15%;
  opacity: 0.10;
}
.blob-resultados-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-accent-2) 0%, transparent 70%);
  top: -20%; left: -10%;
  opacity: 0.15;
}
.blob-resultados-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-accent-1) 0%, transparent 70%);
  bottom: -10%; right: -5%;
  opacity: 0.15;
}
.blob-depoimentos-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}
.blob-cta-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}
.blob-cta-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-accent-1) 0%, transparent 70%);
  top: -30%; right: -10%;
  opacity: 0.15;
}
.blob-cta-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--color-accent-2) 0%, transparent 70%);
  bottom: -20%; left: -5%;
  opacity: 0.15;
}
.blob-contato-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -20%; right: -10%;
  opacity: 0.10;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  transition:
    transform var(--duration-normal) var(--ease-spring),
    box-shadow var(--duration-normal) var(--ease-smooth),
    background var(--duration-normal) var(--ease-smooth),
    outline var(--duration-fast) ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-pill {
  border-radius: 100px;
}

/* Primary button */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(108, 99, 255, 0.45), 0 0 0 2px rgba(0, 196, 255, 0.5);
}

.btn-primary:hover::after {
  opacity: 1;
}

/* Glass/outline button */
.btn-glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(48, 47, 59, 0.15);
  color: var(--color-text);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Header CTA */
.btn-header-cta {
  font-size: 0.85rem;
  padding: 10px 22px;
}

/* Hero primary */
.btn-hero-primary {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  padding: 16px 32px;
}

/* Hero secondary */
.btn-hero-secondary {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  padding: 16px 32px;
}

/* CTA final — maior */
.btn-cta-final {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  padding: 20px 40px;
}

/* Form button */
.btn-form {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

/* WhatsApp link estilo texto */
.btn-link-whatsapp {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
  margin-top: 20px;
  position: relative;
  text-decoration: none;
}

.btn-link-whatsapp::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-1));
  transition: width var(--duration-normal) var(--ease-smooth);
}

.btn-link-whatsapp:hover::after {
  width: 100%;
}

/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height-desktop);
  transition: background var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth),
              backdrop-filter var(--duration-normal) var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(241, 239, 239, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(108, 99, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(108, 99, 255, 0.2));
  transition: opacity var(--duration-normal), filter var(--duration-normal);
}

.logo-img:hover {
  opacity: 0.88;
  filter: drop-shadow(0 4px 16px rgba(108, 99, 255, 0.3));
}

.logo-fallback {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1.2rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* Desktop Nav */
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 0.88rem;
  color: var(--color-text);
  letter-spacing: 0.005em;
  transition: color var(--duration-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 100px;
  transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-smooth),
              opacity var(--duration-fast) ease;
  transform-origin: center;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(241, 239, 239, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 40px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth);
}

.mobile-menu:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 2rem;
  color: var(--color-text);
  display: block;
  padding: 12px 24px;
  text-align: center;
  transition: color var(--duration-fast);
  letter-spacing: -0.02em;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--color-primary);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  max-width: 280px;
  padding: 16px;
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.section-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height-desktop) + 40px);
  padding-bottom: 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-headline {
  margin-top: 4px;
}

.hero-subheadline {
  font-weight: var(--fw-light);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero-platforms com ícone real de cada plataforma */
.hero-platforms {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 100px;
  padding: 4px 10px 4px 6px;
  white-space: nowrap;
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.hero-platform-badge:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.hero-platform-badge svg {
  flex-shrink: 0;
  border-radius: 3px;
}

.hero-platform-sep {
  color: rgba(107, 105, 126, 0.35);
  font-size: 0.75rem;
  user-select: none;
}

/* ==================================================================
   HERO — FOTO COM PLATAFORMAS ORBITANDO
   ================================================================== */
.hero-visual {
  position: relative;
  height: 520px;
}

.hero-orbit-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Moldura da foto (círculo com anéis decorativos) */
.hero-photo-frame {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  z-index: 2;
}

.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 8px rgba(108, 99, 255, 0.12),
    0 0 0 16px rgba(108, 99, 255, 0.06),
    0 20px 60px rgba(108, 99, 255, 0.25);
  display: block;
  position: relative;
  z-index: 2;
  transition: box-shadow var(--duration-normal);
}

.hero-photo-frame:hover .hero-photo {
  box-shadow:
    0 0 0 8px rgba(108, 99, 255, 0.2),
    0 0 0 16px rgba(108, 99, 255, 0.1),
    0 24px 72px rgba(108, 99, 255, 0.35);
}

/* Anéis giratórios decorativos */
.hero-photo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1.5px dashed rgba(108, 99, 255, 0.20);
  animation: ring-spin 20s linear infinite;
  z-index: 1;
}

.hero-photo-ring-2 {
  inset: -36px;
  border-color: rgba(0, 196, 255, 0.15);
  border-style: dashed;
  animation: ring-spin 30s linear infinite reverse;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* Orbit badges — plataformas ao redor da foto */
.orbit-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 0.78rem;
  color: var(--color-text);
  white-space: nowrap;
  z-index: 10;
  cursor: default;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.orbit-badge:hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: var(--glass-shadow-hover);
}

.orbit-badge svg {
  flex-shrink: 0;
  border-radius: 4px;
}

/* Posicionamento dos 5 badges ao redor do círculo */
/* 1 — Topo: Google Ads */
.orbit-badge-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: float-1 4.5s ease-in-out infinite;
}

/* 2 — Direita topo: Meta Ads */
.orbit-badge-2 {
  top: 22%;
  right: -2%;
  animation: float-2 5s ease-in-out infinite 0.8s;
}

/* 3 — Direita baixo: LinkedIn Ads */
.orbit-badge-3 {
  bottom: 20%;
  right: -2%;
  animation: float-3 4.8s ease-in-out infinite 1.6s;
}

/* 4 — Baixo: TikTok Ads */
.orbit-badge-4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: float-4 5.2s ease-in-out infinite 0.5s;
}

/* 5 — Esquerda: Bing Ads */
.orbit-badge-5 {
  top: 40%;
  left: -4%;
  animation: float-5 4.2s ease-in-out infinite 1.2s;
}

/* Badge flutuante: +7 anos — topo esquerdo (fora dos orbit badges) */
.floating-badge {
  position: absolute;
  top: 8%;
  left: 2%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  z-index: 10;
  animation: float 4s ease-in-out infinite 2s;
  white-space: nowrap;
}

/* Animações individuais para cada badge (movimento independente) */
@keyframes float-1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes float-4 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes float-5 {
  0%, 100% { transform: translateY(0) rotate(0.5deg); }
  50% { transform: translateY(-7px) rotate(-0.5deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ----------------------------------------------------------------
   LOGO BAR (Faixa de credibilidade)
   ---------------------------------------------------------------- */
.logo-bar {
  padding-block: 32px;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(241,239,239,0.5) 50%, transparent 100%);
}

.logo-bar-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-block: 8px;
  /* Fade nas bordas */
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-bar-track::-webkit-scrollbar {
  display: none;
}

.logo-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  color: var(--color-text);
  white-space: nowrap;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.logo-bar-item:hover {
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   SOBRE
   ---------------------------------------------------------------- */
.sobre-inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-formacao {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  margin-top: 8px;
  border-radius: 16px;
}

.sobre-formacao-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.sobre-formacao strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.sobre-formacao p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Timeline */
.sobre-timeline {
  padding: 32px 28px;
  position: sticky;
  top: calc(var(--header-height-desktop) + 24px);
}

.timeline-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent-1), var(--color-accent-2));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
}

.timeline-step {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 0.8rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   NORDESTE / NICHOS
   ---------------------------------------------------------------- */
.nordeste-inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nordeste-mapa {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mapa-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  border: var(--glass-border);
  border-top-color: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow: var(--glass-shadow);
  padding: 24px;
  width: 100%;
  max-width: 420px;
}

.mapa-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(108, 99, 255, 0.15));
}

.nordeste-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nichos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.nicho-card {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.nicho-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.nicho-icon {
  width: 32px;
  height: 32px;
}

.nicho-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.3;
}

.nicho-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.nichos-mais {
  font-size: 0.88rem;
  font-style: italic;
  opacity: 0.75;
}

/* ----------------------------------------------------------------
   SERVIÇOS
   ---------------------------------------------------------------- */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.servico-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.servico-icon {
  width: 40px;
  height: 40px;
}

.servico-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1.1rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.servico-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.servico-arrow {
  font-size: 1.2rem;
  color: var(--color-primary);
  align-self: flex-start;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.servico-card:hover .servico-arrow {
  transform: translateX(6px);
}

/* ----------------------------------------------------------------
   COMO FUNCIONO (processo)
   ---------------------------------------------------------------- */
.section-processo {
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.03), transparent);
}

.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Linha conectora horizontal */
.processo-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-1), var(--color-accent-2));
  opacity: 0.4;
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.processo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
  position: relative;
  z-index: 1;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.processo-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-hover);
}

.processo-numero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  opacity: 0.5;
}

.processo-icon {
  width: 40px;
  height: 40px;
  background: rgba(108, 99, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
  box-sizing: content-box;
}

.processo-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.processo-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   RESULTADOS (stats)
   ---------------------------------------------------------------- */
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-weight: var(--fw-light);
}

/* ----------------------------------------------------------------
   DEPOIMENTOS
   ---------------------------------------------------------------- */
.depoimentos-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.depoimento-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0.6;
  transition: opacity var(--duration-normal), transform var(--duration-normal);
}

.depoimento-card.active {
  opacity: 1;
}

.depoimento-aspas {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.25;
  user-select: none;
}

.depoimento-texto {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-1));
  flex-shrink: 0;
}

.depoimento-nome {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 0.88rem;
  color: var(--color-text);
}

.depoimento-cargo {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Controles */
.depoimentos-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  transition: transform var(--duration-fast),
              box-shadow var(--duration-fast);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--glass-shadow-hover);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: background var(--duration-normal),
              transform var(--duration-normal);
}

.slider-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* ----------------------------------------------------------------
   COMPETÊNCIAS (badges)
   ---------------------------------------------------------------- */
.badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  color: var(--color-text);
  white-space: nowrap;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--glass-shadow-hover);
}

.badge-flag {
  font-size: 1rem;
}

/* ----------------------------------------------------------------
   CTA FINAL
   ---------------------------------------------------------------- */
.section-cta-final {
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.04), transparent);
}

.cta-final-card {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  background: var(--glass-bg-strong);
}

.cta-final-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.cta-final-text {
  font-weight: var(--fw-light);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   CONTATO
   ---------------------------------------------------------------- */
.contato-inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contato-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-form {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 0.82rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group label span {
  color: var(--color-primary);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.95rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--duration-fast),
              box-shadow var(--duration-fast),
              background var(--duration-fast);
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 105, 126, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Form success */
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #16a34a;
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
  background: rgba(22, 163, 74, 0.08);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Spinner */
.btn-spinner svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Contato info */
.contato-info {
  position: sticky;
  top: calc(var(--header-height-desktop) + 24px);
}

.contato-info-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-info-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1.1rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.contato-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform var(--duration-normal) var(--ease-smooth),
              background var(--duration-normal) var(--ease-smooth);
  text-decoration: none;
}

.contato-link:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.65);
}

.contato-link-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(108, 99, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.contato-link-label {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contato-link-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 0.9rem;
  color: var(--color-text);
}

/* ----------------------------------------------------------------
   RODAPÉ
   ---------------------------------------------------------------- */
.site-footer {
  background: rgba(48, 47, 59, 0.04);
  border-top: 1px solid rgba(108, 99, 255, 0.08);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo-img {
  height: 28px;
  filter: drop-shadow(0 2px 8px rgba(108, 99, 255, 0.15));
}

.footer-assinatura {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 200px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
  font-weight: var(--fw-medium);
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-link {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
  font-weight: var(--fw-medium);
}

.footer-contact-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(48, 47, 59, 0.08);
  padding-block: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(107, 105, 126, 0.6);
  text-align: center;
}

.footer-bottom a {
  color: var(--color-primary);
  opacity: 0.8;
  transition: opacity var(--duration-fast);
}

.footer-bottom a:hover {
  opacity: 1;
}

/* ----------------------------------------------------------------
   WHATSAPP FLUTUANTE — ANIMAÇÃO RICA
   ---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  text-decoration: none;
  /* Animação composta: pulso de sombra + leve bounce */
  animation: wa-bounce 2.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite,
             wa-glow 2.8s ease-in-out infinite;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.12) rotate(-8deg);
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.6),
    0 0 0 4px rgba(37, 211, 102, 0.15);
}

.whatsapp-float svg {
  transition: transform var(--duration-normal) var(--ease-spring);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

/* Anel pulsante pseudo-elemento */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
}

/* Anel externo animado */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-ring 2.8s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  20%  { transform: translateY(-6px) scale(1.04); }
  40%  { transform: translateY(0) scale(1); }
  55%  { transform: translateY(-3px) scale(1.02); }
  70%  { transform: translateY(0) scale(1); }
}

@keyframes wa-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4);
  }
  40% {
    box-shadow: 0 4px 28px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0);
  }
}

@keyframes wa-ring {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ----------------------------------------------------------------
   ANIMATIONS (Intersection Observer fade-up)
   ---------------------------------------------------------------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth);
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-0 { transition-delay: 0ms; }
.animate-delay-1 { transition-delay: 100ms; }
.animate-delay-2 { transition-delay: 200ms; }
.animate-delay-3 { transition-delay: 300ms; }

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (≤1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    align-items: center;
  }
  .hero-subheadline {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-platforms {
    justify-content: center;
  }
  .hero-visual {
    height: 320px;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
  }
  .sobre-timeline {
    position: static;
  }

  .nordeste-inner {
    grid-template-columns: 1fr;
  }
  .nordeste-mapa {
    order: -1;
  }
  .nordeste-mapa svg {
    max-width: 280px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .processo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .processo-grid::before {
    display: none;
  }

  .resultados-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos-slider {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (≤768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --header-height-desktop: var(--header-height-mobile);
  }

  /* Header */
  .site-header {
    height: var(--header-height-mobile);
  }
  .nav-desktop {
    display: none;
  }
  .btn-header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo-img {
    height: 28px;
  }

  /* Hero */
  .section-hero {
    padding-top: calc(var(--header-height-mobile) + 32px);
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  /* Hero orbit scene mobile: menor, centralizado */
  .hero-visual {
    height: 380px;
  }
  .hero-orbit-scene {
    transform: scale(0.8);
    transform-origin: center center;
  }
  .hero-photo-frame {
    width: 220px;
    height: 220px;
  }
  .floating-badge {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
    font-size: 0.7rem;
    padding: 7px 10px;
  }
  /* Orbit badges — reduzidos no mobile */
  .orbit-badge {
    padding: 7px 10px;
    font-size: 0.7rem;
    gap: 6px;
  }
  .orbit-badge svg {
    width: 22px;
    height: 22px;
  }

  /* Logo bar — carrossel */
  .logo-bar-track {
    justify-content: flex-start;
    padding-inline: 16px;
  }

  /* Nordeste mapa — wrapper responsivo */
  .nordeste-inner {
    gap: 32px;
  }
  .mapa-wrapper {
    max-width: 100%;
    padding: 16px;
  }

  /* Nichos — 1 coluna */
  .nichos-grid {
    grid-template-columns: 1fr;
  }

  /* Serviços */
  .servicos-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Processo */
  .processo-grid {
    grid-template-columns: 1fr;
    position: relative;
  }
  .processo-grid::before {
    display: none;
  }

  /* Resultados */
  .resultados-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Depoimentos — 1 card */
  .depoimentos-slider {
    grid-template-columns: 1fr;
    position: relative;
  }
  .depoimento-card {
    display: none;
    opacity: 1;
  }
  .depoimento-card.mobile-active {
    display: flex;
    opacity: 1;
  }

  /* CTA final */
  .cta-final-card {
    padding: 40px 24px;
  }
  .btn-cta-final {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }

  /* Contato */
  .contato-inner {
    grid-template-columns: 1fr;
  }
  .contato-info {
    position: static;
  }
  .contato-form {
    padding: 24px 20px;
  }

  /* Rodapé */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding-bottom: 32px;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-assinatura {
    max-width: 100%;
    text-align: center;
  }
  .footer-nav ul {
    align-items: center;
  }
  .footer-contato {
    align-items: center;
  }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — SMALL MOBILE (≤480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-visual {
    height: 340px;
  }

  .hero-orbit-scene {
    transform: scale(0.7);
  }

  .resultados-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .badges-wrap {
    gap: 8px;
  }

  .badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .orbit-badge {
    padding: 6px 8px;
    font-size: 0.65rem;
  }

  .orbit-badge svg {
    width: 18px;
    height: 18px;
  }

  .hero-platform-badge {
    font-size: 0.7rem;
    padding: 3px 8px 3px 5px;
  }

  .processo-grid {
    gap: 16px;
  }

  .processo-step {
    padding: 24px 16px;
  }
}

/* ----------------------------------------------------------------
   PRINT (básico)
   ---------------------------------------------------------------- */
@media print {
  .site-header,
  .whatsapp-float,
  .hamburger,
  .mobile-menu,
  .blob {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
