/* ============================================
   PRODUZINDO DIGITAL - Styles
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  --bg: hsl(0 0% 7%);
  --bg-card: hsl(0 0% 10%);
  --bg-muted: hsl(0 0% 14%);
  --bg-secondary: hsl(0 0% 12%);
  --fg: hsl(40 15% 92%);
  --fg-muted: hsl(0 0% 63%);
  --fg-secondary: hsl(40 8% 72%);
  --primary: hsl(38 75% 48%);
  --primary-dark: hsl(35 70% 38%);
  --border: hsl(0 0% 16%);
  --radius: 12px;
  --radius-sm: 8px;
  --font-heading: 'Onest', sans-serif;
  --font-body: 'Onest', sans-serif;
  --max-width: 1200px;
  --section-padding: 120px 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Fixed page background (scroll transition) */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #000;
  transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* All sections transparent so page-bg shows through */
.section, .hero {
  background: transparent !important;
}

/* Solid override — ignores page-bg transition */
.section-solid-black {
  background: #000 !important;
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
img:hover {
  filter: grayscale(0%);
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.text-primary { color: var(--primary); }
.text-muted { color: var(--fg-muted); }
.text-secondary { color: var(--fg-secondary); }
.text-balance { text-wrap: balance; }

.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--fg-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(45 80% 58%), var(--primary), hsl(32 70% 38%));
  background-size: 200% 200%;
  animation: goldShimmer 3s ease infinite;
  color: hsl(0 0% 5%);
  border: 1px solid hsl(40 60% 55%);
}
.btn-primary:hover {
  background: linear-gradient(135deg, hsl(32 70% 38%), var(--primary), hsl(45 80% 58%));
  background-size: 200% 200%;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px hsla(38, 75%, 48%, 0.3);
}

@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  position: relative;
}
.btn-outline:hover {
  background: linear-gradient(135deg, hsla(45, 80%, 58%, 0.12), hsla(32, 70%, 38%, 0.12));
  border-color: hsl(40 60% 55%);
  color: hsl(45 80% 62%);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 8px 0;
}
.btn-ghost:hover { opacity: 0.8; }

/* === Glass Button with Animated Gold Border === */
@property --glass-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.glass-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.4s ease, transform 0.4s ease, background 0.4s ease;
  letter-spacing: 0.02em;
}

/* Animated gold border — behind the button */
.glass-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 9999px;
  padding: 1px;
  background: conic-gradient(from var(--glass-angle), transparent 40%, hsla(45, 80%, 58%, 0.5) 50%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glassRotate 2.5s linear infinite;
  z-index: 0;
}

@keyframes glassRotate {
  to { --glass-angle: 360deg; }
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 20px hsla(38, 75%, 48%, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.glass-btn:hover::before {
  background: conic-gradient(from var(--glass-angle), transparent 30%, hsla(45, 80%, 58%, 0.8) 50%, transparent 70%);
}
.glass-btn:active {
  transform: translateY(0) scale(0.98);
}

.glass-btn-icon {
  position: relative;
  z-index: 1;
  opacity: 0.85;
  transition: all 0.4s ease;
  color: hsl(45, 80%, 58%);
  animation: arrowPulse 1.5s ease-in-out infinite;
}
.glass-btn:hover .glass-btn-icon {
  opacity: 1;
  filter: drop-shadow(0 0 4px hsla(45, 80%, 58%, 0.5));
  animation: arrowSlide 0.6s ease-in-out infinite alternate;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.85; }
  50% { transform: translateX(3px); opacity: 1; }
}
@keyframes arrowSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(5px); }
}

.glass-btn-text {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.glass-btn:hover .glass-btn-text {
  background-image: linear-gradient(90deg, hsl(45, 80%, 58%), hsl(38, 75%, 60%), hsl(45, 80%, 58%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === Fancy Gold Button (Uiverse style) === */
.fancy-btn {
  --gold-700: hsla(0 0% 12% / 1);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform-origin: center;
  padding: 14px 32px;
  background-color: transparent;
  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));
  transition: transform var(--transtion);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
}
.fancy-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--gold-700);
  border-radius: var(--border_radius);
  box-shadow:
    inset 0 0.5px hsl(40, 30%, 30%),
    inset 0 -1px 2px 0 hsl(0, 0%, 0%),
    0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
    0 0 0 calc(var(--active, 0) * 0.375rem) hsla(38 75% 48% / 0.75);
  transition: all var(--transtion);
  z-index: 0;
}
.fancy-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: hsla(38 75% 48% / 0.75);
  background-image:
    radial-gradient(at 51% 89%, hsla(45, 80%, 58%, 1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, hsla(35, 70%, 42%, 1) 0px, transparent 50%),
    radial-gradient(at 22% 91%, hsla(32, 70%, 38%, 1) 0px, transparent 50%);
  background-position: top;
  opacity: var(--active, 0);
  border-radius: var(--border_radius);
  transition: opacity var(--transtion);
  z-index: 2;
}
.fancy-btn:is(:hover, :focus-visible) {
  --active: 1;
}
.fancy-btn:active {
  transform: scale(1);
}

.fancy-btn .fancy-dots_border {
  --size_border: calc(100% + 2px);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;
  border-radius: var(--border_radius);
  z-index: -10;
}
.fancy-btn .fancy-dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);
  width: 100%;
  height: 2rem;
  background-color: hsl(38 75% 48%);
  mask: linear-gradient(transparent 0%, white 120%);
  animation: fancyRotate 2s linear infinite;
}
@keyframes fancyRotate {
  to { transform: rotate(360deg); }
}

.fancy-btn .fancy-sparkle {
  position: relative;
  z-index: 10;
  width: 1.75rem;
}
.fancy-btn .fancy-sparkle .fancy-path {
  fill: currentColor;
  stroke: currentColor;
  transform-origin: center;
  color: hsl(45 80% 58%);
}
.fancy-btn:is(:hover, :focus) .fancy-sparkle .fancy-path {
  animation: fancyPath 1.5s linear 0.5s infinite;
}
.fancy-btn .fancy-sparkle .fancy-path:nth-child(1) { --scale_path_1: 1.2; }
.fancy-btn .fancy-sparkle .fancy-path:nth-child(2) { --scale_path_2: 1.2; }
.fancy-btn .fancy-sparkle .fancy-path:nth-child(3) { --scale_path_3: 1.2; }

