/* ============================================================
   Interatividade Cursos — Design System Custom CSS
   (complementa o Tailwind CDN)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --purple-900: #2A0F36;
  --purple-800: #3D1850;
  --purple-700: #4B1C5C;
  --purple-600: #5C2270;
  --purple-100: #EFE3F4;
  --orange-600: #E07A1A;
  --orange-500: #F39200;
  --orange-400: #F5A623;
  --orange-100: #FFE9CC;
  --yellow-500: #F5C518;
  --yellow-400: #FFD447;
  --cream: #FFF8EE;
  --gray-100: #F5F2EE;
  --gray-300: #D8D2CB;
  --gray-500: #6B6470;
  --gray-700: #3E3744;
  --white: #FFFFFF;
  --black: #1A0F22;

  --shadow-sm: 0 1px 2px rgba(42,15,54,.08);
  --shadow-md: 0 4px 12px rgba(42,15,54,.10);
  --shadow-lg: 0 12px 28px rgba(42,15,54,.14);
  --shadow-glow-orange: 0 8px 24px rgba(243,146,0,.35);
  --shadow-glow-purple: 0 8px 24px rgba(75,28,92,.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* necessário no Safari/iOS — overflow-x só em body não basta */
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--purple-900);
  background: #fff;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 80px; /* compensa o header fixo */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.2;
}

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

/* ---------- Foco acessível ---------- */
*:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: #fff;
  color: var(--purple-700);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  text-decoration: none;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Scroll margin (evita header sobrepor ancora) ---------- */
section[id] { scroll-margin-top: 88px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 150ms ease;
  white-space: nowrap;
  min-height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden; /* necessário para o efeito ripple */
}
.btn:active { transform: translateY(1px); }

.btn-sm  { min-height: 40px; font-size: .875rem; padding: 0 16px; }
.btn-md  { min-height: 48px; }
.btn-lg  { min-height: 56px; font-size: 1.125rem; padding: 0 32px; border-radius: var(--radius-lg); }

.btn-primary-orange {
  background: var(--orange-500);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary-orange:hover {
  background: var(--orange-600);
  box-shadow: var(--shadow-glow-orange);
  color: #fff;
}

.btn-primary-purple {
  background: var(--purple-700);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary-purple:hover {
  background: var(--purple-800);
  box-shadow: var(--shadow-glow-purple);
  color: #fff;
}

.btn-accent-yellow {
  background: var(--yellow-500);
  color: var(--purple-900);
  box-shadow: var(--shadow-md);
}
.btn-accent-yellow:hover {
  background: var(--yellow-400);
  color: var(--purple-900);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}

.btn-outline-purple {
  background: transparent;
  border: 2px solid var(--purple-700);
  color: var(--purple-700);
}
.btn-outline-purple:hover {
  background: var(--purple-100);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,15,54,.08);
  transition: box-shadow 200ms;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* .logo definido abaixo junto com .logo-img */

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-link {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 150ms, background 150ms;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 200ms;
}
.nav-link:hover { color: var(--purple-700); }
.nav-link:hover::after { width: calc(100% - 24px); }

.nav-link.active { color: var(--purple-700); font-weight: 600; }
.nav-link.active::after { width: calc(100% - 24px); }

.nav-link-external {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 150ms, background 150ms;
}
.nav-link-external:hover { color: var(--purple-700); background: var(--purple-100); }

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--purple-700);
  transition: background 150ms;
}
.menu-btn:hover { background: var(--purple-100); }
@media (min-width: 768px) { .menu-btn { display: none; } }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(42,15,54,.08);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }

.mobile-link {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--purple-900);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: background 150ms;
  display: flex;
  align-items: center;
  min-height: 52px;
}
.mobile-link:hover { background: var(--purple-100); color: var(--purple-700); }

