/*
Theme Name: Zazá Sousa
Theme URI: https://zazasousa.com.br
Author: Equipe Zazá Sousa
Description: Tema próprio de zazasousa.com.br — migração fiel do site estático para WordPress. Blog nativo, depoimentos, temas de palestra e link bio editáveis.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: zaza
*/

/* ============================================
   SITE ZAZÁ SOUSA — CSS Foundation
   Design System: Continuidade da Landing Page
   Versão: 1.0 — Abril 2026
   ============================================ */

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

:root {
  /* Paleta — idêntica à Landing Page */
  --gold: #D4A853;
  --gold-light: #E8C878;
  --gold-dark: #B8922F;
  --gold-glow: rgba(212,168,83,0.25);
  --blue-deep: #0F1A2E;
  --blue-mid: #162240;
  --blue-card: rgba(22,34,64,0.5);
  --black: #080B12;
  --black-soft: #0E1219;
  --offwhite: #F7F4EE;
  --offwhite-dark: #EDE8DE;
  --white: #FFFFFF;
  --gray: #9CA3AF;
  --gray-dark: #4B5563;
  --gray-text: #374151;
  --gray-light: #D1D5DB;

  /* Glass */
  --glass-border: rgba(255,255,255,0.08);
  --glass-bg: rgba(255,255,255,0.03);
  --glass-bg-hover: rgba(255,255,255,0.06);

  /* Tipografia */
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --narrow: 800px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow: 0 4px 24px rgba(0,0,0,0.2);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.3);
  --shadow-gold: 0 0 30px rgba(212,168,83,0.15);
  --shadow-card-light: 0 4px 24px rgba(0,0,0,0.06);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: var(--narrow); }

.section {
  padding: 96px 0;
  position: relative;
}

.section--dark {
  background: var(--blue-deep);
  color: var(--white);
  position: relative;
}
.section--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,83,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.section--dark > .container { position: relative; z-index: 1; }

.section--light {
  background: var(--offwhite);
  color: var(--black);
}