@keyframes fancyPath {
  0%, 34%, 71%, 100% { transform: scale(1); }
  17% { transform: scale(var(--scale_path_1, 1)); }
  49% { transform: scale(var(--scale_path_2, 1)); }
  83% { transform: scale(var(--scale_path_3, 1)); }
}

.fancy-btn .fancy-text_button {
  position: relative;
  z-index: 10;
  background-image: linear-gradient(
    90deg,
    hsla(45 80% 58% / 1) 0%,
    hsla(45 80% 58% / var(--active, 0)) 120%
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.9375rem;
  color: transparent;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: hsla(0 0% 7% / 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  background: hsla(0 0% 7% / 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo img {
  height: 47px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-secondary);
  transition: color 0.2s;
  position: relative;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--fg);
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}
.navbar-links a:hover::after {
  width: 100%;
}

.nav-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.25);
  flex-shrink: 0;
}

/* === Language Toggle === */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
}
.lang-btn:hover {
  color: var(--fg);
}
.lang-btn.active {
  color: var(--primary);
  background: hsla(38, 75%, 48%, 0.1);
}
.lang-sep {
  color: var(--fg-muted);
  font-size: 0.7rem;
  user-select: none;
}
body.theme-light .lang-btn {
  color: hsl(0, 0%, 50%);
}
body.theme-light .lang-btn:hover {
  color: hsl(0, 0%, 20%);
}
body.theme-light .lang-btn.active {
  color: var(--primary-dark);
  background: hsla(38, 75%, 48%, 0.12);
}

.navbar-cta {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--primary);
  color: hsl(0 0% 5%);
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}
.navbar-cta:hover {
  background: var(--primary-dark);
}

/* Mobile menu */
.mobile-only {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide Safari native play button on background videos */
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-container,
video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none !important;
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
}


.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsla(0 0% 0% / 0.55) 0%,
    hsla(0 0% 0% / 0.6) 40%,
    hsla(0 0% 0% / 0.75) 60%,
    hsla(0 0% 0% / 0.92) 80%,
    #000 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .label {
  color: #fff;
}

