/* ===================================================================
   Customizações Summit Ortopedi — carregado depois do CSS original.
   =================================================================== */

/* ============ FONTES (Fraunces nos títulos, Inter no corpo) ============ */
:root {
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}
/* Fraunces é mais larga que a Cormorant — ajusto tamanhos dos títulos gigantes */
.hero-v1.desktop .hero-title { font-size: 122px; letter-spacing: -0.022em; }
.hero-v1.mobile .hero-title { font-size: 56px; letter-spacing: -0.02em; }
.sect-conceito-v2.desktop .cc-title { font-size: 78px; letter-spacing: -0.02em; }
.sect-conceito-v2.mobile .cc-title { font-size: 40px; }

/* ============ CONCEITO · eclipse interativo + tema ============ */
.sect-conceito-v2 {
  position: relative;
  overflow: hidden;
  padding: 150px 80px 160px;
  transition: background 140ms linear;
}
.sect-conceito-v2.mobile { padding: 84px 24px 96px; }

.sect-conceito-v2 .cc-inner {
  max-width: 860px; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
}

.sect-conceito-v2 .cc-eyebrow {
  display: inline-flex; align-items: center; gap: 16px; margin-bottom: 30px;
}
.sect-conceito-v2 .cc-eyebrow .eyebrow { font-size: 14px; letter-spacing: 0.45em; }
.sect-conceito-v2.mobile .cc-eyebrow .eyebrow { font-size: 11px; letter-spacing: 0.4em; }

/* título centralizado, entrelinha menor */
.sect-conceito-v2 .cc-title {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  line-height: 0.82; letter-spacing: -0.028em;
  margin: 0 0 18px; text-wrap: balance;
}
.sect-conceito-v2 .cc-title span { display: block; }
.sect-conceito-v2.desktop .cc-title { font-size: 88px; }
.sect-conceito-v2.mobile .cc-title { font-size: 44px; }
.sect-conceito-v2 .cc-title .l1 { color: var(--cc-ink); opacity: 0.46; }
.sect-conceito-v2 .cc-title .l2 { color: var(--cc-ink); opacity: 0.72; }
.sect-conceito-v2 .cc-title .l3 { color: var(--coral); font-weight: 600; }

/* palco do eclipse */
.sect-conceito-v2 .cc-stage {
  width: 100%; max-width: 720px; margin: 6px auto 0;
  user-select: none; touch-action: none;
}
.sect-conceito-v2.mobile .cc-stage { max-width: 420px; }
.sect-conceito-v2 .cc-ecl-svg { width: 100%; height: auto; display: block; overflow: visible; }

/* trilho + bolinha (knob) */
.sect-conceito-v2 .cc-scrub {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin: 4px auto 0; max-width: 460px;
}
.sect-conceito-v2 .cc-track {
  position: relative; width: 100%; height: 3px; border-radius: 3px;
  background: color-mix(in srgb, var(--cc-ink) 22%, transparent);
  cursor: pointer; touch-action: none;
}
.sect-conceito-v2 .cc-track::before {
  content: ''; position: absolute; inset: -16px 0; /* área de toque */
}
.sect-conceito-v2 .cc-fill {
  position: absolute; left: 0; top: 0; height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--ambar), var(--coral));
}
.sect-conceito-v2 .cc-knob {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 26px; height: 26px; padding: 0; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #FFF4DC 0%, #F4C98A 46%, #E07B43 100%);
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: 0 4px 16px rgba(224,123,67,0.55), 0 0 0 8px rgba(212,87,60,0.10);
  cursor: grab; animation: ccKnobPulse 2.4s ease-in-out infinite;
}
.sect-conceito-v2 .cc-knob:active { cursor: grabbing; animation: none; }
@keyframes ccKnobPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(224,123,67,0.5), 0 0 0 6px rgba(212,87,60,0.10); }
  50%      { box-shadow: 0 4px 18px rgba(224,123,67,0.6), 0 0 0 13px rgba(212,87,60,0.04); }
}
.sect-conceito-v2 .cc-phase {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--coral); letter-spacing: 0.01em;
}

/* corpo do texto, abaixo do eclipse */
.sect-conceito-v2 .cc-copy { max-width: 620px; margin: 46px auto 0; }
.sect-conceito-v2.mobile .cc-copy { margin-top: 32px; }
.sect-conceito-v2 .cc-body {
  font-family: var(--sans); font-weight: 300;
  font-size: 20px; line-height: 1.8; letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--cc-ink) 78%, transparent);
  text-wrap: pretty; margin: 0 0 22px;
}
.sect-conceito-v2.mobile .cc-body { font-size: 15px; line-height: 1.72; }
.sect-conceito-v2 .cc-body:last-child { margin-bottom: 0; }
.sect-conceito-v2 .cc-body .hl { color: var(--coral); font-weight: 500; }