.section--black {
  background: var(--black);
  color: var(--white);
  position: relative;
}
.section--black::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(15,26,46,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.section--black > .container { position: relative; z-index: 1; }

.section--offwhite-gradient {
  background: linear-gradient(180deg, var(--offwhite) 0%, var(--white) 100%);
  color: var(--black);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.headline {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.headline--xl { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.headline--lg { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
.headline--md { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.headline--sm { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.headline--gold { color: var(--gold); }
.headline--center { text-align: center; }

.subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--gray);
  margin-top: 20px;
  max-width: 680px;
}
.subheadline--dark { color: var(--gray-text); }
.subheadline--center { text-align: center; margin-left: auto; margin-right: auto; }
.section--light .subheadline { color: var(--gray-text); }

.prose p { margin-bottom: 24px; line-height: 1.8; }
.prose p:last-child { margin-bottom: 0; }
.section--light .prose p { color: var(--gray-dark); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 0 0 rgba(212,168,83,0);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow), 0 0 60px rgba(212,168,83,0.1);
}
.btn--ghost {
  background: var(--glass-bg);
  color: var(--gold);
  border-color: rgba(212,168,83,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(212,168,83,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,168,83,0.1);
}
.btn--secondary {
  background: var(--blue-deep);
  color: var(--white);
  border-color: transparent;
}
.btn--secondary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}
.btn--outline-dark:hover {
  background: var(--blue-deep);
  color: var(--white);
}
.btn--lg { height: 58px; padding: 0 36px; font-size: 0.9rem; }
.btn--xl { height: 66px; padding: 0 52px; font-size: 1rem; }
.btn--md { height: 48px; padding: 0 28px; font-size: 0.85rem; }
.btn--full { width: 100%; }

.cta-group { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.cta-group--center { justify-content: center; }

.microcopy {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 14px;
  line-height: 1.5;
}
.microcopy--center { text-align: center; }

/* ============================================
   HEADER — MULTI-PAGE NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(8,11,18,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.header.scrolled {
  padding: 10px 0;
  background: rgba(8,11,18,0.95);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.header__logo:hover img { opacity: 0.85; }
.header.scrolled .header__logo img { height: 34px; }

/* Desktop Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--white);
}
.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.header__cta {
  height: 42px;
  padding: 0 24px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,11,18,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 70%; height: 180%;
  background: radial-gradient(ellipse at 60% 40%, rgba(212,168,83,0.06) 0%, rgba(15,26,46,0.3) 40%, transparent 70%);
  pointer-events: none;
}
.page-hero__content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.page-hero__content .headline { margin-bottom: 8px; }

/* Page hero with image */
.page-hero--split {
  min-height: 60vh;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero__image {
  display: flex;
  justify-content: center;
}
.page-hero__photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(212,168,83,0.08);
  filter: contrast(1.05) brightness(1.02);
}

/* Home hero — full height */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 70%; height: 180%;
  background: radial-gradient(ellipse at 60% 40%, rgba(212,168,83,0.08) 0%, rgba(15,26,46,0.4) 40%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(15,26,46,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 620px; }
.hero__content .headline { margin-bottom: 4px; }
.hero__image { position: relative; display: flex; justify-content: center; }
.hero__photo {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(212,168,83,0.08);
  filter: contrast(1.05) brightness(1.02);
}

/* ============================================
   CARDS — REUSABLE
   ============================================ */
/* Glass card (dark background) */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(212,168,83,0.15);
  transform: translateY(-4px);
}
.card__icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.card__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card__link:hover { color: var(--gold-light); }
.card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card__link:hover svg { transform: translateX(4px); }

/* Light card */
.card--light {
  background: var(--white);
  border: 1px solid var(--offwhite-dark);
  box-shadow: var(--shadow-card-light);
}
.card--light:hover {
  border-color: rgba(212,168,83,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.card--light .card__title { color: var(--blue-deep); }
.card--light .card__text { color: var(--gray-dark); }

/* Featured card (gold accent) */
.card--featured {
  border-color: rgba(212,168,83,0.2);
  background: linear-gradient(135deg, rgba(212,168,83,0.03) 0%, var(--glass-bg) 100%);
}

/* ============================================
   STAT NUMBERS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--offwhite-dark);
  background: var(--white);
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-light);
}
.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-card__label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.4;
}

/* Stats on dark bg */
.section--dark .stat-card,
.section--black .stat-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}
.section--dark .stat-card:hover,
.section--black .stat-card:hover {
  border-color: rgba(212,168,83,0.2);
}
.section--dark .stat-card__number,
.section--black .stat-card__number { color: var(--gold); }
.section--dark .stat-card__label,
.section--black .stat-card__label { color: var(--gray); }

/* ============================================
   BLOCKQUOTE / PULL QUOTE
   ============================================ */
.pull-quote {
  text-align: center;
  padding: 80px 40px;
}
.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}
.pull-quote__text::before { content: '\201C'; color: var(--gold); }
.pull-quote__text::after { content: '\201D'; color: var(--gold); }
.pull-quote__author {
  display: block;
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
/* Light accordion */
.accordion--light .accordion-item {
  background: var(--white);
  border: 1px solid var(--offwhite-dark);
}
.accordion--light .accordion-item.is-open {
  border-color: rgba(212,168,83,0.3);
}
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-deep);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.4;
  gap: 16px;
}
.accordion__trigger:hover { color: var(--gold-dark); }
.accordion__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--gold-dark);
  transition: transform var(--transition);
}
.accordion-item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__content-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* Dark accordion */
.accordion--dark .accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.accordion--dark .accordion__trigger { color: var(--white); }
.accordion--dark .accordion__content-inner { color: var(--gray); }

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  padding: 36px;
  border-radius: var(--radius-lg);
  position: relative;
}
/* Light testimonials */
.section--light .testimonial {
  background: var(--white);
  border: 1px solid var(--offwhite-dark);
  box-shadow: var(--shadow-card-light);
}
.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
}
.testimonial__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: 24px;
  font-style: italic;
}
.section--dark .testimonial__text,
.section--black .testimonial__text { color: var(--gray); }
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-deep);
}
.section--dark .testimonial__name { color: var(--white); }
.testimonial__role {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}
.testimonial__socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.testimonial__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  color: var(--gray);
  transition: color .2s;
}
.testimonial__socials a:hover { color: var(--gold); }
.section--dark .testimonial__socials a { color: var(--gray-light, #aaa); }
.section--dark .testimonial__socials a:hover { color: var(--gold); }
.testimonial__socials svg { width: 16px; height: 16px; }

/* Avatar lightbox */
.testimonial__avatar { cursor: pointer; transition: transform .2s; }
.testimonial__avatar:hover { transform: scale(1.12); }
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox-overlay.is-active { opacity: 1; pointer-events: auto; }
.lightbox-overlay img {
  max-width: 320px; max-height: 320px;
  border-radius: 50%; border: 4px solid var(--gold);
  object-fit: cover; box-shadow: 0 0 60px rgba(0,0,0,.5);
  transform: scale(.8); transition: transform .3s;
}
.lightbox-overlay.is-active img { transform: scale(1); }
.lightbox-overlay__close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1;
}

/* Dark bg testimonials */
.section--dark .testimonial,
.section--black .testimonial {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: none;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 8px;
}
.section--dark .form-label { color: var(--gray-light); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--offwhite-dark);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-text);
  transition: all var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* Email validation feedback */