.hero h1 {
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero h1 span {
  display: block;
  background: linear-gradient(to right, var(--primary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 24px auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.hero-scroll-link:hover {
  color: var(--fg);
}

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

/* === Section: Problema / Quando === */
.section {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

/* === Section: O Problema === */
.problema-section {
  padding-top: 140px !important;
  padding-bottom: 80px !important;
}

/* Label centralizado com linhas */
.problema-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.problema-label .label {
  margin-bottom: 0;
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.problema-label-line {
  width: 60px;
  height: 1px;
  background: hsla(0, 0%, 100%, 0.12);
}

/* Título centralizado grande */
.problema-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
}

.problema-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

/* Parágrafos em 3 colunas */
.problema-paragraphs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.problema-paragraph {
  position: relative;
  padding: 40px 32px 36px;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-top: 1px solid hsla(45, 80%, 58%, 0.25);
  border-radius: 16px;
  background: hsla(0, 0%, 100%, 0.03);
  overflow: hidden;
  backdrop-filter: blur(4px);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.45s ease,
              background 0.45s ease;
}

/* Glow de luz superior */
.problema-paragraph::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

/* Reflexo de luz radial no fundo */
.problema-paragraph::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, hsla(54, 100%, 50%, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.problema-paragraph:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 20px 48px rgba(0, 0, 0, 0.15),
    0 0 40px hsla(54, 100%, 50%, 0.07),
    inset 0 1px 0 hsla(0, 0%, 100%, 0.06);
  border-color: hsla(54, 100%, 50%, 0.4);
  border-top-color: hsla(45, 80%, 58%, 0.8);
  background: linear-gradient(135deg, hsla(45, 80%, 58%, 0.06) 0%, transparent 60%);
}

.problema-paragraph:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.problema-paragraph:hover::after {
  opacity: 1;
}

/* Watermark number */
.problema-p-watermark {
  position: absolute;
  top: -10px;
  right: -5px;
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 800;
  color: hsla(0, 0%, 100%, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color 0.5s ease;
}
.problema-paragraph:hover .problema-p-watermark {
  color: hsla(45, 80%, 58%, 0.06);
}

/* Numeracao e texto com transicao no hover */
.problema-p-number {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  transition: text-shadow 0.4s ease, transform 0.4s ease;
}

.problema-paragraph:hover .problema-p-number {
  text-shadow: 0 0 16px hsla(54, 100%, 50%, 0.5);
  transform: translateX(4px);
}

.problema-paragraph p {
  position: relative;
  z-index: 1;
  color: var(--fg-secondary);
  font-size: 1.0625rem;
  line-height: 1.85;
  transition: color 0.4s ease;
}
.problema-paragraph p strong {
  color: var(--fg);
  font-weight: 600;
}

.problema-paragraph:hover p {
  color: var(--fg);
}
.problema-paragraph:hover p strong {
  color: hsl(45, 80%, 58%);
}

/* Scroll-reveal quote */
.scroll-quote {
  padding: 80px 0 40px;
  text-align: center;
}

.scroll-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
}

.sq-word {
  display: inline-block;
  color: var(--fg-muted);
  opacity: 0.2;
  transition: opacity 0.4s ease, color 0.4s ease;
  margin-right: 0.25em;
}

.sq-word.sq-visible {
  opacity: 1;
  color: var(--fg);
}

.sq-word.sq-highlight.sq-visible {
  background: linear-gradient(to right, hsl(43 80% 60%), var(--primary), hsl(30 65% 28%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Quando: Header */
.quando-header {
  text-align: center;
  margin-bottom: 64px;
}

.quando-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.quando-subtitle {
  font-size: 1.125rem;
  color: hsl(0, 0%, 50%);
  letter-spacing: 0.02em;
}

/* Quando: Cards grid */
.quando-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.quando-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid hsl(0, 0%, 88%);
  background: hsl(0, 0%, 98%);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.45s ease;
}

/* Linha de luz no topo */
.quando-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, hsl(54, 100%, 50%), transparent);
  border-radius: 0 0 4px 4px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quando-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px hsla(38, 60%, 40%, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: hsla(45, 80%, 58%, 0.4);
  background: hsl(0, 0%, 98%);
}

.quando-card:hover::before {
  transform: translateX(-50%) scaleX(1);
  background: linear-gradient(90deg, transparent, hsl(54, 100%, 50%), transparent);
}

/* Numeracao */
.quando-card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: hsl(0, 0%, 92%);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.quando-card:hover .quando-card-number {
  color: hsla(45, 80%, 58%, 0.2);
}

/* Titulo e texto */
.quando-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.quando-card:hover h4 {
  color: hsl(0, 0%, 5%);
}

.quando-card p {
  color: hsl(0, 0%, 45%);
  font-size: 0.9375rem;
  line-height: 1.7;
  transition: color 0.4s ease;
}

.quando-card:hover p {
  color: hsl(0, 0%, 30%);
}

/* === Section: Nossa Abordagem === */
.abordagem-section {
  position: relative;
  padding-top: 140px !important;
  padding-bottom: 100px !important;
  margin-top: 80px;
  margin-bottom: 40px;
  overflow: hidden;
  background: #000 !important;
}

.abordagem-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.abordagem-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abordagem-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsla(0, 0%, 0%, 0.88) 0%,
    hsla(0, 0%, 0%, 0.82) 30%,
    hsla(0, 0%, 0%, 0.78) 60%,
    hsla(0, 0%, 0%, 0.85) 100%
  );
  backdrop-filter: blur(2px);
}

.abordagem-header {
  text-align: center;
  margin-bottom: 72px;
}

.abordagem-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.abordagem-pilares {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 769px) {
  .abordagem-pilares {
    grid-template-columns: repeat(3, 1fr);
  }
}

.abordagem-pilar {
  position: relative;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-top: 1px solid hsla(45, 80%, 58%, 0.25);
  background: hsla(0, 0%, 100%, 0.03);
  overflow: hidden;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.45s ease,
              background 0.45s ease;
}

/* Linha de luz superior */
.abordagem-pilar::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

/* Reflexo radial */
.abordagem-pilar::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, hsla(54, 100%, 50%, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.abordagem-pilar:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 20px 48px rgba(0, 0, 0, 0.15),
    0 0 40px hsla(54, 100%, 50%, 0.07);
  border-color: hsla(54, 100%, 50%, 0.4);
  border-top-color: hsla(45, 80%, 58%, 0.8);
  background: linear-gradient(135deg, hsla(45, 80%, 58%, 0.06) 0%, transparent 60%);
}

.abordagem-pilar:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.abordagem-pilar:hover::after {
  opacity: 1;
}

/* Watermark */
.abordagem-pilar-watermark {
  position: absolute;
  top: -10px;
  right: -5px;
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 800;
  color: hsla(0, 0%, 100%, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color 0.5s ease;
}
.abordagem-pilar:hover .abordagem-pilar-watermark {
  color: hsla(45, 80%, 58%, 0.06);
}

.abordagem-pilar-number {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  transition: text-shadow 0.4s ease;
}

.abordagem-pilar:hover .abordagem-pilar-number {
  text-shadow: 0 0 16px hsla(54, 100%, 50%, 0.5);
}

.abordagem-pilar h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid hsla(45, 80%, 58%, 0.15);
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.abordagem-pilar p {
  position: relative;
  z-index: 1;
  color: var(--fg-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  transition: color 0.4s ease;
}
.abordagem-pilar p strong {
  color: var(--fg);
  font-weight: 600;
}

.abordagem-pilar:hover p {
  color: var(--fg);
}
.abordagem-pilar:hover p strong {
  color: hsl(45, 80%, 58%);
}
.abordagem-pilar:hover h3 {
  border-bottom-color: hsla(45, 80%, 58%, 0.4);
}

.abordagem-cta {
  text-align: center;
  margin-top: 64px;
}

/* === Section: Servicos (white bg) === */
/* === Section: Serviços (halves layout) === */
.servicos-section {
  background: transparent;
  color: var(--fg);
  padding-top: 140px !important;
  padding-bottom: 100px !important;
}

.servicos-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.servicos-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-weight: 700;
}

.servicos-highlight {
  color: var(--primary);
}

/* Grid 3x2 */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Scroll reveal animation for service cards */
.servico-card.scroll-reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.servico-card.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.servico-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  background: hsla(0, 0%, 100%, 0.03);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.45s ease;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px hsla(54, 100%, 50%, 0.05);
  border-color: hsla(54, 100%, 50%, 0.3);
}

/* Imagem com overlay */
.servico-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.servico-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) grayscale(0%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.servico-card:hover .servico-card-img img {
  filter: brightness(1) grayscale(0%);
  transform: scale(1.05);
}

.servico-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.servico-card:hover .servico-card-overlay {
  opacity: 0.3;
}

/* Body do card */
.servico-card-body {
  padding: 24px 24px 28px;
}

.servico-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.servico-card:hover .servico-card-body h3 {
  color: var(--primary);
}

.servico-card-body p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Seções sobre fundo claro */
.section-on-light {
  color: hsl(0, 0%, 10%);
}

.section-on-light .label {
  color: hsl(0, 0%, 30%);
}
.section-on-light .label::before {
  border-color: hsl(0, 0%, 30%);
}
.section-on-light .divider {
  background: hsl(0, 0%, 30%);
}
.section-on-light h2 {
  color: hsl(0, 0%, 10%);
}

/* Generic light overrides for all content */
.section-on-light p,
.section-on-light .sobre-text p,
.section-on-light .parcerias-intro {
  color: hsl(0, 0%, 40%);
}
.section-on-light .parcerias-box {
  background: hsl(0, 0%, 100%);
  border-color: hsl(0, 0%, 88%);
}
.section-on-light .parceria-card {
  background: hsl(40, 15%, 95%);
  border-color: hsl(0, 0%, 88%);
}
.section-on-light .parceria-card h3,
.section-on-light .trajetoria-card h4 {
  color: hsl(0, 0%, 10%);
}
.section-on-light .parceria-card p,
.section-on-light .trajetoria-card p {
  color: hsl(0, 0%, 45%);
}
.section-on-light .parceria-icon,
.section-on-light .trajetoria-icon {
  background: hsla(54, 100%, 50%, 0.12);
}
.section-on-light .trajetoria-card {
  background: hsl(0, 0%, 100%);
  border-color: hsl(0, 0%, 88%);
}
.section-on-light .foto-wrapper {
  border-color: hsl(0, 0%, 88%);
}
.section-on-light .foto-caption h3 {
  color: hsl(0, 0%, 10%);
}
.section-on-light .section-subtitle {
  color: hsl(0, 0%, 45%);
}
.section-on-light .principio-card {
  background: hsl(0, 0%, 100%);
  border-color: hsl(0, 0%, 88%);
}
.section-on-light .principio-card h3 {
  color: hsl(0, 0%, 10%);
}
.section-on-light .principio-card p {
  color: hsl(0, 0%, 45%);
}
.section-on-light .principio-card .icon {
  background: hsla(54, 100%, 50%, 0.12);
}

/* CTA on light */
.section-on-light.cta-section .cta-content {
  border-color: hsl(0, 0%, 85%);
  background: linear-gradient(135deg, hsla(54, 100%, 50%, 0.04), transparent 60%);
}
.section-on-light.cta-section .cta-title {
  color: hsl(0, 0%, 10%);
}
.section-on-light.cta-section .cta-description {
  color: hsl(0, 0%, 45%);
}
.section-on-light.cta-section .cta-corner::before,
.section-on-light.cta-section .cta-corner::after {
  background: hsl(0, 0%, 30%);
}
.section-on-light.cta-section .btn-primary {
  background: hsl(0, 0%, 10%);
  color: #fff;
}
.section-on-light.cta-section .btn-outline {
  border-color: hsl(0, 0%, 80%);
  color: hsl(0, 0%, 10%);
}

/* Midia on light — top text */
.section-on-light .midia-top-right p {
  color: hsl(0, 0%, 45%);
}
.section-on-light .midia-top-right .btn-outline {
  border-color: hsl(0, 0%, 80%);
  color: hsl(0, 0%, 10%);
}

/* Hero split */
.servicos-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.servicos-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}


.servicos-hero-right p {
  color: var(--fg-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* Service list (accordion style) */
.servicos-list {
  display: flex;
  flex-direction: column;
}

/* === Section: Setores === */
.setores-header {
  text-align: center;
  margin-bottom: 64px;
}

.setores-desc {
  color: var(--fg-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Grid: 2 em cima, 3 embaixo */
.setores-grid-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

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

/* Card com imagem */
.setor-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  text-decoration: none;
  cursor: pointer;
}

.setor-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) grayscale(0%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.setor-card:hover img {
  filter: brightness(0.95) grayscale(0%);
  transform: scale(1.06);
}

.setor-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: background 0.5s ease;
}

.setor-card:hover .setor-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
}

.setor-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.setor-card-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 12px;
}

.setor-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.setor-card:hover .setor-card-content h3 {
  color: var(--primary);
}

.setor-card-content p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.setor-card:hover .setor-card-content p {
  opacity: 1;
  transform: translateY(0);
}

/* === Section: Blog / Na midia === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: hsla(54 100% 50% / 0.3);
  transform: translateY(-2px);
}

.blog-card .tag {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  flex: 1;
}

.blog-card .read-more {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

/* Media mentions */
.midia-mentions {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.midia-mentions .midia-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.midia-logos {
  display: flex;
  gap: 48px;
  align-items: center;
}

.midia-logos span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg-muted);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.midia-logos span:hover { opacity: 0.8; }

/* Events */
.events-section {
  margin-top: 80px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.event-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.event-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s;
}
.event-card:hover img {
  filter: grayscale(50%);
}

.event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, hsla(0 0% 0% / 0.8), transparent);
}

.event-card-overlay h4 {
  font-size: 1rem;
  color: #fff;
}
.event-card-overlay p {
  font-size: 0.8125rem;
  color: hsla(0 0% 100% / 0.6);
  margin-top: 4px;
}

/* === Section: Cases Tabs (tabs layout) === */
.cases-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
}

