/* ═══════════════════════════════════════════════════
   FONTE DE MARCA — Space Age (Manual de Identidade P2)
   Uso restrito: eyebrows / tags de seção (texto curto, uppercase).
   Nunca em corpo de texto.
═══════════════════════════════════════════════════ */
@font-face {
  font-family: 'Space Age';
  src: url('../fonts/SpaceAge.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════════
   TOKENS — Manual de Identidade Visual P2 Digital
═══════════════════════════════════════════════════ */
:root {
  /* Cores oficiais */
  --amarelo:      #FBAE42;
  --laranja:      #F15A2A;
  --vermelho:     #BD202F;
  --cinza:        #58595B;
  --branco:       #FFFFFF;

  /* Extensões de uso */
  --marrom:       #3b170c;
  --terracota:    #8e3b20;
  --creme:        #fff5df;
  --off-white:    #F7F4F1;
  --escuro:       #14110f;

  /* Gradiente oficial: amarelo → laranja */
  --grad-brand:   linear-gradient(90deg, #FBAE42, #F15A2A);
  /* Gradiente títulos: laranja → vermelho */
  --grad-title:   linear-gradient(100deg, #F15A2A 10%, #BD202F 90%);
  /* Gradiente dark section */
  --grad-dark:    linear-gradient(135deg, #222019 0%, #14110f 100%);

  --radius-btn:   14px;
  --radius-card:  20px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Pesos tipográficos */
  --fw-display:   600;  /* títulos principais / hero */
  --fw-heading:   800;  /* subtítulos de seção */
  --fw-subhead:   700;  /* títulos de card / terceiro nível */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--branco);
  color: var(--escuro);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: #1A1714;
}

.navbar.scrolled {
  background: rgba(20, 17, 15, 0.856);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(251, 174, 66, 0.2);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: 64px;
}

.navbar-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 52px;
}

.navbar-nav a {
  font-weight: 500;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amarelo);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}

.navbar-nav a:hover { color: #fff; }
.navbar-nav a:hover::after { width: 100%; }

/* ─── DROPDOWN ───────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  position: relative;
  transition: color 0.2s;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amarelo);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:hover { color: #fff; }
.nav-dropdown:hover .nav-dropdown-toggle::after { width: 100%; }

.nav-dropdown-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 17, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(251,174,66,0.12);
  border-radius: 16px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.80);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: rgba(251,174,66,0.08);
  color: #fff;
}
.nav-dropdown-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amarelo);
  flex-shrink: 0;
  opacity: 0.6;
}
.nav-dropdown-item:hover .nav-dropdown-item-dot {
  opacity: 1;
}

.btn-nav {
  background: var(--amarelo);
  color: var(--marrom);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  letter-spacing: 0.01em;
}

.btn-nav:hover {
  background: #ffc05a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(251,174,66,0.4);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 90svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../image_background_hero.webp') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20,17,15,0.92) 0%, transparent 45%),
    linear-gradient(160deg, rgba(30,26,22,0.75) 0%, rgba(34,30,26,0.88) 50%, rgba(20,17,15,0.97) 100%);
}

/* Vinheta inferior mais intensa */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 110%, rgba(20,17,15,0.95) 0%, transparent 70%);
  pointer-events: none;
}

/* Grafismo decorativo */
.hero-grafismo-tl {
  position: absolute;
  top: -20px; left: -20px;
  width: 500px; height: 560px;
  opacity: 0.12;
  pointer-events: none;
}
.hero-grafismo-tl img { width: 100%; height: 100%; object-fit: contain; }

.hero-grafismo-br {
  position: absolute;
  bottom: 40px; right: 20px;
  width: 220px; height: 220px;
  opacity: 0.22;
  pointer-events: none;
}
.hero-grafismo-br img { width: 100%; height: 100%; object-fit: cover; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 80px;
  padding: 0 80px;
}

.hero-left {
  flex: 1 1 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.1s forwards;
}

.hero-eyebrow-line {
  display: none;
}

.hero-eyebrow-text {
  font-family: 'Space Age', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amarelo);
}

