/* ===== VARIÁVEIS ===== */
:root {
  --coral: #F08C79;
  --coral-alt: #F2917D;
  --navy: #1C3A5C;
  --navy-alt: #173654;
  --blue: #3E6FA8;
  --blue-alt: #2F5C8F;
  --cream: #F6F1EB;
  --cream-alt: #EDE3D6;
  --header-bg: #FCEADB;
  --text: #2B2B2B;
  --white: #FFFFFF;

  --font-impact: 'Poppins', sans-serif;
  --font-script: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

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

.impact, .impact-inline {
  font-family: var(--font-impact);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--coral);
}

.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
}

h1, h2, h3 {
  font-family: var(--font-impact);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover {
  background: #e17862;
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(240,140,121,0.4);
}
.btn-white {
  background: var(--white);
  color: var(--blue-alt);
  margin-top: 12px;
}
.btn-white:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.btn-lg { padding: 16px 34px; font-size: 16px; }
.link-secondary {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.logo-fallback {
  display: none;
  flex-direction: column;
}
.logo-nome {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
}
.logo-sub {
  font-size: 12px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.main-nav a {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--coral); }
.main-nav a:hover::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--header-bg);
  z-index: 200;
  padding: 100px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.mobile-menu a {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--cream);
  padding: 60px 0;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/textura-papel.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.85;
}
.shape-top-left {
  width: 280px;
  height: 280px;
  background: var(--blue);
  top: -120px;
  left: -120px;
  opacity: 0.25;
  animation: floatBlob 9s ease-in-out infinite;
}
.shape-bottom-right {
  width: 320px;
  height: 320px;
  background: var(--coral);
  bottom: -140px;
  right: -140px;
  opacity: 0.22;
  animation: floatBlob 11s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .shape-top-left, .shape-bottom-right { animation: none; }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-content { flex: 1 1 45%; }
.hero-title {
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero-title .script,
.hero-title .impact {
  display: inline-block;
  opacity: 0;
  animation: popIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title .script { animation-delay: 0.15s; }
.hero-title .impact { animation-delay: 0.4s; }

@keyframes popIn {
  0% { opacity: 0; transform: translateY(14px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .script, .hero-title .impact { animation: none; opacity: 1; }
}
.hero-subtitle {
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-image {
  flex: 1 1 55%;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img, .hero-image .img-placeholder {
  border-radius: 16px;
  width: 100%;
  max-width: 504px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* placeholders */
.img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cream-alt);
  border: 2px dashed var(--blue);
  color: var(--navy);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 20px;
}
.placeholder-icon { font-size: 36px; }
.placeholder-sobre {
  aspect-ratio: 7/9;
  max-width: 100%;
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-cream { background: var(--cream); }
.section-off { background: var(--cream-alt); }

.section-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 20px;
}
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 17px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(28,58,92,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(28,58,92,0.14);
}
.card-alt {
  background: var(--white);
  border: 1px solid rgba(240,140,121,0.25);
}
.card-icon { margin-bottom: 16px; }
.card-icon svg { width: 44px; height: 44px; transition: transform 0.35s ease; }
.card:hover .card-icon svg { transform: scale(1.12) rotate(-4deg); }
.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.card p { margin: 0; font-size: 15px; }

.card-emoji { font-size: 32px; line-height: 1; margin-bottom: 14px; }

/* ===== ÁREAS AVALIADAS ===== */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 64px;
}
.card-area {
  flex: 0 0 calc((100% - 84px) / 4);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
}
.area-emoji { font-size: 30px; line-height: 1; flex-shrink: 0; }
.card-area h3 { font-size: 15px; line-height: 1.35; margin: 0; }

/* ===== PARA QUEM É O ATENDIMENTO ===== */
.audience {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-left: 5px solid var(--coral);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 16px rgba(28,58,92,0.06);
}
.audience h3 { font-size: 24px; margin-bottom: 16px; }
.audience p { margin: 0 0 14px; font-size: 16px; }
.audience p:last-child { margin-bottom: 0; }

/* ===== ABAS (FASES) ===== */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 28px;
  border-radius: 14px;
  border: 2px solid var(--coral);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.tab:hover { transform: translateY(-2px); }
.tab-sub { font-size: 12px; font-weight: 500; opacity: 0.8; }
.tab[aria-selected="true"] {
  background: var(--coral);
  color: var(--white);
}
.tab-panel[hidden] { display: none; }

.stage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 64px;
}
.card-stage { flex: 0 0 calc((100% - 56px) / 3); }
.stage-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.stage-emoji { font-size: 32px; line-height: 1; }
.card-stage h3 { margin: 0; font-size: 20px; }
.card .stage-lead {
  font-size: 14px;
  font-style: italic;
  color: #5a6472;
  margin-bottom: 14px;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.check-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
.subsection-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 16px;
}

/* ===== MENSAGEM IMPORTANTE ===== */
.message-card {
  max-width: 820px;
  margin: 0 auto 56px;
  background: var(--white);
  border-radius: 20px;
  padding: 44px 48px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(28,58,92,0.08);
}
.message-title {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 20px;
}
.message-card p:not(.message-title) { margin: 0 0 14px; font-size: 16px; }
.message-card p:last-child { margin-bottom: 0; }
.message-card strong { color: var(--navy); }

/* ===== CAROUSEL ===== */
.carousel {
  overflow: hidden;
  margin-bottom: 56px;
}
.carousel-track {
  display: flex;
  gap: 28px;
  will-change: transform;
}
.carousel-track .card {
  flex: 0 0 calc((100% - 56px) / 3);
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-script);
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  padding: 48px;
  border-radius: 20px;
  margin: 0;
}
.quote-block strong { color: var(--coral); font-style: normal; }
.quote-block.reveal { transform: translateY(24px) scale(0.97); }
.quote-block.reveal.is-visible { transform: translateY(0) scale(1); }

.type-char {
  opacity: 0;
  transition: opacity 0.05s linear;
}
.quote-block.is-visible .type-char {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .type-char {
    opacity: 1 !important;
    transition: none !important;
  }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-alt));
  color: var(--white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner::before { width: 220px; height: 220px; top: -110px; left: -60px; }
.cta-banner::after { width: 260px; height: 260px; bottom: -140px; right: -80px; }
.cta-line-1 {
  position: relative;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 10px;
}
.cta-line-2 {
  position: relative;
  font-family: var(--font-impact);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 32px;
}
.cta-highlight {
  color: var(--coral);
  text-transform: uppercase;
}
.cta-banner.reveal { transform: translateY(24px) scale(0.97); }
.cta-banner.reveal.is-visible { transform: translateY(0) scale(1); }
.cta-banner .btn-white { position: relative; margin-top: 0; }

/* ===== ABOUT ===== */
.about-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}
.about-image { flex: 1 1 40%; }
.about-image img, .about-image .img-placeholder {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 7/9;
  object-fit: cover;
}
.about-content { flex: 1 1 60%; }
.about-content p { font-size: 16px; margin-bottom: 18px; }
.about-credentials-title { margin-top: 88px; }

/* ===== FORMAÇÃO E TRAJETÓRIA ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.card-stat { text-align: center; padding: 28px 16px; }
.stat-number {
  display: block;
  font-family: var(--font-impact);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--coral);
  margin-bottom: 10px;
}
.card-stat p { font-size: 14px; }

.cred-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.card-cred { flex: 0 0 calc((100% - 56px) / 3); }
.card-cred h3 { font-size: 19px; margin-bottom: 14px; }
.tag {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 9px;
  border-radius: 999px;
  background: rgba(240,140,121,0.18);
  color: #b4523f;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.step {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(28,58,92,0.12);
}
.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-impact);
  font-weight: 800;
  font-size: 20px;
  transition: transform 0.35s ease;
}
.step:hover .step-number { transform: scale(1.12); }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; margin: 0; }

/* ===== FAQ ACCORDION ===== */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border-bottom: 1px solid rgba(28,58,92,0.15);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion-icon {
  color: var(--coral);
  font-size: 22px;
  font-weight: 800;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel p {
  padding: 0 4px 20px;
  margin: 0;
  font-size: 15px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-col p { margin: 6px 0; font-size: 14px; color: #d7dde5; }
.footer-nome {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--white);
}
.footer-col .logo-sub { color: #b9c3d1; margin-bottom: 16px; display: block; }
.footer-cta { margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 24px;
  text-align: center;
  font-size: 12px;
  color: #b9c3d1;
}
.footer-bottom p { margin: 4px 0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* directional reveals for two-column layouts */
.hero-content.reveal { transform: translateX(-32px); }
.hero-content.reveal.is-visible { transform: translateX(0); }
.hero-image.reveal { transform: translateX(32px); }
.hero-image.reveal.is-visible { transform: translateX(0); }
.about-image.reveal { transform: translateX(-32px); }
.about-image.reveal.is-visible { transform: translateX(0); }
.about-content.reveal { transform: translateX(32px); }
.about-content.reveal.is-visible { transform: translateX(0); }

/* staggered children inside grids: the parent (.stagger) becomes visible
   immediately, while its children animate in one after another */
.stagger.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.stagger .card,
.stagger .step,
.stagger .accordion-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger.is-visible .card,
.stagger.is-visible .step,
.stagger.is-visible .accordion-item {
  opacity: 1;
  transform: translateY(0);
}
.stagger.is-visible .card:nth-child(1),
.stagger.is-visible .step:nth-child(1),
.stagger.is-visible .accordion-item:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible .card:nth-child(2),
.stagger.is-visible .step:nth-child(2),
.stagger.is-visible .accordion-item:nth-child(2) { transition-delay: 0.15s; }
.stagger.is-visible .card:nth-child(3),
.stagger.is-visible .step:nth-child(3),
.stagger.is-visible .accordion-item:nth-child(3) { transition-delay: 0.25s; }
.stagger.is-visible .card:nth-child(4),
.stagger.is-visible .step:nth-child(4),
.stagger.is-visible .accordion-item:nth-child(4) { transition-delay: 0.35s; }
.stagger.is-visible .card:nth-child(5),
.stagger.is-visible .accordion-item:nth-child(5) { transition-delay: 0.45s; }

.stagger.is-visible .card:nth-child(6) { transition-delay: 0.55s; }
.stagger.is-visible .card:nth-child(7) { transition-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger .card, .stagger .step, .stagger .accordion-item {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== FOCUS VISIBLE ===== */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 80px; }
  .hero-inner { flex-direction: column-reverse; }
  .hero-title { font-size: 36px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { flex-direction: column; }
  .about-image.reveal, .about-content.reveal { transform: translateY(24px); }
  .about-image.reveal.is-visible, .about-content.reveal.is-visible { transform: translateY(0); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .carousel-track .card { flex-basis: calc((100% - 28px) / 2); }
  .card-area { flex-basis: calc((100% - 28px) / 2); }
  .card-stage { flex-basis: calc((100% - 28px) / 2); }
  .card-cred { flex-basis: calc((100% - 28px) / 2); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-credentials-title { margin-top: 64px; }
}

@media (max-width: 600px) {
  .hero { padding: 40px 0; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 16px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 26px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .quote-block { font-size: 19px; padding: 32px 24px; }
  .cta-banner { padding: 40px 24px; }
  .cta-line-1 { font-size: 21px; }
  .cta-line-2 { font-size: 19px; }
  .logo-img { height: 64px; }
  .hero-content.reveal, .hero-image.reveal { transform: translateY(24px); }
  .hero-content.reveal.is-visible, .hero-image.reveal.is-visible { transform: translateY(0); }
  .carousel-track .card { flex-basis: 100%; }
  .card-area, .card-stage, .card-cred { flex-basis: 100%; }
  .stats-row { gap: 16px; }
  .stat-number { font-size: 34px; }
  .area-grid { gap: 16px; margin-bottom: 48px; }
  .stage-grid { margin-bottom: 48px; }
  .audience { padding: 28px 24px; }
  .audience h3 { font-size: 20px; }
  .subsection-title { font-size: 22px; }
  .tab { width: 100%; }
  .message-card { padding: 32px 24px; }
  .message-title { font-size: 22px; }
}
