@charset "UTF-8";

/* ═══════════════════════════════════════════════════
   PALETA DE CORES & VARIÁVEIS — REABILITAÇÃO ORAL
   Azul Safira, Marinho Médico, Fundo Clean e Prata
   ═══════════════════════════════════════════════════ */
:root {
  --brand-navy: #0f172a;
  --brand-blue: #1e40af;
  --brand-primary: #2563eb;
  --brand-light: #eff6ff;
  --brand-subtle: #dbeafe;
  --brand-hover: #1d4ed8;
  --accent-cyan: #0284c7;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;

  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;
  --border-light: #e2e8f0;
  --border-focus: #bfdbfe;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════ RESET & BASE ════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ════ REVEAL ANIMATION ════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════ NAVBAR ════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--brand-navy);
}
.navbar__logo-svg {
  stroke: var(--brand-primary);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.navbar__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}
.navbar__links a:hover {
  color: var(--brand-primary);
}
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-primary);
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
  transition: var(--transition-fast);
}
.navbar__cta:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}
.navbar__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.navbar__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-navy);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* ════ BUTTONS ════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}
.btn--primary {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn--primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: var(--brand-light);
}

/* ════ HERO SECTION ════ */
.hero {
  padding-top: 130px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-subtle);
  color: var(--brand-blue);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  margin-bottom: 1.25rem;
}
.hero__title span {
  color: var(--brand-primary);
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-item svg {
  stroke: var(--brand-primary);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
}
.hero__image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}
.hero__image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.hero__float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero__float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}
.hero__float-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-navy);
}
.hero__float-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ════ SECTION HEADERS ════ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ════ O QUE É REABILITAÇÃO ORAL ════ */
.concept {
  padding: 80px 0;
  background: #ffffff;
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.concept-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.concept-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.concept-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.concept-box {
  background: var(--bg-page);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.concept-box strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}
.concept-box p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* ════ BENEFÍCIOS (5 PILARES) ════ */
.pillars {
  padding: 80px 0;
  background: var(--bg-page);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-focus);
}
.pillar-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brand-primary);
}
.pillar-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.6rem;
}
.pillar-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ════ JORNADA DO TRATAMENTO (TIMELINE) ════ */
.journey {
  padding: 80px 0;
  background: #ffffff;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.journey-step {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
}
.journey-step__num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-primary);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}
.journey-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}
.journey-step__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ════ COMPARATIVO (ISOLADO VS INTEGRADO) ════ */
.comparison {
  padding: 80px 0;
  background: var(--bg-page);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.comparison-card {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-light);
}
.comparison-card--highlight {
  border: 2px solid var(--brand-primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.comparison-card__tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.comparison-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}
.comparison-card p.comp-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.comparison-list {
  list-style: none;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}
.comparison-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════ SOBRE & LOCALIZAÇÃO ════ */
.about {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.about-info h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.about-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.about-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.about-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-main);
}
.about-detail:last-child {
  margin-bottom: 0;
}
.about-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* ════ CTA FINAL ════ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #93c5fd;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}
.cta-text {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.btn--cta-white {
  background: #ffffff;
  color: var(--brand-navy);
  font-weight: 700;
  padding: 1rem 2.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.btn--cta-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ════ FOOTER ════ */
.footer {
  background: #090d16;
  color: #94a3b8;
  padding: 3rem 0;
  font-size: 0.9rem;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a:hover {
  color: #ffffff;
}

/* ════ WHATSAPP FLOAT ════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-normal);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* ════ RESPONSIVE ════ */
@media (max-width: 1024px) {
  .hero-grid, .concept-grid, .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 2.5rem; }
  .hero__image-card img { height: 380px; }
}
@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__mobile-toggle { display: block; }
  .navbar__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
  }
  .hero__title { font-size: 2.1rem; }
  .section-title { font-size: 1.85rem; }
  .cta-title { font-size: 2rem; }
  .comparison-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .concept-highlights { grid-template-columns: 1fr; }
}