.form-input[type="email"].is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-input[type="email"].is-valid {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.12);
}
.email-hint {
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 1.2em;
  color: #c0392b;
  transition: opacity 0.2s;
}
.section--dark .email-hint { color: #ff7675; }

/* Dark form */
.section--dark .form-input,
.section--dark .form-select,
.section--dark .form-textarea {
  background: rgba(255,255,255,0.05);
  border-color: var(--glass-border);
  color: var(--white);
}
.section--dark .form-input::placeholder { color: var(--gray); }
.section--dark .form-select option {
  background: var(--white);
  color: var(--gray-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-dark);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

/* Inline newsletter form */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.newsletter-form .form-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.newsletter-form .form-input::placeholder { color: var(--gray); }
.section--light .newsletter-form .form-input {
  background: var(--white);
  border-color: var(--offwhite-dark);
  color: var(--gray-text);
}


/* ============================================
   PILARES / FEATURE GRID
   ============================================ */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pilar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.pilar:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(212,168,83,0.15);
  transform: translateY(-4px);
}
.pilar__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.pilar__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pilar__text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,168,83,0.2));
}
.timeline__item {
  position: relative;
  padding-bottom: 40px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -34px; top: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--black);
}
.section--light .timeline__dot { border-color: var(--offwhite); }
.timeline__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}
.section--light .timeline__text { color: var(--gray-dark); }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.section--light .blog-card {
  background: var(--white);
  border: 1px solid var(--offwhite-dark);
  box-shadow: var(--shadow-card-light);
}
.section--light .blog-card:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--offwhite-dark);
}
.blog-card__body { padding: 24px; }
.blog-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: block;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray);
}
.blog-card__meta svg { width: 14px; height: 14px; }

/* ============================================
   MEDIA / PRESS GRID
   ============================================ */
.press-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.press-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.press-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.press-photo:hover img { transform: scale(1.05); }
.press-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.press-photo:hover .press-photo__overlay { opacity: 1; }
.press-photo__download {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Logo wall */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
}
.logo-wall img {
  height: 40px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition);
}
.logo-wall img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   "FOR YOU / NOT FOR YOU" Columns
   ============================================ */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.for-col {
  padding: 40px;
  border-radius: var(--radius-lg);
}
.for-col--yes {
  background: rgba(212,168,83,0.05);
  border: 1px solid rgba(212,168,83,0.2);
}
.for-col--no {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
}
.for-col__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.for-col--yes .for-col__title { color: var(--gold); }
.for-col--no .for-col__title { color: var(--gray); }
.for-col__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.for-col__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}
.for-col__list li svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 3px;
}
.for-col--yes .for-col__list li svg { color: var(--gold); }
.for-col--no .for-col__list li svg { color: var(--gray); }