/* ---------- WhatsApp Flutuante ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform 200ms, box-shadow 200ms;
  animation: pulse-whatsapp 3s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.65); }
}

/* ---------- Botão voltar ao topo ---------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 59;
  width: 44px; height: 44px;
  background: var(--purple-700);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 200ms, transform 200ms;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--purple-800); }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  min-height: 92svh; /* ocupa quase tela inteira no mobile */
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(to right,
      rgba(243,146,0,1)    0%,
      rgba(243,146,0,0.97) 28%,
      rgba(243,146,0,0.88) 48%,
      rgba(243,146,0,0.25) 68%,
      rgba(243,146,0,0)    88%
    ),
    url('../assets/img/Img_Fundo.jpg') right top / cover no-repeat,
    linear-gradient(135deg, #F5A623 0%, #F39200 50%, #E07A1A 100%);
}
@media (max-width: 767px) {
  .hero-section {
    /* No mobile: gradiente limpo, sem depender da imagem */
    background: linear-gradient(150deg, #F5A623 0%, #F39200 55%, #E07A1A 100%);
  }
}
@media (min-width: 768px) {
  .hero-section { min-height: 640px; }
}

/* Canvas de partículas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  max-width: 1536px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 28px 96px;
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .hero-inner {
    justify-content: center;
    text-align: center;
    padding: 40px 24px 80px;
    align-items: flex-end; /* ancora o texto na parte inferior */
  }
}
@media (min-width: 768px) {
  .hero-inner { padding-bottom: 100px; }
}

/* Limita texto ao lado esquerdo */
.hero-content {
  max-width: 580px;
}
@media (max-width: 767px) {
  .hero-content { max-width: 100%; }
}

.hero-overline {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-900);
  opacity: .75;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.75rem, 10vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
}
.hero-emphasis {
  font-style: italic;
  font-weight: 800;
  color: var(--purple-900);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #fff;
  opacity: .92;
  margin-bottom: 36px;
  line-height: 1.5;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 767px) {
  .hero-actions {
    justify-content: center;
    gap: 12px;
  }
  .hero-actions .btn-lg {
    width: 100%;
    max-width: 320px;
  }
}

.hero-image-area {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  object-fit: cover;
  object-position: top;
  filter: drop-shadow(0 -8px 32px rgba(42,15,54,.2));
}

.hero-img-placeholder {
  width: 100%;
  max-width: 420px;
  height: 480px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  font-weight: 500;
  flex-direction: column;
  gap: 12px;
}

.hero-wave {
  line-height: 0;
  margin-top: -2px;
  position: relative;
  z-index: 4;
}
.hero-wave svg { display: block; }

/* ---------- Seções gerais ---------- */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }

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

.section-overline {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--purple-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 68ch;
}

/* ---------- Agenda ---------- */
.agenda-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.agenda-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--purple-100);
}

.evento-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-300);
  animation: fadeIn .4s ease;
}
.evento-item:last-child { border-bottom: none; }

.evento-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 6px; }

.evento-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  height: 24px;
  border-radius: var(--radius-full);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--purple-100);
  color: var(--purple-800);
  white-space: nowrap;
}
.evento-badge.palestra   { background: var(--orange-100); color: var(--orange-600); }
.evento-badge.workshop   { background: var(--purple-100); color: var(--purple-700); }
.evento-badge.curso      { background: #e6f4ea; color: #1e7e34; }

.evento-data {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-700);
  flex-shrink: 0;
}

.evento-titulo {
  font-weight: 600;
  font-size: 1rem;
  color: var(--purple-900);
  margin-bottom: 4px;
}

.evento-descricao {
  font-size: .9375rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 12px;
}

.evento-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--orange-500);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 150ms;
}
.evento-link:hover { color: var(--orange-600); }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-300) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-line { height: 16px; margin-bottom: 8px; }
.skeleton-line.short { width: 40%; }
.skeleton-line.medium { width: 70%; }
.skeleton-line.full   { width: 100%; }

/* ---------- Seção Equipe ---------- */
.team-section {
  background: linear-gradient(180deg, var(--purple-600) 0%, var(--purple-700) 100%);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 32px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform 250ms, box-shadow 250ms;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow-purple); }