.hero-headline {
  font-weight: 600;
  font-size: clamp(52px, 5.5vw, 90px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.25s forwards;
}

.hero-headline .word-gold {
  background: linear-gradient(180deg, var(--amarelo) 0%, #d4891a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-right {
  width: 40%;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero-sub {
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  border-left: 2px solid rgba(251,174,66,0.4);
  padding-left: 20px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  text-decoration: none;
}

.btn-primary {
  background: var(--branco);
  color: var(--marrom);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 18px 32px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--branco);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 17px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-btn);
  padding: 18px 32px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
}

.hero-avatars {
  display: flex;
}
.hero-avatars .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  overflow: hidden;
  margin-left: -12px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hero-avatars .av:first-child { margin-left: 0; }
.hero-avatars .av:hover { transform: scale(1.1); z-index: 2; }
.hero-avatars .av img { width: 100%; height: 100%; object-fit: cover; }

.hero-proof-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.hero-proof-text strong { font-weight: var(--fw-heading); color: var(--amarelo); font-size: 17px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}
.hero-scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════
   PILARES — fundo branco com cards elevados
═══════════════════════════════════════════════════ */
.section-pillars {
  background: var(--branco);
  padding: 30px 80px 100px;
  position: relative;
}

.section-pillars::before {
  content: '';
  display: block;
  width: 80px; height: 3px;
  background: var(--grad-brand);
  border-radius: 2px;
  margin-bottom: 64px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.pillar-card {
  background: var(--branco);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
  cursor: default;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.pillar-card:hover { background: #fdfaf7; }
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-number {
  font-weight: var(--fw-display);
  font-size: 52px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  position: absolute;
  top: 24px; right: 24px;
  letter-spacing: -0.04em;
  transition: opacity 0.3s;
}
.pillar-card:hover .pillar-number { opacity: 0.28; }

.pillar-icon-wrap {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(251,174,66,0.15), rgba(241,90,42,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.pillar-card:hover .pillar-icon-wrap {
  background: linear-gradient(135deg, rgba(251,174,66,0.25), rgba(241,90,42,0.2));
}

.pillar-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: var(--laranja);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--fw-heading);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.pillar-title img {
  flex-shrink: 0;
  width: 28px;
  height: auto;
}

.pillar-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: var(--cinza);
  flex: 1;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--laranja);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s var(--ease);
}
.pillar-link:hover { gap: 10px; }
.pillar-link svg { width: 14px; height: 14px; stroke: var(--laranja); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════════════════════
   SECTION HEADER GENÉRICO
═══════════════════════════════════════════════════ */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.sec-tag {
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  padding: 0 40px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Space Age', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laranja);
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgb(241 90 42 / 19%) 0%, rgb(241 90 42 / 7%) 45%, rgb(241 90 42 / 0%) 80%);
}
.sec-heading {
  font-weight: var(--fw-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-sub {
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--cinza);
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════
   PROGRAMAS
═══════════════════════════════════════════════════ */
.section-programs {
  position: relative;
  padding: 80px 0 100px;
  background: var(--off-white);
  overflow: hidden;
}


.programs-inner {
  position: relative;
  z-index: 1;
}

.programs-carousel-wrap {
  position: relative;
  margin-top: 72px;
  padding: 0 80px;
}

.programs-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0 24px;
}
.programs-track::-webkit-scrollbar { display: none; }

.prog-card {
  flex-shrink: 0;
  width: 420px;
  scroll-snap-align: start;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: var(--branco);
  display: flex;
  flex-direction: column;
}
.prog-card.reveal.visible:hover {
  transform: scale(1.03);
  box-shadow: none;
}

.prog-img {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #222;
}
.prog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.prog-card:hover .prog-img img { transform: scale(1.05); }

.prog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,17,15,0.88) 0%, rgba(0,0,0,0.1) 60%);
}

.prog-category {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--vermelho);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 5px 10px;
  white-space: nowrap;
}