.cases-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 24px;
}

.cases-subtitle {
  color: var(--fg-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
}

/* Tabs menu */
.cases-tabs-menu {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  margin-bottom: 0;
}

.cases-tab-btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: none;
  border: none;
  padding: 18px 32px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
  white-space: nowrap;
}
.cases-tab-btn:hover {
  color: var(--fg);
}
.cases-tab-btn.active {
  color: var(--primary);
  text-shadow: 0 0 20px hsla(54, 100%, 50%, 0.4), 0 0 40px hsla(54, 100%, 50%, 0.15);
}
.cases-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 12px hsla(54, 100%, 50%, 0.5), 0 0 24px hsla(54, 100%, 50%, 0.2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.cases-tab-btn.active::after {
  transform: scaleX(1);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px hsla(54, 100%, 50%, 0.5), 0 0 24px hsla(54, 100%, 50%, 0.2); }
  50% { box-shadow: 0 0 20px hsla(54, 100%, 50%, 0.7), 0 0 40px hsla(54, 100%, 50%, 0.3); }
}

/* Tab panes */
.cases-tabs-content {
  position: relative;
}

.cases-tab-pane {
  display: none;
  animation: caseTabFade 0.4s ease;
}
.cases-tab-pane.active {
  display: block;
}

@keyframes caseTabFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tab grid: image + info */
.cases-tab-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  padding: 56px 0;
  align-items: start;
}

.cases-tab-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 16px;
  filter: brightness(0.75) grayscale(30%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.cases-tab-img:hover {
  filter: brightness(0.9) grayscale(0%);
  transform: scale(1.02);
}

.cases-tab-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: hsla(0, 0%, 100%, 0.03);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.case-v2-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: hsla(54, 100%, 50%, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
  width: fit-content;
}

.cases-tab-info h3 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 32px;
}

.cases-tab-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.cases-tab-block p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.cases-tab-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  display: block;
  margin-bottom: 10px;
}

.cases-tab-deliverables {
  margin-bottom: 24px;
}

.cases-tab-deliverables ul {
  padding-left: 0;
}

