/* ==========================================================================
   DESIGN SYSTEM & VARIÁVEIS VISUAIS - PSICÓLOGO ELIAS MENDES
   Estética Acolhedora, Minimalista, Sofisticada & Healing
   ========================================================================== */

:root {
  /* Paleta Orgânica de Saúde Mental */
  --primary: #245244;            /* Verde Floresta/Sálvia Profundo */
  --primary-hover: #1a3e33;
  --primary-light: #3d7060;
  --primary-subtle: #ebf3f0;     /* Fundo suave sálvia */
  
  --accent-gold: #c29b68;        /* Ouro envelhecido elegante */
  --accent-gold-soft: #f9f5ed;
  
  --whatsapp: #25d366;           /* Verde oficial WhatsApp */
  --whatsapp-hover: #20ba59;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  /* Superfícies e Fundos */
  --bg-main: #fbf9f5;            /* Off-white linho/areia quente */
  --bg-card: #ffffff;            /* Branco puro de alto contraste */
  --bg-muted: #f3efe9;           /* Bege acinzentado neutro */
  --bg-glass: rgba(255, 255, 255, 0.88);

  /* Tipografia & Contrastes */
  --text-main: #192420;          /* Cinza ardósia quase preto (alta legibilidade) */
  --text-muted: #53625d;         /* Cinza médio suave */
  --text-light: #7a8c86;         /* Texto secundário */
  --text-on-dark: #ffffff;

  /* Bordas e Sombras */
  --border-color: rgba(36, 82, 68, 0.1);
  --border-light: rgba(36, 82, 68, 0.05);
  --shadow-sm: 0 2px 8px rgba(25, 36, 32, 0.04);
  --shadow-md: 0 8px 24px rgba(25, 36, 32, 0.06);
  --shadow-lg: 0 16px 40px rgba(25, 36, 32, 0.08);
  --shadow-card: 0 4px 20px rgba(36, 82, 68, 0.06);

  /* Dimensões & Raio */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --container-max: 1160px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Títulos com Plus Jakarta Sans */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

p, span, a, li {
  overflow-wrap: break-word;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

/* ==========================================================================
   BARRA SUPERIOR ÉTICA (TOP BAR)
   ========================================================================== */
.top-bar {
  background-color: var(--primary);
  color: #e2ede8;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #51e396;
  box-shadow: 0 0 6px #51e396;
}

/* ==========================================================================
   CABEÇALHO & MENU NAVEGAÇÃO
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.brand-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Botão Hambúrguer Mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  display: block;
}

/* ==========================================================================
   BOTÕES DE AÇÃO (CTA)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: 0.95rem 2.25rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
  box-sizing: border-box;
}

.icon-whatsapp {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(36, 82, 68, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 82, 68, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-subtle);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 1.15rem 2.4rem;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
}

.pulse-effect {
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(36, 82, 68, 0.25);
  }
  50% {
    box-shadow: 0 6px 24px rgba(36, 82, 68, 0.45);
  }
}

/* ==========================================================================
   DOBRA PRINCIPAL (HERO SECTION)
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 5rem;
  background: radial-gradient(circle at 85% 20%, rgba(61, 112, 96, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(194, 155, 104, 0.06) 0%, transparent 45%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--primary-subtle);
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(36, 82, 68, 0.12);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 1.4rem;
  color: var(--text-main);
  line-height: 1.18;
}

.highlight-text {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(61, 112, 96, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.2rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.badge-check-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.hero-micro-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.8rem;
}

/* Card da Foto Hero */
.profile-card-container {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.profile-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
  background-color: var(--bg-muted);
}

.profile-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.profile-photo:hover {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

.badge-text small {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.profile-academic-pill {
  margin-top: 1rem;
  text-align: center;
  background-color: var(--bg-card);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   SEÇÕES GERAIS E CABEÇALHO DE SEÇÃO
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-muted {
  background-color: var(--bg-muted);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.8rem;
}

.section-subtitle {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  background-color: var(--primary-subtle);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin-bottom: 1.1rem;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SEÇÃO DE IDENTIFICAÇÃO / CARDS DE SINTOMAS
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(36, 82, 68, 0.25);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  background-color: var(--primary-subtle);
  color: var(--primary);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Bloco Empático de Frase */
.empathy-quote-box {
  background-color: var(--primary);
  color: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.quote-author {
  font-size: 0.9rem;
  color: #c0ded4;
  font-weight: 500;
}

.quote-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.quote-action .btn-primary,
.btn-quote {
  background-color: #ffffff;
  color: var(--primary);
  padding: 1.15rem 2.6rem;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.quote-action .btn-primary:hover,
.btn-quote:hover {
  background-color: var(--primary-subtle) !important;
  color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3) !important;
}

/* ==========================================================================
   SEÇÃO COMO FUNCIONA A TCC
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.process-card {
  background-color: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(36, 82, 68, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.process-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.session-features-box {
  background-color: var(--bg-sand-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.feature-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO SOBRE MIM
   ========================================================================== */
.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 4rem;
}

.about-photo-wrapper {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-stamp {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stamp-title {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.stamp-sub {
  font-size: 0.75rem;
  opacity: 0.85;
}

.about-intro {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
}

.about-paragraph {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.about-credentials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background-color: var(--bg-card);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.credential-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.credential-item strong {
  font-size: 0.95rem;
  color: var(--text-main);
  display: block;
}

.credential-item p {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.about-cta {
  margin-top: 2.4rem;
}

.btn-about {
  padding: 1.15rem 2.6rem;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 22px rgba(36, 82, 68, 0.28);
  box-sizing: border-box;
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(36, 82, 68, 0.38);
}

/* ==========================================================================
   SEÇÃO PASSO A PASSO
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.step-card {
  background-color: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.step-badge {
  display: inline-block;
  background-color: var(--primary-subtle);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.steps-cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.steps-cta-center .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   SEÇÃO FAQ (PERGUNTAS FREQUENTES COM ACORDEÃO)
   ========================================================================== */
.faq-accordion-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(36, 82, 68, 0.35);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon-arrow {
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--primary);
  border-bottom: 2.5px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-icon-arrow {
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 1.8rem 1.5rem 1.8rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

.faq-answer p strong {
  color: var(--text-main);
}

/* ==========================================================================
   SEÇÃO FINAL CTA
   ========================================================================== */
.cta-final-section {
  padding: 4.5rem 0;
}

.cta-final-card {
  background: linear-gradient(135deg, var(--primary) 0%, #16382e 100%);
  color: #ffffff;
  padding: 4.5rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-final-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.cta-final-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.cta-final-text {
  font-size: 1.15rem;
  color: #d1e5dd;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-final-buttons {
  margin-bottom: 2rem;
}

.cta-final-buttons .btn-primary {
  background-color: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.cta-final-buttons .btn-primary:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.cta-direct-contact {
  font-size: 0.9rem;
  color: #a7ccc0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cta-direct-contact strong {
  color: #ffffff;
}

/* ==========================================================================
   ALERTA DE EMERGÊNCIA (CVV)
   ========================================================================== */
.crisis-alert-bar {
  background-color: #f7ebe6;
  border-top: 1px solid #ebd3c8;
  border-bottom: 1px solid #ebd3c8;
  padding: 1.1rem 0;
  color: #6a3623;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.crisis-text {
  text-align: center;
}

.crisis-text strong {
  color: #4a2113;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.site-footer {
  background-color: #121c18;
  color: #8c9c96;
  padding: 4.5rem 0 0;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-ethical-note {
  font-size: 0.8rem;
  color: #6b7a74;
}

.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: #51e396;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-info a {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-info a:hover {
  color: var(--whatsapp);
}

.footer-bottom {
  padding: 1.8rem 0;
  font-size: 0.8125rem;
  color: #5e6d68;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whatsapp-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.floating-whatsapp:hover .whatsapp-circle {
  transform: scale(1.08);
  background-color: var(--whatsapp-hover);
}

.pulse-green {
  animation: pulseGreenAnim 2.5s infinite;
}

@keyframes pulseGreenAnim {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background-color: #ffffff;
  color: var(--text-main);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 220px;
  font-size: 0.8125rem;
  line-height: 1.4;
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE-FIRST & TABLET ADAPTATIONS)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-col {
    order: -1;
  }

  .process-grid,
  .steps-grid,
  .session-features-box {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Todas as seções preenchem 100% da tela sem transbordar */
  .top-bar,
  .site-header,
  .section,
  .site-footer,
  .crisis-alert-bar,
  .hero-section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: clip;
  }

  /* Container com margem segura e sem overflow */
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    box-sizing: border-box;
  }

  .btn {
    white-space: normal !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.8rem;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .section-description {
    font-size: 0.98rem;
  }

  /* Barra Superior & Header */
  .hide-mobile {
    display: none !important;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .top-bar {
    padding: 0.5rem 0;
    font-size: 0.775rem;
  }

  .top-bar-content {
    justify-content: center;
    text-align: center;
    gap: 0.3rem;
  }

  .site-header {
    height: auto;
    min-height: 68px;
  }

  .header-container {
    height: auto;
    min-height: 68px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .brand-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .brand-name {
    font-size: 1.2rem;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .brand-role {
    font-size: 0.7rem;
    line-height: 1.2;
    margin-top: 3px;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .header-action {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
  }

  #btn-header-cta {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 10px rgba(36, 82, 68, 0.25) !important;
  }

  #btn-header-cta span {
    display: none !important;
  }

  #btn-header-cta svg {
    margin: 0 !important;
    width: 22px !important;
    height: 22px !important;
  }

  /* Dobra Principal (Hero) */
  .hero-section {
    padding: 3rem 0 3.5rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.24;
    margin-bottom: 1.1rem;
  }

  .hero-description {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }

  .hero-trust-badges {
    align-items: flex-start;
    text-align: left;
    gap: 0.65rem;
    margin-bottom: 1.8rem;
    width: 100%;
    max-width: 360px;
  }

  .trust-badge-item {
    font-size: 0.88rem;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
  }

  .profile-photo {
    height: 340px;
  }

  .experience-badge {
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    padding: 0.75rem 1rem;
  }

  /* Cards de Sintomas */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .feature-card {
    padding: 1.75rem 1.35rem;
  }

  .feature-title {
    font-size: 1.15rem;
  }

  .feature-text {
    font-size: 0.92rem;
  }

  /* Bloco Empático (Quote Box) - Centralização Absoluta */
  .empathy-quote-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 2.8rem 1.6rem !important;
    gap: 1.8rem !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .quote-content {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .quote-text {
    font-size: 1.125rem !important;
    font-style: italic !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin: 0 auto 0.9rem auto !important;
    color: #ffffff !important;
    display: block !important;
  }

  .quote-author {
    font-size: 0.875rem !important;
    color: #c0ded4 !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .quote-action {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .quote-action .btn-primary,
  .btn-quote {
    width: 100% !important;
    max-width: 290px !important;
    padding: 1rem 1.6rem !important;
    font-size: 0.98rem !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18) !important;
  }

  /* Como Funciona a TCC */
  .process-card {
    padding: 1.75rem 1.35rem;
  }

  .process-number {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
  }

  .process-title {
    font-size: 1.15rem;
  }

  .session-features-box {
    padding: 1.8rem 1.25rem;
    gap: 1.5rem;
  }

  /* Sobre Mim */
  .about-photo {
    height: 360px;
    border-radius: var(--radius-md);
  }

  .about-stamp {
    position: static;
    margin-top: 1rem;
    border-radius: var(--radius-md);
    padding: 0.85rem 1.2rem;
    box-sizing: border-box;
    display: block;
    width: 100%;
  }

  .about-intro {
    font-size: 1.05rem;
  }

  .about-paragraph {
    font-size: 0.95rem;
  }

  .credential-item {
    padding: 0.8rem 1rem;
  }

  .about-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 1.8rem auto 0 auto !important;
  }

  .btn-about {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.95rem 1.6rem !important;
    font-size: 0.98rem !important;
    box-sizing: border-box !important;
  }

  /* Passo a Passo */
  .step-card {
    padding: 1.75rem 1.35rem;
  }

  .steps-cta-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .steps-cta-center .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 0.95rem 1.4rem !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
    text-align: center !important;
    box-shadow: 0 4px 18px rgba(36, 82, 68, 0.28) !important;
  }

  /* FAQ (Perguntas Frequentes) */
  .faq-accordion-wrapper {
    gap: 0.85rem;
  }

  .faq-question {
    padding: 1.15rem 1.25rem;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.92rem;
  }

  /* CTA Final */
  .cta-final-card {
    padding: 2.75rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .cta-final-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .cta-final-text {
    font-size: 1.02rem;
    margin-bottom: 2rem;
  }

  .cta-final-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto 2rem auto !important;
  }

  .cta-final-buttons .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
  }

  .cta-direct-contact {
    font-size: 0.825rem;
  }

  /* Alerta de Crise */
  .crisis-alert-bar {
    padding: 1rem 0.5rem;
  }

  .crisis-text {
    font-size: 0.775rem;
  }

  /* Botão Flutuante de WhatsApp */
  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-circle {
    width: 54px;
    height: 54px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 380px) {
  /* Dispositivos ultracompactos (iPhone SE, etc.) */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    font-size: 0.92rem !important;
  }

  .steps-cta-center .btn,
  .btn-about,
  .btn-quote,
  .cta-final-buttons .btn-primary {
    max-width: 290px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}