/* ============================================
   NARRATIVE BLOCKS (Sobre page)
   ============================================ */
.narrative-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
  border-bottom: 1px solid var(--offwhite-dark);
}
.narrative-block:last-child { border-bottom: none; }
.narrative-block__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.narrative-block__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.25;
  margin-bottom: 20px;
}
.narrative-block__text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3a3530;
}
.narrative-block__text strong { color: var(--blue-deep); font-weight: 600; }
.narrative-block__highlight {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-dark);
  margin: 24px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

/* ============================================
   CREDENTIALS GRID
   ============================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--offwhite-dark);
  transition: all var(--transition);
}
.credential:hover {
  border-color: rgba(212,168,83,0.3);
}
.credential__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  color: var(--gold-dark);
}
.credential__title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.credential__sub {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   POSITIONING BLOCKS (Sobre page)
   ============================================ */
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.positioning-item {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.positioning-item:hover {
  border-color: rgba(212,168,83,0.15);
}
.positioning-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 12px);
  justify-self: center;
}
.positioning-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.positioning-item__text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   SPEAKER TOPIC CARD
   ============================================ */
.topic-card {
  background: var(--white);
  border: 1px solid var(--offwhite-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.topic-card:hover { border-color: rgba(212,168,83,0.3); }
.topic-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  gap: 16px;
}
.topic-card__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  width: 40px;
}
.topic-card__title-group { flex: 1; }
.topic-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-deep);
  line-height: 1.3;
}
.topic-card__subtitle {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 4px;
}
.topic-card__toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  color: var(--gold-dark);
  transition: transform var(--transition);
}
.topic-card.is-open .topic-card__toggle { transform: rotate(45deg); }
.topic-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.topic-card__body-inner {
  padding: 0 28px 28px;
  padding-left: 68px;
}
.topic-card__synopsis {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 20px;
}
.topic-card__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.topic-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topic-card__meta svg { width: 14px; height: 14px; color: var(--gold-dark); }
.topic-card__takeaways {
  padding-top: 16px;
  border-top: 1px solid var(--offwhite-dark);
}
.topic-card__takeaways h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.topic-card__takeaways ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.topic-card__takeaways li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.topic-card__takeaways li svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--gold-dark);
  margin-top: 3px;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================
   FOOTER — MULTI-PAGE
   ============================================ */
.footer {
  background: var(--black-soft);
  padding: 80px 0 32px;
  border-top: 1px solid var(--glass-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer__brand-logo img {
  height: 48px;
  width: auto;
}
.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 0.88rem;
  color: var(--gray);
}
.footer__links a:hover { color: var(--white); }

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--gray);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray);
  opacity: 0.6;
}
.footer__bottom a { color: var(--gray); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  z-index: 998;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ============================================
   SKIP-NAV & FOCUS
   ============================================ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 8px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 10001;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   LGPD COOKIE BANNER
   ============================================ */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue-deep);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  font-size: 0.82rem;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}