/* ============ Botão flutuante WhatsApp como eclipse ============ */
.wa-fab.eclipse {
  position: fixed; z-index: 120;
  background: radial-gradient(circle at 50% 38%, #1c1410 0%, #0E0A08 78%);
  border: 1px solid rgba(244,150,90,0.30);
  box-shadow: 0 12px 34px rgba(0,0,0,0.5), 0 0 0 0 rgba(212,87,60,0.4);
  overflow: visible;
  animation: waFloat 4.5s ease-in-out infinite, waHalo 3.2s ease-in-out infinite;
}
.wa-fab.eclipse.desktop { width: 64px; height: 64px; right: 34px; bottom: 34px; }
.wa-fab.eclipse.mobile  { width: 56px; height: 56px; right: 18px; bottom: 18px; }
.wa-fab.eclipse:hover { transform: translateY(-4px) scale(1.06); background: radial-gradient(circle at 50% 38%, #221813 0%, #0E0A08 78%); }
.wa-fab.eclipse .wa-ecl-wrap { width: 72%; height: 72%; display: block; }
.wa-fab.eclipse .wa-ecl { width: 100%; height: 100%; display: block; }
/* badge verdinho do whatsapp (dica de que é whats) */
.wa-fab.eclipse .wa-ecl-badge {
  position: absolute; right: -3px; bottom: -3px;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; border: 2px solid #0E0A08;
  box-shadow: 0 3px 10px rgba(37,211,102,0.5);
}
.wa-fab.eclipse.mobile .wa-ecl-badge { width: 21px; height: 21px; }
.wa-fab.eclipse .wa-ecl-badge .wa-icon { fill: #06310f; }
/* tooltip */
.wa-fab.eclipse .wa-ecl-tip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(6px);
  white-space: nowrap; padding: 8px 14px; border-radius: 8px;
  background: #0E0A08; color: var(--sand); border: 1px solid rgba(244,150,90,0.25);
  font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}
.wa-fab.eclipse:hover .wa-ecl-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.wa-fab.eclipse.mobile .wa-ecl-tip { display: none; }
@keyframes waFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@keyframes waHalo {
  0%,100% { box-shadow: 0 12px 34px rgba(0,0,0,0.5), 0 0 0 0 rgba(212,87,60,0.35); }
  50%     { box-shadow: 0 12px 34px rgba(0,0,0,0.5), 0 0 0 12px rgba(212,87,60,0); }
}

/* ============ Logos RJ · plaqueta preta ============ */
.rj-chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: #0E0A08;
  border: 1px solid rgba(242,235,224,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 20px rgba(0,0,0,0.35);
}
/* a moldura coral do "Organização" vira só a plaqueta preta */
.sect-org .logo-cell .frame {
  background: none !important; border: none !important; padding: 0 !important;
}

/* ============ HERO · eclipse realista estático + texto à esquerda ============ */
.hero-v1.desktop, .hero-v1.mobile { width: 100% !important; height: auto !important; }
.hero-v1 { min-height: 100vh; display: flex; flex-direction: column; }
.hero-v1.mobile { min-height: 92vh; }

/* eclipse no canto superior direito, parado */
.hero-v1 .hero-eclipse {
  position: absolute; z-index: 2; pointer-events: none;
  top: -8%; right: -5%;
  width: 58%; max-width: 760px; aspect-ratio: 1 / 1;
}
.hero-v1.mobile .hero-eclipse { top: 7%; right: -16%; width: 88%; }
.hero-v1 .real-eclipse { width: 100%; height: 100%; display: block; }

/* conteúdo alinhado à esquerda, embaixo */
.hero-v1 .hero-content {
  position: relative; z-index: 6; margin-top: auto;
  padding: 0 80px 90px; max-width: 1000px; text-align: left;
}
.hero-v1.mobile .hero-content { padding: 0 28px 60px; }
.hero-v1 .hero-eyebrow { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.hero-v1 .hero-content .hero-title { text-align: left; }
.hero-v1 .hero-meta {
  margin-top: 32px; text-align: left;
  font-family: var(--sans); font-weight: 500; font-size: 13px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(242,235,224,0.72); line-height: 1.95;
}
.hero-v1.mobile .hero-meta { font-size: 11px; letter-spacing: 0.22em; }
.hero-v1 .hero-meta .coral { color: var(--coral); }

/* ============ LEGIBILIDADE GERAL ============ */
.landing { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* corpo de texto: mais peso e contraste em toda a página */
.sect-conceito-v2 .cc-body,
.sect-local .body, .sect-diogo .body, .sect-cta .body,
.sect-org .text .body, .speaker-card .talk,
.sect-footer .col a, .sect-footer .col p, .sect-programa .slot .label {
  font-weight: 400;
}
.sect-local .body, .sect-diogo .body, .sect-cta .body { color: rgba(242,235,224,0.84); }
.sect-org .text .body { color: rgba(242,235,224,0.82); }
.speaker-card .talk { color: rgba(242,235,224,0.82); }

/* títulos serifados: tons apagados ficam mais visíveis */
.hero-v1 .hero-title .soft { color: rgba(242,235,224,0.52); }
.hero-v1 .hero-title .medium { color: rgba(242,235,224,0.8); }
.sect-conceito-v2 .cc-title .l1 { opacity: 0.62; }
.sect-conceito-v2 .cc-title .l2 { opacity: 0.86; }
