/* =====================================================
   FÁBIO DE MELLO — PORTFÓLIO
   Design: Dark Luxury + Warm Gold Accents
   ===================================================== */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A7A2E;
  --dark:        #0D0D0D;
  --dark-2:      #141414;
  --dark-3:      #1C1C1C;
  --dark-4:      #252525;
  --mid:         #3A3A3A;
  --light-text:  #E0D8CC;
  --muted:       #888;
  --white:       #FFFFFF;
  --bg-section:  #F7F4EF;
  --bg-dark-sec: #111111;
  --font-head:   'Playfair Display', serif;
  --font-body:   'Inter', sans-serif;
  --radius:      12px;
  --shadow:      0 8px 40px rgba(0,0,0,.18);
  --shadow-gold: 0 4px 24px rgba(201,168,76,.22);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────── */
.section-pretitle {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 18px;
}
.section-title em { color: var(--gold); font-style: normal; }

.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

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

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1EBF5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}

.btn-full { width: 100%; justify-content: center; }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-tag {
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
}
.nav-link.nav-cta:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,.05) 0%, transparent 50%);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-pretitle {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: normal; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: .03em;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  z-index: 0;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 80px; height: 80px;
  background: var(--gold);
  opacity: .12;
  border-radius: 50%;
  z-index: 0;
}

.hero-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top center;
  max-height: 75vh;
  filter: brightness(.95) contrast(1.05);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  animation: bounce 2s infinite;
  transition: var(--transition);
}
.hero-scroll a:hover { border-color: var(--gold); color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── SOBRE ──────────────────────────────────────────── */
.sobre {
  padding: 110px 0;
  background: var(--bg-section);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sobre-img-wrap img {
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.sobre-img-wrap:hover img { transform: scale(1.03); }

.sobre-card-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(13,13,13,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 600;
  font-size: .88rem;
}

.sobre-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 18px;
}
.sobre-text strong { color: #1a1a1a; }

.sobre-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,.1);
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: #888;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── PALESTRAS ──────────────────────────────────────── */
.palestras {
  padding: 110px 0;
  background: var(--dark-2);
}

.palestras .section-pretitle { color: var(--gold); }
.palestras .section-title { color: var(--white); }
.palestras .section-desc { color: rgba(255,255,255,.55); }

.palestras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.palestra-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.palestra-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.palestra-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.palestra-card:hover::before { transform: scaleX(1); }

.palestra-card.featured {
  background: linear-gradient(145deg, #1f1a0e, var(--dark-3));
  border-color: rgba(201,168,76,.25);
}

.palestra-card.dark {
  background: linear-gradient(145deg, #0a0a0a, #161616);
}

.palestra-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 22px;
}

.palestra-card h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
}

.palestra-card p {
  font-size: .93rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.palestra-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.25);
}

/* Formato */
.palestras-formato {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 40px 40px 36px;
}

.palestras-formato h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.palestras-formato h3 i { color: var(--gold); }

.formato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.formato-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.formato-item i { color: var(--gold); min-width: 16px; }
.formato-item:hover { background: rgba(201,168,76,.08); border-color: rgba(201,168,76,.2); color: var(--white); }

/* ── DIFERENCIAIS ───────────────────────────────────── */
.diferenciais {
  padding: 110px 0;
  background: var(--bg-section);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.diferencial-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.05);
}
.diferencial-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.dif-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}

.diferencial-item h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.diferencial-item p {
  font-size: .88rem;
  color: #666;
  line-height: 1.7;
}

/* Quote */
.quote-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--dark);
  border-radius: 20px;
  position: relative;
}

.quote-block .fa-quote-left {
  font-size: 3rem;
  color: var(--gold);
  opacity: .35;
  margin-bottom: 20px;
}

.quote-block blockquote {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 24px;
}

.quote-block cite {
  font-size: .85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
}

/* ── PÚBLICO ────────────────────────────────────────── */
.publico {
  padding: 110px 0;
  background: var(--white);
}

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

.publico-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.publico-item:hover {
  background: var(--dark);
  border-color: rgba(201,168,76,.3);
}
.publico-item:hover i { color: var(--gold); }
.publico-item:hover span { color: var(--white); }

.publico-item i {
  font-size: 1.5rem;
  color: var(--gold-dark);
  min-width: 28px;
  transition: var(--transition);
}
.publico-item span {
  font-weight: 500;
  font-size: .95rem;
  color: #2a2a2a;
  transition: var(--transition);
}

/* ── OBJETIVO ───────────────────────────────────────── */
.objetivo {
  position: relative;
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}

.obj-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 70%);
}

.obj-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.obj-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.obj-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 24px;
}

.obj-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
}
.obj-content p strong { color: var(--gold-light); }

/* ── FORMAÇÃO ───────────────────────────────────────── */
.formacao {
  padding: 110px 0;
  background: var(--bg-section);
}

.formacao-timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.formacao-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
}

.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 44px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex: 1;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
}

.timeline-content h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: .92rem;
  color: #666;
  line-height: 1.75;
}

/* ── CONTATO ────────────────────────────────────────── */
.contato {
  padding: 110px 0;
  background: var(--dark-2);
}

.contato-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.contato .section-pretitle { color: var(--gold); }
.contato .section-title { color: var(--white); }

.contato > .container > .contato-inner > .contato-text > p {
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
}

.contato-text > p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.contato-row i {
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 24px;
}

.contato-row div { display: flex; flex-direction: column; gap: 4px; }
.contato-row strong { font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; }
.contato-row span, .contato-row a { font-size: .95rem; color: rgba(255,255,255,.75); }
.contato-row a:hover { color: var(--gold); }

/* CTA Card */
.cta-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
}

.cta-card-body {
  padding: 28px 28px 32px;
  text-align: center;
}

.cta-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-card-body p {
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

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

.footer-brand .logo-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
}

.footer-sub {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  padding: 6px 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  border-radius: 50px;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: #1EBF5A;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-container { gap: 40px; }
}

@media (max-width: 900px) {
  .palestras-grid { grid-template-columns: 1fr; }
  .formato-grid   { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid     { grid-template-columns: 1fr; gap: 40px; }
  .contato-inner  { grid-template-columns: 1fr; gap: 48px; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero-image { order: -1; }
  .hero-image-frame { max-width: 320px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .sobre-stats { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(13,13,13,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    z-index: 899;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { font-size: 1.2rem; padding: 12px 28px; color: var(--white); }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
  .publico-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .diferenciais-grid { grid-template-columns: 1fr; }
  .formato-grid { grid-template-columns: 1fr; }
  .sobre-stats { flex-direction: column; gap: 20px; align-items: center; }
  .hero-title { font-size: 2.8rem; }
  .quote-block { padding: 40px 28px; }
  .quote-block blockquote { font-size: 1.1rem; }
  .palestras-formato { padding: 28px 20px; }
}