/* Wrapper das tags do topo do card (agrupadas no canto direito) — só no card em destaque */
.prog-tags-wrap {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* dentro do wrapper, a categoria some do posicionamento absoluto próprio */
.prog-tags-wrap .prog-category {
  position: relative;
  top: auto; right: auto;
}

/* Etiqueta de destaque — card em destaque (Potencialize) */
.prog-featured-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amarelo);
  color: var(--marrom);
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 5px 12px 5px 10px;
  box-shadow: 0 6px 18px rgba(241,90,42,0.35);
  white-space: nowrap;
}
.prog-featured-tag svg {
  width: 13px; height: 13px;
  color: var(--marrom);
  flex-shrink: 0;
}
/* leve borda amarela brilhante — destaque do card em destaque */
.prog-card--featured {
  border-radius: var(--radius-card);
  box-shadow: 0 0 0 1.5px rgba(251,174,66,0.65), 0 0 22px rgba(251,174,66,0.25);
}

.prog-name {
  position: absolute;
  bottom: 48px; left: 24px;
  font-weight: var(--fw-subhead);
  font-size: 20px;
  color: #fff;
  line-height: 1.25;
  width: calc(100% - 48px);
}

.prog-badges {
  position: absolute;
  bottom: 18px; left: 24px;
  display: flex;
  gap: 8px;
}

.badge-mode {
  border: 1px solid rgba(251,174,66,0.7);
  color: var(--amarelo);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 8px;
  height: 20px;
  display: inline-flex;
  align-items: center;
}

.badge-date {
  background: var(--laranja);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  padding: 3px 8px;
  height: 20px;
  display: inline-flex;
  align-items: center;
}

