/* ============================================================
   Dra. Kátia Bueno — Custom Stylesheet (Bootstrap 5.3)
   ============================================================ */

/* ---------- CSS Variables / Design Tokens ---------- */

:root {
  --color-bg: #f7f4ef;
  --color-white: #ffffff;
  --color-dark: #111727;
  --color-primary: #b02855;
  --color-muted: #474956;
  --color-accent-blue: #8ac3ec;
  --color-accent-yellow: #ffd080;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --radius-card: 16px;
  --radius-btn: 100px;
  --transition: 0.25s ease;
}

/* ---------- Base ---------- */

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-dark);
}

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

a:hover {
  color: #8e1f44;
}

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

/* ---------- Navbar ---------- */

.navbar {
  background: rgba(255,255,255,0.77);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  height: 32px;
  width: auto;
}

.footer-logo-img {
  width: 280px;
  margin-bottom: 0.5rem;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: 0.4rem 0.75rem;
  transition: color var(--transition);
}

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

.btn-agendar {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--color-primary) !important;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-btn);
  padding: 0.45rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-agendar:hover {
  background-color: var(--color-primary);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ---------- Buttons ---------- */

/* ---------- Section Spacing ---------- */

section {
  padding: 80px 0;
}

.label-tag {
  display: inline-block;
  background-color: rgba(176, 40, 85, 0.1);
  color: var(--color-primary);
  border-radius: 100px;
  padding: 0.25rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */

.hero-section {
  background-color: #fbeee6;
  background-image: url('../../assets/img/waves-hero.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}

/* Blobs orgânicos de fundo */

.hero-container {
  position: relative;
  z-index: 1;
}

/* Badge pill */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(247,235,232,0.54);
  border: 1px solid rgba(228,207,201,0.75);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Título */

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.hero-highlight {
  color: var(--color-primary);
}

.hero-desc {
  font-size: 0.97rem;
  color: var(--color-muted);
  max-width: 420px;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Botão hero */

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 0.8rem 1.9rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 2rem;
}

.btn-hero:hover {
  background: #8e1f44;
  color: #fff;
  transform: translateY(-2px);
}

/* Google Rating */

.hero-google-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-google-icon {
  flex-shrink: 0;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.88rem;
  color: #f9a825;
  margin-bottom: 0.1rem;
}

.hero-stars span {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-left: 4px;
}

.hero-google-text {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.hero-google-text strong {
  color: var(--color-primary);
}

/* Lado direito — foto circular */

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-photo-circle {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.hero-photo-circle img {
  width: 100%;
  height: auto;
  display: block;
}

/* Estetoscópio 3D flutuante */

.hero-stethoscope {
  position: absolute;
  width: 130px;
  bottom: 10%;
  right: 2%;
  z-index: 3;
  pointer-events: none;
  animation: stethoscope-float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}

@keyframes stethoscope-float {
  0%, 100% {
    transform: translateY(0px) rotate(-4deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

/* Estrelas decorativas */

.hero-sparkle {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.15);
  pointer-events: none;
}

.hero-sparkle-1 {
  top: 10%;
  left: 5%;
  font-size: 1rem;
}

.hero-sparkle-2 {
  top: 40%;
  left: 2%;
  font-size: 1.5rem;
}

.hero-sparkle-3 {
  bottom: 18%;
  left: 8%;
  font-size: 0.85rem;
}

/* ---------- About Section ---------- */

.about-photo-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-blob-green {
  position: absolute;
  width: 300px;
  height: 300px;
  /*background: #7ecfc4;*/
  /*border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(30px, 20px);
  z-index: 0;
  opacity: 0.65;
}

.about-photo-free {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

.about-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

/* ---------- Formation Section — Ticker ---------- */

.formation-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* Ticker wrapper: mascara o overflow */

.ticker-wrap {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  min-width: 260px;
  max-width: 333px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ticker-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(176,40,85,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.ticker-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}

.ticker-card p {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.4;
}

/* ---------- Formation Section (old, kept for reference) ---------- */

/* ---------- Consultas Section ---------- */

.consultas-section {
  background-image: url('../../assets/img/consultas-bg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.consultas-section .container {
  position: relative;
  z-index: 1;
}

.consultas-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
}

.consultas-quote {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Wrapper do carousel */

.consultas-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Track scrollável */

.consultas-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 16px;
  flex: 1;
}

/* Cards individuais */

.consulta-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.consulta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 50px rgb(198,192,180);
}

/* Variantes de cor de fundo */

.consulta-card--white {
  background: #d2a2bc4d;
}

.consulta-card--green {
  background: #73b57d33;
}

.consulta-card--blue {
  background: #89c2ec4d;
}

.consulta-card--yellow {
  background: #ffd0804d;
}

/* Imagem do card com badge sobreposto */

.consulta-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 14px;
  margin: 10px;
  width: calc(100% - 20px);
}

.consulta-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consulta-time-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Corpo do card */

.consulta-card-body {
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.consulta-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.consulta-card-body p {
  font-size: 0.83rem;
  color: var(--color-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

/* Botão outline do card */

.btn-consulta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  align-self: flex-start;
}

.btn-consulta:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: white;
}

/* Setas de navegação */

.consultas-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.consultas-nav-btn--prev {
  left: -20px;
}

.consultas-nav-btn--next {
  right: -20px;
}

.consultas-nav-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Dots — visíveis só em mobile/tablet */

@media (max-width: 991px) {
  .consultas-carousel-wrap {
    position: relative;
  }
}

@media (max-width: 991px) {
  .consultas-nav-btn {
    display: flex;
  }
}

/* ---------- Consultório Section ---------- */

.consultorio-section {
  padding: 80px 0;
  background: #fbeee6;
  background: linear-gradient(-180deg,rgb(247,244,239) 0%, rgb(251,238,230) 50%, rgb(247,244,239) 100%);
}

.consultorio-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.consultorio-text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

/* Botão "Ver no google maps" — outline branco/neutro */

.btn-consultorio-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: var(--color-dark);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-btn);
  padding: 0.8rem 1.9rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}

.btn-consultorio-maps:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Wrapper do slider */

.consultorio-carousel-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* Track (mostra 2 slides lado a lado) */

.consultorio-slider {
  display: flex;
  transition: transform 0.45s ease;
  width: 100%;
}

.consultorio-slide {
  flex: 0 0 100%;
  height: 420px;
}

.consultorio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Setas */

.consultorio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: background var(--transition);
}

.consultorio-arrow:hover {
  background: rgba(255,255,255,0.95);
}

.consultorio-arrow--prev {
  left: 10px;
}

.consultorio-arrow--next {
  right: 10px;
}

/* Dots */

.consultorio-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.consultorio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.consultorio-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ---------- Por que escolher ---------- */

/* Foto com blob orgânico */

.porque-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.porque-blob {
  position: absolute;
  width: 420px;
  height: 460px;
  border-radius: 50% 42% 55% 45% / 48% 55% 45% 52%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background-color: transparent;
}

.porque-photo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Cérebro 3D flutuante */

.porque-brain-img {
  position: absolute;
  top: 8%;
  right: 5%;
  z-index: 2;
  width: 120px;
  height: auto;
  animation: brain-float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  pointer-events: none;
}

@keyframes brain-float {
  0%, 100% {
    transform: translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

/* Título e subtítulo */

.porque-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.porque-subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 480px;
}

/* Cards */

.porque-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.porque-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.porque-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.porque-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.porque-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Depoimentos ---------- */

.depoimentos-section {
  background-image: url('../../assets/img/consultas-bg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

/* Título centralizado */

.dep-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* Wrapper com fade nas bordas */

.dep-ticker-wrap {
  overflow: hidden;
  width: 100%;
  padding: 12px 0 20px;
  -webkit-mask-image: linear-gradient( to right, transparent 0%, black 12%, black 88%, transparent 100% );
  mask-image: linear-gradient( to right, transparent 0%, black 12%, black 88%, transparent 100% );
}

/* Track animado */

.dep-ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: ticker-scroll 50s linear infinite;
}

.dep-ticker-track:hover {
  animation-play-state: paused;
}

/* Cards dos depoimentos — sem fundo, só texto */

.dep-card {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
  background-color: white;
  border-radius: 1.2rem;
  padding: 2rem;
}

.dep-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

.dep-card strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
}

.dep-card span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ---------- Ebook Section ---------- */

.ebook-outer {
  padding: 60px 0 80px;
  background: #fbeee6;
  background: linear-gradient(-180deg,rgb(247,244,239) 0%, rgb(251,238,230) 50%, rgb(251,238,230) 100%);
}

.ebook-card {
  background: linear-gradient(135deg, #e8c8d8 0%, #d4a8c0 100%);
  border-radius: 28px;
  padding: 60px 50px;
}

.ebook-text {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.ebook-cover {
  max-height: 400px;
  width: auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

/* ---------- Blog Section ---------- */

.blog-section {
  background-color: #fbeee6;
  padding: 60px 0 80px;
}

.blog-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
}

/* Link wrapper sem decoração */

/* ---------- CTA Banner ---------- */

.cta-outer {
  background-color: #fbeee6;
  padding: 60px 0 80px;
}

.cta-card {
  background: conic-gradient(at 49.1% 0%, #f0c375 0deg, #fff4e5 360deg);
  border-radius: 32px;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 16px 94px #ebd4b0;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

/* ---------- Footer ---------- */

.footer {
  background-color: #fff;
  color: var(--color-muted);
  padding: 64px 0 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 0.65rem;
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer-nav-list a:hover {
  color: var(--color-primary);
}

.footer-contact-item {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-contact-item strong {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 3rem;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

/* ---------- FAB: foto da Dra. ---------- */

.dra-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: visible;
  z-index: 999;
  display: block;
  transition: transform var(--transition);
}

.dra-fab:hover {
  transform: scale(1.08);
}

.dra-fab img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: block;
}

.dra-fab-badge {
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.72rem;
  border: 2px solid #fff;
}

/* ---------- Blog Article Page ---------- */

.article-hero {
  background-color: var(--color-white);
  padding: 60px 0 0;
}

.article-hero h1 {
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-content {
  background-color: var(--color-white);
  padding: 60px 0 80px;
}

.article-content .content-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2a2a3a;
}

.article-content .content-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.article-content .content-body h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.article-content .content-body p {
  margin-bottom: 1.25rem;
}

.article-content .content-body ul, .article-content .content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-content .content-body li {
  margin-bottom: 0.5rem;
}

.article-content .content-body strong {
  color: var(--color-dark);
  font-weight: 700;
}

.article-content .content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}

.article-content .content-body table th {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
}

.article-content .content-body table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.article-content .content-body table tr:nth-child(even) td {
  background-color: var(--color-bg);
}

/* ---------- Page Hero (consultório, blog listing) ---------- */

/* ---------- Responsive Tweaks ---------- */

@media (max-width: 991.98px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0;
  }
}

@media (max-width: 991.98px) {
  .hero-image-wrap {
    margin-top: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .consulta-card {
    padding: 1.5rem;
  }
}