.cases-tab-deliverables li {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 2px 0 2px 16px;
  position: relative;
}
.cases-tab-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.cases-tab-impact {
  padding: 24px;
  margin-top: 8px;
  border: 1px solid hsla(54, 100%, 50%, 0.15);
  border-radius: 12px;
  background: hsla(54, 100%, 50%, 0.04);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.cases-tab-impact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.cases-tab-impact-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  background: hsla(54, 100%, 50%, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.cases-tab-impact p {
  color: var(--fg-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Momentos Estratégicos v2 */
.momentos-v2-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 40px;
}

.momentos-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.momento-v2 {
  background: hsla(0, 0%, 100%, 0.04);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.3s ease;
}
.momento-v2:hover {
  border-color: hsla(54, 100%, 50%, 0.2);
  transform: translateY(-2px);
}

.momento-v2-tag {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.momento-v2 h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.35;
}

.momento-v2 p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* === Section: Na Mídia (article cards) === */
.midia-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.midia-top-right p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* === Mídia Showcase (featured + sidebar) === */
.midia-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  min-height: 520px;
}

/* Featured card */
.midia-featured {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.midia-featured-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.midia-featured-img {
  position: absolute;
  inset: 0;
}

.midia-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.6s ease, opacity 0.5s ease;
  filter: brightness(0.5);
}

.midia-featured-img img.is-switching {
  opacity: 0;
  transform: scale(1.06);
}

.midia-featured:hover .midia-featured-img img {
  transform: scale(1.04);
  filter: brightness(0.35);
}

.midia-featured-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 28px;
  background: linear-gradient(
    to top,
    hsla(0, 0%, 0%, 0.95) 0%,
    hsla(0, 0%, 0%, 0.6) 40%,
    hsla(0, 0%, 0%, 0.15) 70%,
    transparent 100%
  );
}

.midia-featured-top {
  display: flex;
  gap: 8px;
}

.midia-featured-bottom h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 12px;
}

.midia-featured-bottom p {
  display: none;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
}

.midia-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: gap 0.3s ease;
}

.midia-featured:hover .midia-featured-cta {
  gap: 14px;
}

/* Progress bar */
.midia-progress {
  display: none;
}

.midia-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
}

/* Sidebar */
.midia-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.midia-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.midia-counter {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsla(0, 0%, 100%, 0.5);
  letter-spacing: 0.05em;
}

.midia-counter span:first-child {
  color: #fff;
  font-size: 1rem;
}

.midia-sidebar-arrows {
  display: flex;
  gap: 6px;
}

.midia-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.midia-arrow:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(0, 0%, 100%, 0.3);
}

/* Sidebar list items */
.midia-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  flex: 1;
  /* Show ~5 items: (72px item + 6px gap) * 5 */
  max-height: 390px;
  scrollbar-width: none;
}

.midia-list::-webkit-scrollbar {
  display: none;
}

.midia-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.midia-list-item:hover {
  background: hsla(0, 0%, 100%, 0.04);
}

.midia-list-item.active {
  background: hsla(0, 0%, 100%, 0.06);
  border-color: hsla(0, 0%, 100%, 0.1);
}

.midia-list-thumb {
  width: 64px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.midia-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.midia-list-item.active .midia-list-thumb img,
.midia-list-item:hover .midia-list-thumb img {
  filter: brightness(0.9);
}

.midia-list-info {
  flex: 1;
  min-width: 0;
}

.midia-list-info h4 {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsla(0, 0%, 100%, 0.6);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.midia-list-item.active .midia-list-info h4 {
  color: #fff;
}

.midia-list-publisher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.midia-list-publisher img {
  height: 12px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.midia-list-item.active .midia-list-publisher img {
  opacity: 0.8;
}

.midia-tag {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: hsla(0, 0%, 100%, 0.15);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 4px;
}

/* === Parcerias === */
.parcerias-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.parcerias-intro {
  color: var(--fg-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.parcerias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.parceria-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: all 0.3s ease;
}
.parceria-card:hover {
  border-color: hsla(54 100% 50% / 0.2);
}

.parceria-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: hsla(54 100% 50% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.parceria-logo {
  margin-bottom: 16px;
}

.parceria-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  border-radius: 12px;
}

.parceria-logo-sm img {
  height: 34px;
}

.parceria-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.parceria-card p {
  color: var(--fg-muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* === Trajetória Cards === */
.trajetoria-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.trajetoria-card {
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 88%);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.trajetoria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: hsl(0, 0%, 70%);
}

.trajetoria-logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.trajetoria-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  border-radius: 4px;
}

.trajetoria-logo img[alt="Produzindo Digital"] {
  filter: invert(1) !important;
}

.trajetoria-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: hsla(54 100% 50% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.trajetoria-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trajetoria-card p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === Section: Estrategista (Alan Costa) === */
.estrategista-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.estrategista-foto {
  position: sticky;
  top: 100px;
}

.foto-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  background: var(--bg-card);
  position: relative;
  box-shadow: none;
}

.foto-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
}

.foto-wrapper::after {
  display: none;
}

.foto-caption {
  margin-top: -60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.foto-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: hsl(0, 0%, 0%);
}

.foto-caption p {
  font-size: 1rem;
  color: hsl(0, 0%, 0%);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.estrategista-bio {
  min-width: 0;
}

.estrategista-bio .sobre-text p {
  font-size: 1rem;
  line-height: 1.85;
}

/* === Section: Experiencia / Sobre === */
.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sobre-text p {
  color: var(--fg-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.stat-card .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-card .stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* === Section: Principios === */
.principios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.principio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.3s ease;
}
.principio-card:hover {
  border-color: hsla(54 100% 50% / 0.2);
}

.principio-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: hsla(54 100% 50% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.125rem;
}

.principio-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.principio-card p {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* === Section: Contato === */
/* Contato header */
/* Contato grid layout */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contato-info {
  position: sticky;
  top: 120px;
}

.contato-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 16px 0 20px;
}

.contato-desc {
  color: var(--fg-secondary);
  line-height: 1.7;
  font-size: 1.0625rem;
  margin-bottom: 40px;
}

.contato-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contato-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: hsla(38, 75%, 48%, 0.1);
  border: 1px solid hsla(38, 75%, 48%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contato-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-secondary);
  margin-bottom: 4px;
}

.contato-info-item span {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.contato-info-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link-labeled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 9999px;
  color: var(--fg-secondary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.social-link-labeled:hover {
  border-color: hsla(45, 80%, 58%, 0.4);
  color: var(--fg);
  background: hsla(0, 0%, 100%, 0.05);
}

/* Stepper container */
.contato-form-col {}

/* Stepper indicators */
.stepper-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stepper-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid hsla(0, 0%, 100%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg-muted);
  transition: all 0.4s ease;
}

.stepper-step.active .stepper-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: #000;
}

.stepper-step.completed .stepper-circle {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}

.stepper-step span {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s;
}

.stepper-step.active span,
.stepper-step.completed span {
  color: var(--primary);
}

.stepper-line {
  flex: 1;
  height: 2px;
  background: hsla(0, 0%, 100%, 0.1);
  margin: 0 16px;
  margin-bottom: 20px;
  transition: background 0.4s ease;
}

.stepper-line.active {
  background: hsla(54, 100%, 50%, 0.3);
}

/* Form steps */
.contato-form-steps {
  background: hsla(0, 0%, 100%, 0.03);
  border: 1px solid hsla(38, 75%, 48%, 0.15);
  border-radius: 16px;
  padding: 48px 40px;
}

.form-step {
  display: none;
  animation: stepFadeIn 0.4s ease;
}

.form-step.active {
  display: block;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 28px;
}

.form-step-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 24px;
}

.form-step-actions .btn {
  min-width: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: hsla(0, 0%, 100%, 0.04);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: hsla(0, 0%, 100%, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23808080' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #1a1a1a;
  color: #FFFCF8;
}

.form-submit {
  min-width: 180px;
  margin-top: 8px;
}


.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: hsla(54, 100%, 50%, 0.1);
}

/* === Logos institucionais === */
/* Separador entre bio e logos */
.exp-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 32px;
}
.exp-separator::before,
.exp-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(0, 0%, 75%), transparent);
}

