/* ==========================================================================
   ESTILOS DEDICADOS - JOSÉ PAULO FERREIRA (NUTRICIONISTA EM ANÁPOLIS - GO)
   Identidade: Clínico Moderno e Humanizado, Fundo Arejado e Verde Saúde (#15803d)
   Contraste Rigoroso: WCAG AAA em todos os textos, cartões e botões
   Zero Vícios de IA: Sem sombras neon, sem emojis, sem gradientes artificiais
   ========================================================================== */

:root {
  --jp-primary: #15803d;
  --jp-primary-hover: #166534;
  --jp-primary-soft: #f0fdf4;
  --jp-primary-border: #bbf7d0;
  --jp-slate-dark: #0f172a;
  --jp-slate-subtle: #1e293b;
  --jp-text-main: #0f172a;
  --jp-text-muted: #334155;
  --jp-text-light: #64748b;
  --jp-bg: #f8fafc;
  --jp-surface: #ffffff;
  --jp-border: #cbd5e1;
  --jp-border-light: #e2e8f0;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1140px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--jp-bg);
  color: var(--jp-text-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.max-w-content {
  max-width: 780px;
}

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

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.topbar-jp {
  background-color: var(--jp-slate-dark);
  color: #f1f5f9;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-jp-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-info {
  font-weight: 500;
  color: #cbd5e1;
}

.topbar-contact a {
  color: #ffffff;
  font-weight: 700;
}

.topbar-contact a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header-jp {
  background-color: var(--jp-surface);
  border-bottom: 1px solid var(--jp-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-jp-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-link {
  display: block;
}

.jp-logo-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--jp-slate-dark);
  display: block;
  line-height: 1.1;
}

.jp-logo-sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--jp-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.jp-nav {
  display: flex;
  gap: 28px;
}

.jp-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--jp-text-main);
  transition: color 0.2s ease;
}

.jp-nav a:hover {
  color: var(--jp-primary);
  text-decoration: underline;
}

.btn-jp-primary {
  background-color: var(--jp-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid var(--jp-primary);
  transition: background-color 0.2s ease;
}

.btn-jp-primary:hover {
  background-color: var(--jp-primary-hover);
}

.btn-large {
  font-size: 15px;
  padding: 14px 26px;
}

.btn-jp-secondary {
  background-color: var(--jp-surface);
  color: var(--jp-slate-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid var(--jp-border);
  transition: background-color 0.2s ease;
}

.btn-jp-secondary:hover {
  background-color: #f1f5f9;
}

/* --------------------------------------------------------------------------
   Hero com Foto Real Humanizada
   -------------------------------------------------------------------------- */
.jp-hero {
  padding: 64px 0;
  background-color: var(--jp-surface);
  border-bottom: 1px solid var(--jp-border);
}

.jp-hero-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.jp-portrait-card {
  background-color: var(--jp-bg);
  border: 1px solid var(--jp-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.jp-photo-frame {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--jp-border-light);
  background-color: #ffffff;
  margin-bottom: 16px;
}

.jp-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.jp-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--jp-primary-soft);
  border: 1px solid var(--jp-primary-border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--jp-primary);
  margin-bottom: 8px;
}

.jp-portrait-details h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--jp-slate-dark);
  font-weight: 700;
}

.jp-portrait-details p {
  font-size: 13px;
  color: var(--jp-text-muted);
}

/* Coluna de Texto */
.jp-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jp-primary);
  margin-bottom: 12px;
}

.jp-headline {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--jp-slate-dark);
  margin-bottom: 18px;
}

.jp-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--jp-text-main);
  line-height: 1.6;
  margin-bottom: 12px;
}

.jp-paragraph {
  font-size: 15px;
  color: var(--jp-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.jp-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.jp-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--jp-border-light);
  padding-top: 24px;
}

.mini-stat-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--jp-slate-dark);
}

.mini-stat-item span {
  font-size: 13px;
  color: var(--jp-text-muted);
}

/* --------------------------------------------------------------------------
   Como Funciona a Consulta (Metodologia)
   -------------------------------------------------------------------------- */
.jp-method-section {
  padding: 68px 0;
  background-color: var(--jp-bg);
  border-bottom: 1px solid var(--jp-border);
}

.section-title-wrap {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-title-wrap.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--jp-slate-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--jp-text-muted);
}

.jp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jp-step-card {
  background-color: var(--jp-surface);
  border: 1px solid var(--jp-border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--jp-primary);
  margin-bottom: 12px;
}

.jp-step-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--jp-slate-dark);
  margin-bottom: 10px;
}

.jp-step-card p {
  font-size: 14px;
  color: var(--jp-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Hub de Canais Oficiais (Substituindo GreatPages)
   -------------------------------------------------------------------------- */
.jp-channels-section {
  padding: 68px 0;
  background-color: var(--jp-surface);
  border-bottom: 1px solid var(--jp-border);
}

.jp-channels-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background-color: var(--jp-bg);
  border: 1px solid var(--jp-border);
  border-radius: 8px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.channel-row:hover {
  border-color: var(--jp-slate-dark);
  background-color: #ffffff;
}

.channel-row.highlight-wa {
  background-color: var(--jp-primary-soft);
  border-color: var(--jp-primary);
}

.channel-row.highlight-wa:hover {
  border-color: var(--jp-primary-hover);
}

.channel-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon-circle.green-bg {
  background-color: var(--jp-primary);
  color: #ffffff;
}

.channel-icon-circle.slate-bg {
  background-color: var(--jp-slate-dark);
  color: #ffffff;
}

.channel-info-text {
  flex: 1;
}

.channel-info-text strong {
  display: block;
  font-size: 16px;
  color: var(--jp-slate-dark);
  margin-bottom: 2px;
}

.channel-info-text span {
  font-size: 13px;
  color: var(--jp-text-muted);
}

.channel-arrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--jp-primary);
}

/* --------------------------------------------------------------------------
   Localização do Consultório
   -------------------------------------------------------------------------- */
.jp-location-section {
  padding: 60px 0;
  background-color: var(--jp-bg);
  border-bottom: 1px solid var(--jp-border);
}

.location-card {
  background-color: var(--jp-surface);
  border: 1px solid var(--jp-border);
  border-radius: 10px;
  padding: 36px;
}

.location-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--jp-slate-dark);
  margin-bottom: 10px;
  font-weight: 800;
}

.location-address {
  font-size: 16px;
  color: var(--jp-text-main);
  margin-bottom: 10px;
  line-height: 1.5;
}

.location-desc {
  font-size: 14px;
  color: var(--jp-text-muted);
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-jp {
  background-color: var(--jp-slate-dark);
  color: #94a3b8;
  padding: 44px 0 24px;
  font-size: 13px;
}

.footer-jp-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.footer-role {
  color: #cbd5e1;
  font-size: 13px;
}

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

.footer-right a:hover {
  text-decoration: underline;
}

.footer-jp-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 12px;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   Mobile Sticky CTA
   -------------------------------------------------------------------------- */
.jp-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background-color: #ffffff;
  border-top: 1px solid var(--jp-border);
  z-index: 50;
}

.jp-sticky-btn {
  display: block;
  text-align: center;
  background-color: var(--jp-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 6px;
}

@media (max-width: 860px) {
  .jp-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .jp-portrait-card {
    max-width: 320px;
    margin: 0 auto;
  }
  .jp-steps-grid {
    grid-template-columns: 1fr;
  }
  .jp-nav {
    display: none;
  }
  .jp-mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  .footer-jp-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