.prog-body {
  padding: 20px 24px 24px;
  background: linear-gradient(135deg, var(--amarelo) 0%, #f5a030 100%);
  flex: 1;
}

.prog-body p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(34,30,26,0.9);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1.5px solid rgba(241,90,42,0.4);
  border-radius: 50%;
  background: var(--branco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
@media (hover: hover) {
  .carousel-arrow:hover {
    background: var(--laranja);
    border-color: var(--laranja);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(241,90,42,0.35);
  }
  .carousel-arrow:hover svg { stroke: #fff; }
}
.carousel-arrow:active {
  background: var(--laranja);
  border-color: var(--laranja);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(241,90,42,0.35);
}
.carousel-arrow:active svg { stroke: #fff; }
.carousel-arrow svg { width: 20px; height: 20px; stroke: var(--laranja); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.25s; }
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

/* ═══════════════════════════════════════════════════
   EMPRESAS ATENDIDAS — faixa de logos (marquee)
═══════════════════════════════════════════════════ */
.section-clients {
  background: #1A1714;
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Textura de ruído sutil — mesma da seção de métricas, para unificar as duas seções escuras */
.section-clients::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.clients-label {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
}

.clients-track-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  /* Isola o mask em sua própria camada para que a animação de transform
     do .clients-track não force o WebKit a re-renderizar o mask (flicker). */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.clients-track {
  display: flex;
  width: max-content;
  animation: clients-scroll 38s linear infinite;
  /* Promove a camada para GPU no WebKit/iOS: evita o throttle inicial
     (marquee começando lenta) e o flicker em que as logos somem/voltam. */
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.clients-set {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  flex-shrink: 0;
}

.clients-set img {
  height: 42px;
  width: auto;
  /* Reserva largura enquanto a imagem decodifica, evitando que a esteira
     colapse (logos "sumindo") no Safari/iOS antes do decode terminar. */
  min-width: 90px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.25s var(--ease);
}
.clients-set img:hover { opacity: 1; }

/* Logos com proporção mais quadrada / muita margem: recebem altura extra
   para ficarem visualmente equilibradas com as logos horizontais. */
.clients-set img.logo-lg { height: 58px; }

@keyframes clients-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
  .clients-track-wrap { overflow-x: auto; }
}

/* ═══════════════════════════════════════════════════
   MÉTRICAS — SEÇÃO ESCURA (impacto visual máximo)
═══════════════════════════════════════════════════ */
.section-metrics {
  background: #1A1714;
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

/* Textura de ruído sutil */
.section-metrics::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.metrics-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.metrics-left {
  width: 60%;
}

.metrics-right {
  width: 40%;
}

.metrics-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.metrics-eyebrow-line { display: none; }
.metrics-eyebrow-text {
  font-family: 'Space Age', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amarelo);
}

.metrics-title {
  font-weight: var(--fw-display);
  font-size: clamp(36px, 3.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--branco);
  margin-bottom: 28px;
  max-width: 620px;
}
.metrics-title span {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metrics-sub {
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

.btn-dark-cta {
  background: var(--laranja);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 18px 36px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  letter-spacing: 0.01em;
}
.btn-dark-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(241,90,42,0.4);
}

.metrics-btn-tablet { display: none; }

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.metric-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.metric-card:hover { background: rgba(255,255,255,0.08); }

.metric-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.metric-card:hover::before { transform: scaleX(1); }

.metric-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  opacity: 0.7;
}
.metric-icon svg {
  width: 40px; height: 40px;
  stroke: var(--amarelo);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-number {
  font-weight: var(--fw-display);
  font-size: clamp(40px, 3.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.metric-label {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════════════
   RESULTADOS / DEPOIMENTOS
═══════════════════════════════════════════════════ */
.section-results {
  position: relative;
  padding: 120px 0 100px;
  background: var(--branco);
  overflow: hidden;
}

/* Gradiente de fundo texturizado */
.results-bg-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(251,174,66,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.results-inner {
  position: relative;
  z-index: 1;
}

.results-track-wrap {
  position: relative;
  margin-top: 42px;
}

.results-track-wrap {
  position: relative;
}

.results-track {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 40px 60px;
  overflow-x: auto;
  scrollbar-width: none;
}
.results-track::-webkit-scrollbar { display: none; }

.result-card {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: width 0.45s var(--ease), opacity 0.45s var(--ease);
  opacity: 0.35;
  cursor: pointer;
}
.result-card.active {
  opacity: 1;
  width: 500px;
}
.result-card.active .result-frame { box-shadow: 0 24px 60px rgba(241,90,42,0.2); }

.result-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  position: relative;
  transition: box-shadow 0.4s;
}

.result-top-bar {
  height: 36px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}
.result-top-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.result-video-wrap {
  position: relative;
  width: 100%;
}

.result-video-wrap iframe {
  width: 100%;
  height: 200px;
  display: block;
  border: none;
}

.result-card.active .result-video-wrap iframe {
  height: 300px;
}

.result-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.result-card.active .result-img {
  height: 300px;
}

.result-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(241,90,42,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}
.result-play:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--laranja); }
.result-play svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }

.result-bottom-bar {
  height: 36px;
  background: #0a0a0a;
}

.result-name {
  font-weight: var(--fw-subhead);
  font-size: 15px;
  color: var(--escuro);
  text-align: center;
}
.result-role {
  font-weight: 400;
  font-size: 12px;
  color: var(--cinza);
  text-align: center;
}

.results-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.rdot {
  height: 6px; border-radius: 3px;
  background: rgba(0,0,0,0.15);
  transition: width 0.3s, background 0.3s;
  width: 6px;
  cursor: pointer;
}
.rdot.active { width: 32px; background: var(--laranja); }

.results-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn-orange {
  background: var(--laranja);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 18px 40px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(241,90,42,0.4);
}

/* ═══════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════ */
.section-blog {
  background: var(--off-white);
  padding: 120px 80px 120px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--branco);
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

.blog-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #eee;
}
.blog-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-img { transform: scale(1.05); }

.blog-cat-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--laranja);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 5px 10px;
}

.blog-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.blog-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(88,89,91,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-title {
  font-weight: var(--fw-display);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex: 1;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: var(--laranja);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s var(--ease);
}
.blog-read-btn:hover { gap: 12px; }
.blog-read-btn svg { width: 16px; height: 16px; stroke: var(--laranja); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════ */
.section-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgb(43 24 7 / 48%) 0%, rgba(34, 30, 26, 0.88) 50%, rgba(20, 17, 15, 0.97) 100%);
}

/* Brilho central */
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(251,174,66,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 56px 80px;
  max-width: 55%;
}

.cta-headline {
  font-weight: var(--fw-display);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.95);
}
.cta-headline .gold {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.btn-cta-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--branco);
  color: var(--marrom);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-btn);
  padding: 20px 40px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-cta-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.2);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--branco);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-btn);
  padding: 20px 40px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: #1A1714;
  padding: 80px 80px 0;
  border-top: 1px solid rgba(251,174,66,0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  border-color: var(--amarelo);
  color: var(--amarelo);
  background: rgba(251,174,66,0.08);
}
.footer-social-link svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-weight: var(--fw-subhead);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--creme);
  margin-bottom: 28px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   ANIMAÇÕES