.logos-institucionais {
  margin-top: 48px;
}

.logos-institucionais .label {
  display: block;
  margin-bottom: 24px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.logo-inst-item {
  position: relative;
  padding: 16px 20px;
  border: none;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: hsl(0, 0%, 35%);
  background: transparent;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  text-align: center;
}

/* Separadores verticais entre logos via gap + borda esquerda por coluna */
.logos-grid {
  column-gap: 0;
}
.logos-grid .logo-inst-item {
  border-left: 1px solid hsl(0, 0%, 82%);
}
.logos-grid .logo-inst-item:nth-child(4n + 1) {
  border-left: none;
}
@media (max-width: 768px) {
  .logos-grid .logo-inst-item:nth-child(4n + 1) { border-left: 1px solid hsl(0, 0%, 82%); }
  .logos-grid .logo-inst-item:nth-child(2n + 1) { border-left: none; }
}

.logo-inst-item:hover {
}

.logo-inst-img {
  padding: 12px 16px;
}

.logo-inst-img img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  filter: none !important;
}

/* Logo tooltip on hover */
.logo-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: max-content;
  max-width: 240px;
  padding: 10px 14px;
  background: hsl(0, 0%, 12%);
  color: hsl(40, 15%, 92%);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 20;
  text-align: center;
}
.logo-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: hsl(0, 0%, 12%);
}
.logo-inst-item:hover .logo-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* === Encerramento final === */
.encerramento-final {
  text-align: center;
  padding: 80px 0 40px;
}

.encerramento-msg {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--fg-secondary);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.encerramento-assinatura img {
  height: 36px;
  width: auto;
  margin: 0 auto;
  opacity: 0.7;
}


/* === Midia tag logo === */
.midia-tag-logo {
  padding: 4px 8px;
  background: transparent;
  border: none;
}

.midia-tag-logo img {
  height: 18px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) !important;
}

.midia-tag-logo img[alt="Metrópoles"] {
  height: 21px;
}

/* === Footer === */
.footer {
  position: relative;
  padding: 64px 0 32px;
  margin-top: 0;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #000 0%,
    hsla(0, 0%, 0%, 0.88) 15%,
    hsla(0, 0%, 0%, 0.82) 50%,
    hsla(0, 0%, 0%, 0.88) 85%,
    #000 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.footer-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 48px 0;
  border-bottom: 1px solid hsla(0 0% 100% / 0.08);
}

.footer-marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.footer-marquee-text {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px hsla(0 0% 100% / 0.12);
  letter-spacing: 0.05em;
  padding: 0 40px;
  text-transform: uppercase;
  transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.footer-marquee:hover .footer-marquee-text {
  -webkit-text-stroke: 1px var(--primary);
  color: hsla(54 100% 50% / 0.06);
}

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

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  border-top: 1px solid hsla(0 0% 100% / 0.08);
  padding-top: 48px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-secondary);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--fg-muted);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }

.footer-social-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.footer-social-link svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid hsla(0 0% 100% / 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* === Divider === */
.divider {
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin: 16px 0 24px;
}

/* === Theme Light (when light section is active) === */
body.theme-light .navbar {
  background: hsla(40, 15%, 95%, 0.25);
}
body.theme-light .navbar.scrolled {
  background: hsla(40, 15%, 95%, 0.55);
}
body.theme-light .navbar-logo img {
  filter: invert(1);
}
body.theme-light .navbar-links a,
body.theme-light .navbar-cta.desktop {
  color: hsl(0, 0%, 15%);
}
body.theme-light .navbar-cta,
body.theme-light .navbar-cta.desktop {
  background: hsl(0, 0%, 10%);
  color: hsl(40, 15%, 95%);
}
body.theme-light .menu-toggle span {
  background: hsl(0, 0%, 10%);
}
body.theme-light .section-divider-number {
  color: hsl(0, 0%, 30%);
}
body.theme-light .section-divider-line {
  background: linear-gradient(90deg, hsl(0, 0%, 75%), transparent);
}
body.theme-light .section-divider-text {
  color: hsl(0, 0%, 55%);
}

/* === Scroll Video Section === */
.scroll-video-section {
  height: 500vh;
  position: relative;
}

.scroll-video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-section-divider {
  display: none;
}

.scroll-video-mobile { display: none; }

@media (max-width: 768px) {
  .scroll-video-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: block;
  }
  .scroll-video-desktop { display: none; }
  .scroll-video-mobile {
    display: block;
    position: absolute;
    top: 250px;
    left: 0;
    width: 100%;
    height: calc(100% - 250px);
    object-fit: cover;
  }
}

/* Divider on light background */
.divider-on-light .section-divider-number {
  color: hsl(0, 0%, 30%);
}
.divider-on-light .section-divider-line {
  background: linear-gradient(90deg, hsl(0, 0%, 75%), transparent);
}
.divider-on-light .section-divider-text {
  color: hsl(0, 0%, 55%);
}

/* === Intro Sobre — Expandable scroll video === */
.intro-sobre-section {
  padding-bottom: 0 !important;
}

.intro-sobre-center {
  text-align: center;
  margin-bottom: 64px;
}