.team-photo {
  width: 180px; height: 180px;
  border-radius: var(--radius-full);
  border: 4px solid rgba(255,255,255,.3);
  overflow: hidden;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.team-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-role {
  font-size: .875rem;
  font-weight: 600;
  color: var(--yellow-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Logo imagem */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.team-bio { font-size: .9375rem; color: rgba(255,255,255,.8); line-height: 1.65; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 250ms, box-shadow 250ms;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stat-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange-500);
}
.stat-overline {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple-700);
  margin-bottom: 8px;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--purple-900);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-desc { font-size: .9375rem; color: var(--gray-700); line-height: 1.55; }

/* ---------- Como trabalhamos ---------- */
.como-section {
  background: linear-gradient(180deg, var(--purple-700) 0%, var(--purple-800) 100%);
  padding: 80px 0;
}

.como-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .como-grid { grid-template-columns: repeat(3, 1fr); } }

.como-card {
  padding: 40px 32px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
  transition: transform 250ms, background 250ms;
}
.como-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.13); }

.como-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-full);
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}
.como-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.como-desc { font-size: .9375rem; color: rgba(255,255,255,.8); line-height: 1.65; }

/* ---------- Depoimentos ---------- */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 40px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--gray-100);
}
@media (min-width: 768px) { .testimonial-card { flex: 0 0 calc(50% - 12px); } }

.quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: .7;
  color: var(--purple-700);
  opacity: .08;
  position: absolute;
  top: 24px; left: 24px;
  user-select: none;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-photo {
  width: 52px; height: 52px;
  border-radius: var(--radius-full);
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--purple-700);
  font-size: 1.125rem;
  overflow: hidden;
  flex-shrink: 0;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 1rem; color: var(--purple-900); }
.author-role { font-size: .875rem; color: var(--gray-500); }

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
  padding: 0;
}
.slider-dot.active { background: var(--purple-700); transform: scale(1.4); }
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--purple-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-700);
  transition: background 150ms;
}
.slider-arrow:hover { background: var(--purple-700); color: #fff; }

/* ---------- CTA Faixa Amarela ---------- */
.cta-faixa {
  background: var(--yellow-500);
  padding: 64px 24px;
  text-align: center;
}
.cta-faixa-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--purple-900);
  max-width: 90%;
  margin: 0 auto 32px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .cta-faixa-title { max-width: 60%; }
}

/* ---------- Painéis ---------- */
.paineis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) { .paineis-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.palestra-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  position: relative;
  background: var(--gray-100);
  margin-bottom: 20px;
}
.palestra-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.palestra-thumb-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: .875rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}

/* Foto do grupo / Roda de Conversa */
.inclusao-foto {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--gray-100);
}
.inclusao-foto img { width: 100%; height: auto; display: block; object-fit: cover; }
.inclusao-foto-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: .875rem;
  flex-direction: column;
  gap: 8px;
}

/* Split Roda de Conversa | Palestra Gratuita */
.inclusao-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  padding: 24px 0 8px;
}
.inclusao-split-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 16px;
}
.inclusao-divider {
  width: 1px;
  height: 100px;
  background: var(--gray-300);
  flex-shrink: 0;
}
.roda-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.roda-subtitle {
  font-size: .875rem;
  color: var(--orange-500);
  font-weight: 600;
  font-style: italic;
  margin-top: -8px;
}
.palestra-gratuita-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--purple-900);
  line-height: 1.1;
  text-transform: uppercase;
}

/* Botão Pill Outlined */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--orange-500);
  background: transparent;
  color: var(--purple-900);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 150ms;
  white-space: nowrap;
}
.btn-pill:hover {
  background: var(--orange-100);
  border-color: var(--orange-600);
  color: var(--purple-900);
}
.btn-pill:active { transform: translateY(1px); }

.btn-pill-sm {
  min-height: 40px;
  padding: 0 20px;
  font-size: .875rem;
}

/* Grid Sobre + Agenda lado a lado */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .sobre-grid { grid-template-columns: 3fr 2fr; }
}