.lgpd-banner.is-hidden { transform: translateY(100%); pointer-events: none; }
.lgpd-banner__text { max-width: 680px; }
.lgpd-banner__text a { color: var(--gold); text-decoration: underline; }
.lgpd-banner__btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.lgpd-banner__btn:hover { background: var(--gold-light); }
@media (max-width: 768px) {
  .lgpd-banner { flex-direction: column; text-align: center; gap: 12px; padding: 14px 16px; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-narrow { max-width: var(--narrow); }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid,
  .page-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__image,
  .page-hero__image { order: -1; }
  .hero__photo { max-width: 320px; aspect-ratio: 1/1; margin: 0 auto; }
  .page-hero__photo { max-width: 320px; aspect-ratio: 1/1; margin: 0 auto; }
  .hero__content,
  .page-hero__content { text-align: center; margin: 0 auto; }
  .hero__content .subheadline,
  .page-hero__content .subheadline { margin-left: auto; margin-right: auto; }
  .cta-group { justify-content: center; }

  /* Nav */
  .header__nav { display: none; }
  .header__toggle { display: block; }
  .header__cta--desktop { display: none; }

  /* Grids */
  .grid-3,
  .pilares-grid,
  .blog-grid,
  .gallery-grid,
  .press-photos { grid-template-columns: repeat(2, 1fr); }
  .grid-4,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .positioning-item:last-child:nth-child(odd) { max-width: 100%; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 64px; }
  .page-hero { min-height: auto; padding-top: 100px; padding-bottom: 64px; }

  .headline--xl br,
  .headline--lg br { display: none; }

  .grid-2,
  .for-grid { grid-template-columns: 1fr; }
  .grid-3,
  .pilares-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand-desc { margin-left: auto; margin-right: auto; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .pull-quote { padding: 48px 20px; }
  .pull-quote__text { font-size: clamp(1.1rem, 4vw, 1.4rem); }

  .btn--lg { width: 100%; font-size: 0.85rem; height: 52px; padding: 0 24px; }
  .btn--xl { width: 100%; font-size: 0.9rem; height: 56px; padding: 0 28px; }

  .topic-card__body-inner { padding-left: 28px; }
  .topic-card__number { display: none; }

  .narrative-block { padding: 32px 0; }
  .narrative-block__title { font-size: 1.3rem; }

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

  .newsletter-form { flex-direction: column; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */
@media (max-width: 540px) {
  .container { padding: 0 16px; }

  .header__logo img { height: 30px; }

  .headline--xl { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .headline--lg { font-size: clamp(1.35rem, 4.5vw, 1.8rem); }
  .subheadline { font-size: clamp(0.88rem, 3.5vw, 1rem); }
  .eyebrow { font-size: 0.65rem; }

  .hero { padding-top: 90px; padding-bottom: 48px; }
  .hero__photo,
  .page-hero__photo { max-width: 260px; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px 24px;
  }
  .stat-card__number { font-size: 1.6rem; margin-bottom: 0; }

  .gallery-grid,
  .press-photos { grid-template-columns: 1fr 1fr; }

  .btn { white-space: normal; text-align: center; line-height: 1.3; }
  .btn--lg { height: auto; min-height: 48px; padding: 12px 20px; font-size: 0.78rem; }

  .whatsapp-float { bottom: 20px; right: 16px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ============================================
   ARTICLE PAGE
   ============================================ */

/* Article Header */
.article-header {
  padding: 140px 0 48px;
  background: var(--blue-deep);
  color: #fff;
}
.article-header__category {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
}
.article-header__excerpt {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 24px;
}
.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.article-header__meta svg {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 6px;
}
.article-header__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Article Body */
.article-body {
  padding: 64px 0 80px;
  background: var(--offwhite);
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--blue-deep);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.25;
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--blue-deep);
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.article-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 24px;
  text-align: justify;
  text-justify: inter-word;
}
.article-content strong {
  font-weight: 600;
  color: var(--blue-deep);
}
.article-content ul,
.article-content ol {
  margin: 0 0 24px 24px;
  line-height: 1.85;
  color: #2a2a2a;
  font-size: 1.05rem;
  text-align: justify;
  text-justify: inter-word;
}
.article-content li {
  margin-bottom: 8px;
}
.article-content blockquote {
  margin: 40px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--gold);
  background: rgba(212,168,83,0.06);
  border-radius: 0 8px 8px 0;
}
.article-content blockquote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.6;
  margin-bottom: 0;
}
.article-content .data-highlight {
  display: block;
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--blue-deep);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}
.article-content .data-highlight strong {
  color: var(--gold);
}
.article-content hr {
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 48px 0;
}

/* Author Box */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}
.author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-deep), var(--gold));
}
.author-box__info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.author-box__info p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
  margin-bottom: 0;
}