.intro-sobre-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
}

.intro-fill-word {
  display: inline-block;
  color: hsla(0, 0%, 100%, 0.12);
  transition: color 0.4s ease;
  margin-right: 0.2em;
}

.intro-fill-word.intro-filled {
  color: var(--fg);
}

.intro-fill-italic {
  font-style: normal;
}

.intro-fill-italic.intro-filled {
  color: var(--primary);
}

/* Video wrap — expands from small centered to fullscreen */
.intro-sobre-video-wrap {
  height: 600vh;
  position: relative;
  display: flex;
  justify-content: center;
}

.intro-sobre-video-container {
  position: sticky;
  top: 20vh;
  height: 45vh;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  transition: none;
  width: 60%;
}

.intro-sobre-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-sobre-video-container video {
  border-radius: inherit;
}

/* Spacer after scroll video */
.scroll-video-spacer {
  height: clamp(40px, 6vw, 80px);
}

/* Quando section extra top spacing */
.quando-section {
  padding-top: 140px !important;
}

.sobre-section {
  padding-top: 140px !important;
}

/* === Section Dividers (numbered dividers) === */
.section-divider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 80px 0;
  margin: 0;
}

.section-divider-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  min-width: 28px;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

.section-divider-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === CTA Section (styled CTA) === */
.cta-section {
  background: transparent;
}

.cta-content {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, hsla(54 100% 50% / 0.02), transparent 60%);
  overflow: hidden;
}

.cta-decorative {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-corner {
  position: absolute;
  width: 24px;
  height: 24px;
}
.cta-corner::before,
.cta-corner::after {
  content: '';
  position: absolute;
  background: var(--primary);
}
.cta-corner::before {
  width: 1px;
  height: 24px;
}
.cta-corner::after {
  width: 24px;
  height: 1px;
}

.cta-corner-tl { top: -1px; left: -1px; }
.cta-corner-tl::before { top: 0; left: 0; }
.cta-corner-tl::after { top: 0; left: 0; }

.cta-corner-tr { top: -1px; right: -1px; }
.cta-corner-tr::before { top: 0; right: 0; }
.cta-corner-tr::after { top: 0; right: 0; }

.cta-corner-bl { bottom: -1px; left: -1px; }
.cta-corner-bl::before { bottom: 0; left: 0; }
.cta-corner-bl::after { bottom: 0; left: 0; }

.cta-corner-br { bottom: -1px; right: -1px; }
.cta-corner-br::before { bottom: 0; right: 0; }
.cta-corner-br::after { bottom: 0; right: 0; }

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.0625rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* === Geometric Accents (geometric accents) === */
.section-header {
  position: relative;
}

.section-header .label {
  position: relative;
  padding-left: 20px;
}
.section-header .label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 1px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
}