/* ---------- Redes Sociais ---------- */
.social-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gray-700);
  transition: color 200ms, transform 200ms;
  font-size: .875rem;
  font-weight: 500;
}
.social-link:hover { transform: translateY(-4px); }
.social-link.instagram:hover { color: #C13584; }
.social-link.youtube:hover   { color: #FF0000; }
.social-link.facebook:hover  { color: #1877F2; }

.social-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  transition: background 200ms;
}
.social-link.instagram .social-icon { background: #fce4ec; color: #C13584; }
.social-link.youtube   .social-icon { background: #ffebee; color: #FF0000; }
.social-link.facebook  .social-icon { background: #e3f2fd; color: #1877F2; }

/* ---------- Ícones de navegação — seção Sobre ---------- */
.sobre-nav-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.sobre-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--purple-800);
  font-size: .8125rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  transition: transform 150ms, color 150ms;
}
.sobre-nav-item:hover { transform: translateY(-3px); color: var(--purple-700); }
.sobre-nav-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--purple-100);
  color: var(--purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, box-shadow 150ms;
}
.sobre-nav-item:hover .sobre-nav-icon {
  background: var(--purple-700);
  color: #fff;
  box-shadow: 0 6px 20px rgba(75,28,92,.25);
}
.sobre-nav-icon--destaque {
  background: #FFE9CC;
  color: #F39200;
}
.sobre-nav-item:hover .sobre-nav-icon--destaque {
  background: #F39200;
  color: #fff;
  box-shadow: 0 6px 20px rgba(243,146,0,.3);
}
@media (max-width: 480px) {
  .sobre-nav-icons { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---------- Jornada Digital 50+ — strip da home ---------- */
.jornada-home-strip {
  background: #FFF8EE;
  padding: 48px 0;
  border-top: 1px solid rgba(42,15,54,.08);
  border-bottom: 1px solid rgba(42,15,54,.08);
}
.jornada-home-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(42,15,54,.10);
  overflow: hidden;
}

/* Título topo centralizado */
.jornada-home-top {
  text-align: center;
  padding: 28px 32px 0;
}
.jornada-home-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #2A0F36;
  line-height: 1.1;
  margin: 0;
}

/* Cabeçalho */
.jornada-home-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px 20px;
  border-bottom: 1px solid rgba(42,15,54,.07);
}
.jornada-home-head-left { flex: 1; min-width: 0; }
.jornada-home-badge {
  display: inline-block;
  background: #F39200;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.jornada-home-tema {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #2A0F36;
  line-height: 1.2;
  margin: 0 0 8px;
}
.jornada-home-desc {
  font-size: .9rem;
  color: #5C2270;
  line-height: 1.6;
  margin: 0;
}
.jornada-home-img {
  width: clamp(100px, 12vw, 160px);
  aspect-ratio: 4/3;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(42,15,54,.15);
}

/* Grade das 4 palestras */
.jornada-palestras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(42,15,54,.07);
}
.jornada-palestra-item {
  padding: 18px 24px;
  border-right: 1px solid rgba(42,15,54,.07);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.jornada-palestra-item:last-child { border-right: none; }
.jornada-palestra-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #F39200;
}
.jornada-palestra-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: #2A0F36;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}
.jornada-palestra-data {
  font-size: .75rem;
  color: #6B6470;
  font-weight: 500;
}

/* Rodapé: inclusos */
.jornada-home-foot {
  padding: 16px 32px;
  background: #FAFAFA;
  border-top: 1px solid rgba(42,15,54,.07);
}
.jornada-inclusos-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.jornada-inclusos-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: #3D1850;
  font-weight: 500;
}

/* CTA centralizado */
.jornada-home-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 32px;
  flex-wrap: wrap;
}
.jornada-home-valor {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2A0F36;
  white-space: nowrap;
}
.jornada-home-btn { white-space: nowrap; }

@media (max-width: 900px) {
  .jornada-palestras-grid { grid-template-columns: repeat(2, 1fr); }
  .jornada-palestra-item:nth-child(2) { border-right: none; }
  .jornada-palestra-item:nth-child(3) { border-top: 1px solid rgba(42,15,54,.07); }
  .jornada-palestra-item:nth-child(4) { border-top: 1px solid rgba(42,15,54,.07); border-right: none; }
}
@media (max-width: 600px) {
  .jornada-home-top { padding: 20px 20px 0; }
  .jornada-home-head { padding: 16px 20px; }
  .jornada-palestras-grid { grid-template-columns: 1fr 1fr; }
  .jornada-palestra-item { padding: 14px 16px; }
  .jornada-home-foot { padding: 16px 20px; }
  .jornada-home-cta-row { flex-direction: column; padding: 20px; }
  .jornada-home-btn { width: 100%; justify-content: center; }
  .jornada-home-img { width: 90px; }
}