═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.2); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */


/* Notebook 1201px–1728px: 3 cards visíveis */
@media (max-width: 1728px) {
  .prog-card { width: calc((100vw - 160px - 2 * 20px) / 3); }
  .section-pillars { padding: 30px 40px 100px; }
  .pillar-title { font-size: 16px; }
}

@media (max-width: 1350px) {
  .btn-nav { font-size: 14px; padding: 11px 18px; }
  .btn-primary, .btn-secondary { font-size: 15px; padding: 14px 24px; }
}

@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 48px; }
  .hero-right { opacity: 1; animation: none; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-inner { flex-direction: column; gap: 60px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* ── Hamburger button ── */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.navbar.open .navbar-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.open .navbar-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar.open .navbar-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.navbar-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(26, 23, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(251,174,66,0.12);
  padding: 96px 32px 40px;
  flex-direction: column;
  gap: 8px;
  z-index: 199;
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease);
}
.navbar.open .navbar-drawer {
  transform: translateY(0);
}
.navbar-drawer a, .navbar-drawer button.btn-nav {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.navbar-drawer a:last-child, .navbar-drawer .btn-nav { border-bottom: none; }
.navbar-drawer a:hover, .navbar-drawer .btn-nav:hover { color: var(--marrom); }
.navbar-drawer .btn-nav {
  display: block;
  margin-top: 16px;
  background: var(--amarelo);
  color: var(--marrom);
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-weight: 700;
  text-align: center;
  border-bottom: none;
}

/* ── Drawer dropdown (Programas) ── */
.drawer-dropdown { border-bottom: 1px solid rgba(255,255,255,0.07); }
.drawer-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  background: none;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.drawer-dropdown-toggle:hover { color: var(--amarelo); }
.drawer-dropdown-toggle .nav-dropdown-chevron {
  transition: transform 0.25s var(--ease);
}
.drawer-dropdown.open .drawer-dropdown-toggle .nav-dropdown-chevron {
  transform: rotate(180deg);
}
.drawer-dropdown-menu {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px 16px;
}
.drawer-dropdown.open .drawer-dropdown-menu { display: flex; }
.drawer-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  border-bottom: none !important;
  transition: color 0.2s;
}
.drawer-dropdown-item:hover { color: var(--amarelo); }

@media (max-width: 1360px) {
  .navbar { padding: 0 40px; }
  .navbar-nav { gap: 30px; }
}

@media (max-width: 1024px) {
  .navbar { padding: 0 32px; height: 80px; }
  .navbar-logo img { height: 52px; }
  .navbar-nav { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-drawer { display: flex; }
  .hero { padding-bottom: 50px; min-height: 100svh; }

  /* Seções — padding lateral padrão tablet */
  .section-pillars { padding: 30px 30px 100px; }
  .section-metrics { padding: 120px 30px; }
  .section-blog { padding: 120px 30px; }

  /* Programas */
  .section-programs .sec-heading { margin-bottom: 0; }
  .prog-card { width: calc((100vw - 64px - 20px) / 2); }

  /* Depoimentos */
  .results-track { overflow: hidden; }
  .result-card { width: 220px; }
  .result-card.active { width: calc(100vw - 64px); }
  .results-track-wrap .carousel-arrow.prev { left: -16px; }
  .results-track-wrap .carousel-arrow.next { right: -16px; }

  /* Métricas */
  .metrics-inner { align-items: flex-start; }
  .metrics-left { width: 100%; }
  .sec-heading { font-size: 40px; }
  .metrics-title { font-size: 40px; }
  .metrics-sub { font-size: 19px; margin-bottom: 0; }
  .metrics-left .btn-dark-cta { display: none; }
  .metrics-btn-tablet { display: inline-flex; margin-top: 40px; align-self: center; }
  .sec-heading { margin-bottom: 0; }
  .cta-inner { max-width: 85%; }
  .cta-headline { font-size: 37px; }
  .btn-cta-solid, .btn-cta-ghost { font-size: 15px; padding: 14px 24px; }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 0 48px;
  }
  .hero-left { flex: unset; width: 100%; }
  .hero-right { width: 100%; align-items: center; gap: 28px; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { border-left: none; border-top: 2px solid rgba(251,174,66,0.4); padding-left: 0; padding-top: 16px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-headline { font-size: clamp(44px, 6.5vw, 72px); }
  .hero-scroll { display: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; height: 72px; }
  .navbar-nav { gap: 0; }
  .navbar-nav a { display: none; }
  .hero-inner { padding: 0 15px; gap: 15px; }
  .hero-headline { font-size: 44px; }
  .section-header { width: 90%; }
  .btn-primary, .btn-secondary { font-size: 13px; padding: 12px 18px; }
  .prog-card { width: 100%; }
  .prog-name { left: 53px; width: calc(100% - 80px); }
  .prog-badges { left: 53px; }
  .section-clients { padding: 44px 0 48px; }
  .clients-set img { height: 38px; }
  .clients-set img.logo-lg { height: 52px; }
  .clients-set { gap: 48px; padding-right: 48px; }
  .section-pillars { padding: 80px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .section-programs, .section-results, .section-blog { padding: 80px 0; }
  .section-metrics { padding: 80px 24px; }
  .metrics-inner { flex-direction: column; gap: 40px; }
  .metrics-left { width: 100%; }
  .metrics-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .cta-inner { padding: 48px 24px; max-width: 100%; width: 100%; }
  .btn-cta-solid, .btn-cta-ghost { font-size: 13px; padding: 12px 18px; }
  footer { padding: 60px 24px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .programs-carousel-wrap { padding: 0 22px; }
  .programs-track { padding: 8px 0 24px; }
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
  .results-track { overflow: hidden; padding: 20px 24px 40px; }
  .result-card { width: 220px; }
  .result-card.active { width: calc(100vw - 48px); }
  .results-track-wrap .carousel-arrow.prev { left: 8px; }
  .results-track-wrap .carousel-arrow.next { right: 8px; }
  .section-blog { padding: 80px 24px; }
  .blog-grid { margin-top: 48px; }
}

/* prog-card como link — remove decoração padrão do <a> */
a.prog-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

@media (max-width: 608px) {
  .footer-brand { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .footer-socials { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { align-items: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   BLOG — Estilos dinâmicos (adicionados ao final)
   Todos os componentes visuais dos cards já existem acima.
   Estes estilos cobrem apenas: estados novos (loading,
   error, skeleton), elementos da página de post e
   utilitários de navegação do blog.
═══════════════════════════════════════════════════ */

/* ─── Blog card: link wrapper ────────────────────
   O card agora é um <a> interno (.blog-card-link).
   Garante que o cursor e a herança de cor funcionem. */
.blog-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.blog-card-link .blog-read-btn { cursor: pointer; }

/* ─── Blog skeleton (loading state) ─────────────── */
.blog-card--skeleton { pointer-events: none; }

.blog-skeleton-img {
  background: linear-gradient(90deg, #ede7df 25%, #e0d8d0 50%, #ede7df 75%);
  background-size: 200% 100%;
  animation: blogSkeleton 1.4s ease infinite;
}

.blog-skeleton-line {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ede7df 25%, #e0d8d0 50%, #ede7df 75%);
  background-size: 200% 100%;
  animation: blogSkeleton 1.4s ease infinite;
  margin-bottom: 10px;
}
.blog-skeleton-line--short { width: 40%; }
.blog-skeleton-line--btn   { width: 30%; margin-top: 8px; }

@keyframes blogSkeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── Blog error state ───────────────────────────── */
.blog-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
}
.blog-error p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--cinza);
}

/* ─── Blog homepage: link "ver todos" ───────────── */
.blog-home-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.blog-see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--laranja);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap 0.2s var(--ease);
}
.blog-see-all-btn:hover { gap: 14px; }
.blog-see-all-btn svg {
  width: 16px; height: 16px;
  stroke: var(--laranja); fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Blog page: padding extra no topo ──────────── */
.section-blog--page {
  padding-top: 140px;
}

/* ─── Blog load more ─────────────────────────────── */
.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.blog-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--marrom);
  background: var(--branco);
  border: 1.5px solid rgba(34,30,26,0.14);
  border-radius: var(--radius-btn);
  padding: 16px 32px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.blog-load-more-btn:hover {
  border-color: var(--laranja);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241,90,42,0.12);
}
.blog-load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.blog-load-more-btn svg {
  width: 16px; height: 16px;
  stroke: var(--laranja); fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── POST PAGE ──────────────────────────────────── */
.post-page-wrap {
  padding-top: 96px;
  min-height: 80vh;
}

.post-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

/* Loading spinner */
.post-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px;
}
.post-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(241,90,42,0.15);
  border-top-color: var(--laranja);
  border-radius: 50%;
  animation: postSpin 0.7s linear infinite;
}
@keyframes postSpin {
  to { transform: rotate(360deg); }
}

/* Header do post */
.post-header {
  margin-bottom: 40px;
}

.post-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.blog-cat-badge--inline {
  position: static;
  display: inline-flex;
}

.post-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--fw-heading);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Imagem hero do post */
.post-hero-img-wrap {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 56px;
  background: var(--off-white);
}
.post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Conteúdo renderizado do WordPress */
.post-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--cinza);
}
.post-body p     { margin-bottom: 24px; }
.post-body h2    { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; letter-spacing: -0.02em; color: var(--escuro); margin: 48px 0 20px; }
.post-body h3    { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: clamp(20px, 2.5vw, 26px); line-height: 1.2; color: var(--escuro); margin: 40px 0 16px; }
.post-body h4    { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 20px; color: var(--escuro); margin: 32px 0 12px; }
.post-body ul,
.post-body ol    { padding-left: 24px; margin-bottom: 24px; }
.post-body li    { margin-bottom: 10px; }
.post-body a     { color: var(--laranja); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--marrom); }
.post-body img   { max-width: 100%; border-radius: 12px; margin: 8px 0 24px; }
.post-body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--laranja);
  background: var(--off-white);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 17px;
}
.post-body strong { font-weight: 700; color: var(--escuro); }
.post-body hr { border: none; border-top: 1px solid rgba(34,30,26,0.08); margin: 40px 0; }

/* Rodapé do post */
.post-footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(34,30,26,0.08);
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--laranja);
  text-decoration: none;
  transition: gap 0.2s var(--ease);
}
.post-back-link:hover { gap: 14px; }
.post-back-link svg {
  width: 16px; height: 16px;
  stroke: var(--laranja); fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Responsivo ─────────────────────────────────── */
@media (max-width: 1024px) {
  .section-blog--page { padding-top: 120px; }
}

@media (max-width: 768px) {
  .post-article { padding: 60px 20px 80px; }
  .post-hero-img-wrap { aspect-ratio: 16/9; }
  .post-body { font-size: 16px; }
  .section-blog--page { padding-top: 100px; }
}