/* Share Bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.share-bar__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.share-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.share-bar__link:hover {
  background: var(--gold);
  transform: scale(1.1);
}
.share-bar__link svg {
  width: 18px;
  height: 18px;
}

/* Related Articles */
.related-articles {
  padding: 80px 0;
  background: #fff;
}
.related-articles__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--blue-deep);
  text-align: center;
  margin-bottom: 40px;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Article CTA */
.article-cta {
  margin: 56px 0 0;
  padding: 40px;
  background: var(--blue-deep);
  border-radius: 16px;
  text-align: center;
}
.article-cta__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.article-cta__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Article Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }

/* Article Responsive */
@media (max-width: 768px) {
  .article-header { padding: 120px 0 36px; }
  .article-header__excerpt { font-size: 1rem; }
  .article-body { padding: 40px 0 56px; }
  .article-content blockquote { padding: 20px 20px; margin: 28px 0; }
  .article-content .data-highlight { padding: 20px; }
  .author-box { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
  .article-cta { padding: 28px 20px; }
  .related-articles__grid { grid-template-columns: 1fr; }
  .share-bar { flex-wrap: wrap; }
}
@media (max-width: 540px) {
  .article-header__meta { gap: 12px; font-size: 0.8rem; }
}

/* ========================================
   PRINT STYLES — Article Only
   ======================================== */
@media print {

  /* Page margins */
  @page {
    margin: 1.5cm 2cm;
  }

  /* ---- GLOBAL RESET ---- */
  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt !important;
    line-height: 1.65 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* ---- FORCE ALL CONTAINERS TO FULL WIDTH ---- */
  .container,
  .container--article,
  .container--narrow,
  section,
  .article-header,
  .article-body,
  .article-content,
  main,
  article {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none !important;
    overflow: visible !important;
  }

  /* ---- HIDE NON-ESSENTIAL ELEMENTS ---- */
  .header,
  .mobile-menu,
  .scroll-progress,
  .share-bar,
  .article-cta,
  .related-articles,
  footer,
  .footer,
  .breadcrumb,
  .back-to-top,
  nav,
  .header__toggle,
  .header__cta,
  button[aria-label="Imprimir artigo"] {
    display: none !important;
  }

  /* ---- ARTICLE HEADER ---- */
  .article-header {
    background: none !important;
    color: #000 !important;
    padding: 0 0 0.75rem 0 !important;
    margin-bottom: 1rem !important;
    border-bottom: 2px solid #D4A853;
  }
  .article-header h1 {
    color: #0F1A2E !important;
    font-size: 20pt !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
  }
  .article-header__category {
    background: none !important;
    color: #0F1A2E !important;
    border: 1px solid #0F1A2E;
    padding: 1px 6px !important;
    font-size: 8pt !important;
    margin-bottom: 0.75rem !important;
  }
  .article-header__excerpt {
    color: #333 !important;
    font-size: 10.5pt !important;
    max-width: 100% !important;
  }
  .article-header__meta {
    color: #666 !important;
    font-size: 9pt !important;
  }
  .article-header__meta span {
    color: #666 !important;
  }
  .article-header__meta svg {
    display: none !important;
  }

  /* ---- ARTICLE BODY ---- */
  .article-body {
    padding: 0.5rem 0 0 0 !important;
  }
  .article-content p,
  .article-body p {
    color: #000 !important;
    font-size: 11pt !important;
    line-height: 1.65 !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    margin-bottom: 0.75rem !important;
    orphans: 3;
    widows: 3;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .article-content h2,
  .article-body h2 {
    color: #0F1A2E !important;
    font-size: 14pt !important;
    page-break-after: avoid;
    margin-top: 1.25rem !important;
    margin-bottom: 0.5rem !important;
  }
  .article-content h3,
  .article-body h3 {
    color: #0F1A2E !important;
    font-size: 12pt !important;
    page-break-after: avoid;
  }
  .article-content ul,
  .article-content ol,
  .article-body ul,
  .article-body ol {
    color: #000 !important;
    font-size: 11pt !important;
    max-width: 100% !important;
  }
  .article-content li,
  .article-body li {
    color: #000 !important;
  }
  .article-content strong,
  .article-body strong {
    color: #000 !important;
  }

  /* ---- BLOCKQUOTES ---- */
  .article-content blockquote,
  .article-body blockquote {
    border-left: 3px solid #D4A853 !important;
    background: #f5f5f5 !important;
    color: #000 !important;
    page-break-inside: avoid;
    padding: 0.75rem 1rem !important;
    margin: 1rem 0 !important;
  }
  blockquote cite {
    color: #666 !important;
  }

  /* ---- DATA HIGHLIGHTS (preserve dark background for print) ---- */
  .data-highlight {
    background: #0F1A2E !important;
    color: #fff !important;
    border-left: 3px solid #D4A853 !important;
    page-break-inside: avoid;
    padding: 0.75rem 1rem !important;
    margin: 1rem 0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
    border-radius: 8px !important;
  }
  .data-highlight__number {
    color: #D4A853 !important;
    font-size: 16pt !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .data-highlight__text {
    color: rgba(255,255,255,0.85) !important;
    font-size: 10pt !important;
  }
  .data-highlight__label {
    color: rgba(255,255,255,0.85) !important;
  }
  .data-highlight__source {
    color: rgba(255,255,255,0.5) !important;
    font-size: 8pt !important;
  }

  /* ---- AUTHOR BOX ---- */
  .author-box {
    background: #f5f3ee !important;
    border: 1px solid #ddd !important;
    page-break-inside: avoid;
    margin-top: 1.5rem !important;
    padding: 1rem 1.25rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
  }
  .author-box__avatar {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
  }
  .author-box__info {
    text-align: left !important;
  }
  .author-box__info h4 {
    color: #0F1A2E !important;
    font-size: 11pt !important;
    margin-bottom: 2px !important;
  }
  .author-box__info p {
    color: #333 !important;
    font-size: 9pt !important;
    line-height: 1.5 !important;
  }

  /* ---- LINKS: show URL ---- */
  .article-content a[href]:after,
  .article-body a[href]:after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    color: #888;
    word-break: break-all;
  }

  /* ---- PAGE BREAK CONTROL ---- */
  img, figure, .data-highlight, blockquote, .author-box {
    page-break-inside: avoid;
  }
  h2, h3, h4 {
    page-break-after: avoid;
  }

  /* ---- IMAGES ---- */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}


/* ============================================
   AJUSTES WORDPRESS
   ============================================ */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignwide, .alignfull { max-width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .wp-element-caption { font-size: 14px; color: var(--gray); text-align: center; margin-top: 8px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.article-content .wp-block-image img { border-radius: var(--radius-lg); }
.article-content blockquote { border-left: 3px solid var(--gold); padding-left: 24px; margin: 32px 0; font-size: 19px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: var(--radius); border: 1px solid rgba(15,26,46,0.12); color: var(--blue-deep); font-weight: 600; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.section--light .pagination .page-numbers { color: var(--blue-deep); }
.form-feedback { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius); font-size: 15px; }
.form-feedback--ok { background: rgba(34,153,84,0.12); color: #1e7e46; border: 1px solid rgba(34,153,84,0.3); }
.form-feedback--err { background: rgba(200,50,50,0.10); color: #b03030; border: 1px solid rgba(200,50,50,0.3); }
.zs-hp { position: absolute !important; left: -9999px !important; }

/* Títulos herdam a cor da seção (impede que os estilos globais do WordPress os pintem de azul escuro) */
.section .headline,
.hero .headline,
.page-hero .headline,
.section h2.headline,
.section h3.headline { color: inherit; }