/* ---------- Footer / Contato ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--purple-700) 0%, var(--purple-800) 100%);
  padding: 80px 0 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: .9375rem; font-weight: 600; color: rgba(255,255,255,.9); }
.form-input {
  height: 52px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 150ms, background 150ms;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,.45); }
.form-input:focus { border-color: var(--yellow-400); background: rgba(255,255,255,.15); }

.form-textarea {
  padding: 14px 16px;
  min-height: 120px;
  resize: vertical;
  height: auto;
}

.form-info { font-size: .875rem; color: rgba(255,255,255,.55); margin-top: 4px; }
.form-error { font-size: .875rem; color: #fca5a5; margin-top: 4px; display: none; }
.form-error.show { display: block; }

.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-title { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.contact-item svg { flex-shrink: 0; color: var(--yellow-400); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 64px;
  padding: 24px;
  text-align: center;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
}

/* ---------- Animações de scroll ---------- */
.reveal {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* atrasos em cascata */
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Utilitários específicos ---------- */
.text-overline {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Reduz motion para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════════
   ANIMAÇÕES INTERATIVAS
   ════════════════════════════════════════════════════════════ */

/* ── Ripple: onda ao clicar no botão ── */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .30);
  transform: scale(0);
  pointer-events: none;
  animation: ripple-anim 560ms linear;
}
@keyframes ripple-anim {
  to { transform: scale(4.5); opacity: 0; }
}

/* ── Pulse: glow pulsante nos CTAs principais ── */
.btn-pulse {
  animation: btn-pulse-orange 2.8s ease-in-out infinite;
}
@keyframes btn-pulse-orange {
  0%, 100% { box-shadow: var(--shadow-md); }
  50%       { box-shadow: 0 0 0 8px rgba(243,146,0,.15), var(--shadow-glow-orange); }
}
.btn-pulse.btn-primary-purple {
  animation-name: btn-pulse-purple;
}
@keyframes btn-pulse-purple {
  0%, 100% { box-shadow: var(--shadow-md); }
  50%       { box-shadow: 0 0 0 8px rgba(75,28,92,.15), var(--shadow-glow-purple); }
}
.btn-pulse.btn-outline-white {
  animation-name: btn-pulse-white;
}
@keyframes btn-pulse-white {
  0%, 100% { box-shadow: none; }
  50%       { box-shadow: 0 0 0 6px rgba(255,255,255,.12); }
}

/* ── Shake: feedback visual de erro em formulário ── */
@keyframes shake-anim {
  0%, 100% { transform: translateX(0); }
  20%, 60%  { transform: translateX(-5px); }
  40%, 80%  { transform: translateX(5px); }
}
.shake { animation: shake-anim 380ms ease; }

/* ── reveal-scale: entra com zoom sutil (complementa reveal-up) ── */
.reveal-scale { transform: scale(0.93); }
.reveal-scale.visible { transform: scale(1); }

/* ── Stagger automático via JS ── */
.js-stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.js-stagger-child.visible {
  opacity: 1;
  transform: none;
}

/* ── Checkmark SVG animado ── */
.check-svg-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  animation: draw-circle .7s ease forwards;
}
.check-svg-path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: draw-path .45s .55s ease forwards;
}
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-path   { to { stroke-dashoffset: 0; } }

/* Ícone de sucesso com efeito pop */
.check-icon-wrap {
  opacity: 0;
  animation: check-pop .5s .1s cubic-bezier(.3,1.5,.4,1) forwards;
}
@keyframes check-pop {
  from { opacity: 0; transform: scale(.4) rotate(-15deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ── Painel de sucesso (inscrição / contato) ── */
.success-panel {
  animation: success-enter .65s cubic-bezier(.22,.9,.36,1) both;
}
@keyframes success-enter {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

/* ── WhatsApp FAB: float + pulse combinados ── */
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4);  transform: translateY(0px); }
  50%       { box-shadow: 0 6px 28px rgba(37,211,102,.65); transform: translateY(-4px); }
}