/* === Enhanced Card Hover (enhanced hover) === */
.principio-card,
.publicacao-veiculo,
.parceria-card,
.trajetoria-card {
  position: relative;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* === Responsive === */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .setores-grid-bottom { grid-template-columns: repeat(2, 1fr); }
  .setor-card { height: 300px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-tab-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .midia-showcase { grid-template-columns: 1fr 1fr; min-height: 420px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px 0; }

  .cta-content { padding: 48px 24px; }

  .navbar { padding: 0 16px; overflow: visible; }
  .navbar-inner { height: 60px; }
  .navbar-logo img { height: 34px; }
  .navbar-links { display: none; }
  .nav-dot { display: none; }
  .navbar-cta.desktop { display: none; }
  .lang-toggle { margin-right: 4px; flex-shrink: 0; }
  .menu-toggle { display: flex; flex-shrink: 0; }

  /* Mobile menu overlay */
  .navbar-links.open {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #000 !important;
    padding: 0 40px !important;
    gap: 0 !important;
    border: none !important;
    z-index: 9999 !important;
    overflow-y: auto;
    animation: menuFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  @keyframes menuFadeIn {
    from {
      opacity: 0;
      clip-path: circle(0% at top right);
    }
    to {
      opacity: 1;
      clip-path: circle(150% at top right);
    }
  }

  .navbar-links.open a {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: hsla(0, 0%, 100%, 0.35) !important;
    padding: 14px 0 !important;
    letter-spacing: -0.02em !important;
    display: block !important;
    width: 100% !important;
    opacity: 0;
    transform: translateY(20px);
    animation: menuItemIn 0.4s ease forwards;
  }

  .navbar-links.open a:nth-child(1) { animation-delay: 0.15s; }
  .navbar-links.open a:nth-child(2) { animation-delay: 0.2s; }
  .navbar-links.open a:nth-child(3) { animation-delay: 0.25s; }
  .navbar-links.open a:nth-child(4) { animation-delay: 0.3s; }
  .navbar-links.open a:nth-child(5) { animation-delay: 0.35s; }
  .navbar-links.open a:nth-child(6) { animation-delay: 0.4s; }
  .navbar-links.open a:nth-child(7) { animation-delay: 0.45s; }

  @keyframes menuItemIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar-links.open a:hover,
  .navbar-links.open a.active {
    color: #fff !important;
  }

  .navbar-links.open a.mobile-only {
    display: block !important;
    color: var(--primary) !important;
    margin-top: 16px;
    padding-top: 24px !important;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  }

  .mobile-menu-footer {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.08);
    opacity: 0;
    animation: menuItemIn 0.4s ease 0.5s forwards;
  }

  .mobile-menu-social {
    display: flex;
    gap: 16px;
  }

  .mobile-menu-social a {
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    border: none !important;
    background: none !important;
    display: inline-flex !important;
    align-items: center !important;
    color: hsla(0, 0%, 100%, 0.4) !important;
    font-size: 0.875rem !important;
    font-family: var(--font-heading) !important;
    font-weight: 500 !important;
    padding: 0 !important;
    gap: 8px !important;
    transition: color 0.3s !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }

  .mobile-menu-social a:hover {
    color: #fff !important;
  }

  .mobile-menu-info {
    font-size: 0.8125rem !important;
    color: hsla(0, 0%, 100%, 0.3) !important;
    font-family: var(--font-heading);
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.4;
  }

  .navbar-links.open a::after {
    display: none !important;
  }

  /* Hamburger always on top */
  .menu-toggle {
    position: relative;
    z-index: 10000 !important;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: visible;
  }

  .hero .container {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 12px;
    line-height: 1.15;
  }

  .hero h1 .hero-line-1 {
    display: block;
    white-space: nowrap;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--fg);
  }

  .hero h1 span:last-child {
    display: block;
  }

  .hero-content .label {
    font-size: 0.8125rem;
    margin-bottom: 12px;
    color: #fff;
  }

  .hero-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 16px auto 28px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn {
    padding: 12px 24px;
    font-size: 0.8125rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .problema-paragraphs { grid-template-columns: 1fr; gap: 24px; }
  .problema-section { padding-top: 80px !important; }
  .intro-sobre-video-container { width: 92%; height: 70vh; max-width: calc(100% - 32px); }
  .intro-sobre-video { object-fit: contain; }
  .scroll-quote { padding: 48px 0 24px; }
  .scroll-quote-text {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.4;
    padding: 0 8px;
  }
  .sq-word {
    margin-right: 0.2em;
  }
  .scroll-video-sticky {
    height: 60vh;
    position: sticky;
    top: 0;
  }
  .scroll-video-section {
    height: 300vh;
  }
  .scroll-video-spacer {
    height: 0;
  }
  .quando-section { padding-top: 40px !important; }
  .quando-header { text-align: left; margin-bottom: 24px; }
  .quando-cards { grid-template-columns: 1fr; gap: 12px; }
  .quando-card { padding: 24px 20px; }

  /* Quando section — dark no mobile */
  .quando-section {
    background: #000 !important;
  }
  .quando-section .quando-title,
  .quando-section .quando-subtitle {
    color: var(--fg);
  }
  .quando-section .quando-subtitle {
    color: var(--fg-secondary);
  }
  .quando-card {
    background: hsla(0, 0%, 100%, 0.05);
    border-color: hsla(0, 0%, 100%, 0.1);
  }
  .quando-card:hover {
    background: hsla(0, 0%, 100%, 0.08);
    border-color: hsla(45, 80%, 58%, 0.3);
  }
  .quando-card h3 { color: var(--fg); }
  .quando-card p { color: var(--fg-secondary); }
  .quando-card-number { color: hsla(0, 0%, 100%, 0.08); }
  .quando-card:hover .quando-card-number { color: hsla(45, 80%, 58%, 0.15); }
  .section-divider-wrap { padding: 28px 0; }

  .quando-section {
    padding-bottom: 16px !important;
  }
  .mobile-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.15), transparent);
  }

  .abordagem-section { padding-top: 80px !important; }
  .abordagem-header { text-align: left; }
  .abordagem-pilares { grid-template-columns: 1fr; gap: 24px; }
  .abordagem-pilar { padding: 32px 24px; }

  .servicos-section { padding-top: 60px !important; }
  .servicos-header { text-align: left; margin: 0 0 40px; }
  .servicos-grid { grid-template-columns: 1fr; gap: 20px; }
  .servico-card-img { height: 160px; }

  .setores-header { text-align: left; }
  .setores-desc { margin-left: 0; }
  .setores-grid-top,
  .setores-grid-bottom { grid-template-columns: 1fr; gap: 16px; }
  .setores-grid-top { margin-bottom: 16px; }
  .setor-card { height: 260px; }
  .setor-card-content { padding: 24px; }
  .setor-card-content p { opacity: 1; transform: none; }

  .blog-grid { grid-template-columns: 1fr; }

  .sobre-content { grid-template-columns: 1fr; gap: 40px; }

  .principios-grid { grid-template-columns: 1fr; }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contato-info {
    position: static;
    text-align: left;
    padding-bottom: 32px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06);
  }
  .contato-title {
    font-size: 1.75rem;
    margin: 12px 0 16px;
  }
  .contato-desc {
    font-size: 0.9375rem;
    margin-bottom: 28px;
  }
  .contato-info-items {
    gap: 16px;
    margin-bottom: 24px;
  }
  .contato-info-item {
    text-align: left;
    gap: 12px;
  }
  .contato-info-icon {
    width: 38px;
    height: 38px;
  }
  .contato-info-social {
    justify-content: flex-start;
    margin-bottom: 8px;
  }
  .contato-form-col {
    width: 100%;
  }
  .stepper-indicators {
    margin-bottom: 32px;
    gap: 4px;
  }
  .stepper-step span {
    font-size: 0.5625rem;
  }
  .stepper-circle {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .stepper-line {
    margin: 0 4px;
    align-self: flex-start;
    margin-top: 16px;
  }
  .contato-form-steps {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .form-row { grid-template-columns: 1fr; }
  .form-step-title {
    font-size: 1.125rem !important;
    margin-bottom: 20px !important;
  }
  .form-group label {
    font-size: 0.8125rem;
  }
  .form-step-actions {
    flex-direction: column;
    gap: 12px;
  }
  .form-step-actions .btn {
    width: 100%;
  }

  .cases-tabs-menu { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cases-header { text-align: left; margin: 0 0 48px; }
  .cases-tab-btn { padding: 12px 20px; font-size: 0.8125rem; }
  .cases-tab-grid { grid-template-columns: 1fr; gap: 24px; }
  .cases-tab-img { min-height: 240px; }
  .cases-tab-impact { flex-direction: column; gap: 8px; }

  .momentos-v2-grid { grid-template-columns: 1fr; }

  .midia-top { grid-template-columns: 1fr; gap: 24px; }
  .midia-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .midia-featured { min-height: 380px; }
  .midia-sidebar { max-height: 320px; }
  .midia-sidebar-arrows { gap: 10px; }
  .midia-arrow {
    width: 80px;
    height: 44px;
    border-radius: 999px;
    border-width: 2px;
  }
  .midia-arrow svg { width: 20px; height: 20px; }
  .midia-list { overflow-y: auto; }

  .parcerias-grid { grid-template-columns: 1fr; }

  .estrategista-content { grid-template-columns: 1fr; gap: 40px; }
  .estrategista-foto { position: static; max-width: 100%; width: 100%; margin: 0 auto; }

  .trajetoria-cards { grid-template-columns: 1fr; gap: 12px; }

  .events-grid { grid-template-columns: 1fr; }

  .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .logo-inst-item { padding: 12px; min-height: 60px; font-size: 0.6875rem; }
  .logo-inst-img img { height: 32px; }
  .encerramento-final { padding: 48px 0 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col { display: none; }
  .footer-col:last-child { display: block; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

}
