/* ============================================================
   UROGINECOLOGIA EM DIA — REDESIGN CSS
   Tema: Rosa profundo / Lora + DM Sans
   ============================================================ */

:root {
  --rosa-profundo:   #881337;
  --rosa-medio:      #be185d;
  --rosa-suave:      #f43f7e;
  --rosa-claro:      #fce7f3;
  --rosa-palido:     #fff1f8;
  --destaque:        #fb7185;
  --creme:           #fff8f9;
  --fundo-card:      #ffffff;
  --texto-principal: #1c0a14;
  --texto-suave:     #6b2d4a;
  --texto-claro:     #c084a0;
  --borda:           #f3b8d0;
  --borda-suave:     #fce7f3;
  --sombra-card:     0 1px 4px rgba(136,19,55,0.07), 0 4px 18px rgba(136,19,55,0.08);
  --sombra-hover:    0 8px 32px rgba(136,19,55,0.16);
  --radius:          14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--creme);
  color: var(--texto-principal);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Lora', serif; line-height: 1.28; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.anim-1 { animation: fadeUp 0.65s ease both; }
.anim-2 { animation: fadeUp 0.65s 0.12s ease both; }
.anim-3 { animation: fadeUp 0.65s 0.24s ease both; }
.anim-4 { animation: fadeUp 0.65s 0.36s ease both; }
.anim-5 { animation: fadeUp 0.65s 0.48s ease both; }

.fade-in {
  animation: fadeUp 0.5s ease both;
}

/* ============================================================
   AVISO BANNER
   ============================================================ */
.aviso-banner {
  background: var(--rosa-claro);
  border-bottom: 1px solid var(--borda);
  padding: 9px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--rosa-profundo);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.aviso-banner a { text-decoration: underline; font-weight: 600; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--borda-suave);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--rosa-profundo);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--rosa-profundo), var(--rosa-suave));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(136,19,55,0.25);
}

/* Desktop nav */
nav.desktop-nav { display: flex; align-items: center; gap: 2px; }

nav.desktop-nav a {
  padding: 6px 13px;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texto-suave);
  transition: all 0.2s;
}
nav.desktop-nav a:hover,
nav.desktop-nav a.ativo {
  background: var(--rosa-claro);
  color: var(--rosa-profundo);
}

/* Header search (desktop) */
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rosa-palido);
  border: 1px solid var(--borda-suave);
  border-radius: 10px;
  padding: 6px 12px;
  min-width: 200px;
}
.header-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--texto-principal);
  background: transparent;
  min-width: 0;
}
.header-search input::placeholder { color: var(--texto-claro); }
.header-search button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rosa-medio);
  font-size: 0.9rem;
  padding: 2px;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: linear-gradient(135deg, var(--rosa-profundo), var(--rosa-medio));
  border: none;
  color: white;
  width: 40px; height: 40px;
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-menu-overlay.active { display: block; }

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.mobile-menu-panel {
  position: fixed;
  left: 0; top: 0;
  height: 100%;
  width: 290px;
  background: white;
  box-shadow: 4px 0 24px rgba(136,19,55,0.15);
  padding: 28px 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1;
}
.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-header h2 {
  font-size: 1.15rem;
  color: var(--rosa-profundo);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--rosa-profundo);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-panel nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--texto-suave);
  transition: all 0.2s;
  margin-bottom: 4px;
}
.mobile-menu-panel nav a:hover,
.mobile-menu-panel nav a.ativo {
  background: var(--rosa-claro);
  color: var(--rosa-profundo);
}

/* ============================================================
   HERO (index only)
   ============================================================ */
.hero {
  background: linear-gradient(148deg, #6b0f2a 0%, #881337 30%, #be185d 70%, #e91e8c 100%);
  position: relative;
  padding: 96px 28px 140px;
  overflow: hidden;
}

.hero-orb-1 {
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute; bottom: 40px; left: -100px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb-3 {
  position: absolute; top: 50%; left: 50%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 80px;
  background: var(--creme);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fce7f3;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fb7185;
  animation: pulse-soft 1.8s infinite;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: #fce7f3;
}

.hero-subtitulo {
  font-size: 1.05rem;
  color: #fce7f3;
  line-height: 1.78;
  margin-bottom: 38px;
  opacity: 0.9;
  max-width: 480px;
}

.hero-search-wrapper {
  background: white;
  border-radius: 14px;
  padding: 6px 6px 6px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(136,19,55,0.3);
  max-width: 520px;
}

.hero-search-icon { color: var(--texto-claro); font-size: 1.05rem; flex-shrink: 0; }

.hero-search-input {
  flex: 1;
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--texto-principal);
  background: transparent;
  min-width: 0;
}
.hero-search-input::placeholder { color: var(--texto-claro); }

.hero-search-btn {
  background: linear-gradient(135deg, var(--rosa-profundo), var(--rosa-medio));
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-search-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

.hero-search-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.search-tag-label { font-size: 0.78rem; color: #fce7f3; opacity: 0.75; }
.search-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.76rem;
  padding: 3px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}
.search-tag:hover { background: rgba(255,255,255,0.25); }

/* Stats no hero */
.hero-stats { display: flex; flex-direction: column; gap: 14px; }

.stat-card {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}
.stat-card:hover { background: rgba(255,255,255,0.18); transform: translateX(4px); }
.stat-icon { font-size: 1.6rem; flex-shrink: 0; }
.stat-numero {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: #fce7f3; margin-top: 3px; opacity: 0.85; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(148deg, #6b0f2a 0%, #881337 30%, #be185d 70%, #e91e8c 100%);
  position: relative;
  padding: 56px 28px 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 60px;
  background: var(--creme);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 1.05rem;
  color: #fce7f3;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SEÇÕES GERAIS
   ============================================================ */
section { padding: 76px 28px; }
.container { max-width: 1200px; margin: 0 auto; }

.secao-cabecalho {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.secao-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--rosa-medio);
  margin-bottom: 7px;
}
.secao-titulo { font-size: clamp(1.45rem, 2.5vw, 1.95rem); color: var(--texto-principal); }
.secao-subtitulo {
  font-size: 0.915rem;
  color: var(--texto-suave);
  margin-top: 6px;
  max-width: 460px;
  line-height: 1.65;
}

.ver-todos {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rosa-medio);
  white-space: nowrap;
  transition: color 0.2s, gap 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ver-todos:hover { color: var(--rosa-profundo); gap: 8px; }

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ============================================================
   CARD PROTOCOLO
   ============================================================ */
.card-protocolo {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--sombra-card);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid var(--borda);
  cursor: pointer;
}
.card-protocolo:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-4px);
  border-left-color: var(--rosa-medio);
}

.cat-infeccioso  { border-left-color: #16a34a; }
.cat-urodinamico { border-left-color: #7c3aed; }
.cat-cirurgico   { border-left-color: var(--rosa-profundo); }
.cat-funcional   { border-left-color: #d97706; }

.protocolo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
}
.badge-infeccioso  { background: #dcfce7; color: #15803d; }
.badge-urodinamico { background: #ede9fe; color: #6d28d9; }
.badge-cirurgico   { background: var(--rosa-claro); color: var(--rosa-profundo); }
.badge-funcional   { background: #fef3c7; color: #b45309; }

.protocolo-titulo {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--texto-principal);
  line-height: 1.42;
}
.protocolo-desc {
  font-size: 0.875rem;
  color: var(--texto-suave);
  line-height: 1.65;
  flex: 1;
}
.protocolo-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--borda-suave);
}
.protocolo-data { font-size: 0.77rem; color: var(--texto-claro); }
.protocolo-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rosa-medio);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}
.protocolo-link:hover { color: var(--rosa-profundo); gap: 7px; }

/* ============================================================
   CARD ARTIGO
   ============================================================ */
.card-artigo {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.card-artigo:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-4px);
}
.artigo-topo {
  height: 5px;
  background: linear-gradient(90deg, var(--rosa-profundo), var(--rosa-suave), var(--destaque));
}
.artigo-corpo {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.artigo-meta { display: flex; align-items: center; gap: 10px; }
.artigo-tipo {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rosa-medio);
}
.artigo-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--borda); }
.artigo-data { font-size: 0.75rem; color: var(--texto-claro); }
.artigo-titulo {
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto-principal);
  line-height: 1.42;
}
.artigo-resumo {
  font-size: 0.875rem;
  color: var(--texto-suave);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.artigo-rodape {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}
.artigo-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rosa-medio);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}
.artigo-link:hover { color: var(--rosa-profundo); gap: 8px; }

/* ============================================================
   SEÇÃO PROTOCOLOS — fundo diferente
   ============================================================ */
.sec-protocolos { background: var(--rosa-palido); }

/* ============================================================
   EVENTOS
   ============================================================ */
.sec-eventos { background: white; }
.eventos-lista { display: flex; flex-direction: column; gap: 14px; }

.card-evento {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--sombra-card);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.25s;
  cursor: pointer;
}
.card-evento:hover {
  box-shadow: var(--sombra-hover);
  border-color: var(--borda);
  transform: translateX(5px);
}
.card-evento.passado { opacity: 0.6; }

.evento-data-bloco {
  background: var(--rosa-claro);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  flex-shrink: 0;
  min-width: 60px;
  border: 1px solid var(--borda);
}
.evento-dia {
  font-family: 'Lora', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--rosa-profundo);
  line-height: 1;
}
.evento-mes {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rosa-medio);
  margin-top: 2px;
}
.evento-info { flex: 1; }
.evento-tipo {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--rosa-medio);
  margin-bottom: 5px;
}
.evento-titulo {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--texto-principal);
  margin-bottom: 5px;
  line-height: 1.38;
}
.evento-local { font-size: 0.82rem; color: var(--texto-suave); display: flex; align-items: center; gap: 5px; }
.evento-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rosa-medio);
  align-self: center;
  flex-shrink: 0;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 4px;
}
.evento-link:hover { color: var(--rosa-profundo); }

/* ============================================================
   NOTÍCIAS
   ============================================================ */
.sec-noticias { background: white; }
.noticias-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.card-noticia {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.card-noticia:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-4px);
}
.noticia-img-placeholder {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.noticia-icon-svg {
  width: 56px;
  height: 56px;
  opacity: 0.55;
  filter: brightness(0) saturate(100%);
}
.noticia-img-placeholder.pesquisa { background: linear-gradient(135deg, #fce7f3, #fda4af); }
.noticia-img-placeholder.inovacao { background: linear-gradient(135deg, #ede9fe, #c4b5fd); }
.noticia-img-placeholder.evento   { background: linear-gradient(135deg, #dcfce7, #86efac); }
.noticia-img-placeholder.tratamento { background: linear-gradient(135deg, #fef3c7, #fcd34d); }
.noticia-img-placeholder.educacao   { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.noticia-img-placeholder.alerta     { background: linear-gradient(135deg, #fee2e2, #fca5a5); }

.noticia-categoria {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 999px;
}
.cat-p { background: var(--rosa-claro); color: var(--rosa-profundo); }
.cat-i { background: #ede9fe; color: #6d28d9; }
.cat-e { background: #dcfce7; color: #15803d; }
.cat-t { background: #fef3c7; color: #b45309; }
.cat-ed { background: #dbeafe; color: #1d4ed8; }
.cat-a { background: #fee2e2; color: #b91c1c; }

.noticia-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.noticia-data { font-size: 0.77rem; color: var(--texto-claro); }
.noticia-titulo {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--texto-principal);
  line-height: 1.42;
  flex: 1;
}
.noticia-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rosa-medio);
  display: flex; align-items: center; gap: 4px;
  margin-top: 8px;
  transition: all 0.2s;
}
.noticia-link:hover { color: var(--rosa-profundo); gap: 7px; }

.card-noticia.destaque .noticia-img-placeholder { height: 220px; }
.card-noticia.destaque .noticia-titulo { font-size: 1.1rem; }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre-section { background: var(--rosa-palido); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-texto h2 { margin-bottom: 18px; }
.sobre-texto p {
  color: var(--texto-suave);
  margin-bottom: 14px;
  font-size: 0.975rem;
  line-height: 1.8;
}
.sobre-cita {
  background: white;
  border-left: 4px solid var(--rosa-suave);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--rosa-profundo);
  font-size: 0.975rem;
  line-height: 1.65;
  margin: 24px 0;
  box-shadow: var(--sombra-card);
}
.sobre-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rosa-profundo);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.2s;
  margin-top: 8px;
}
.sobre-btn:hover { background: var(--rosa-medio); transform: translateY(-2px); }

.sobre-valores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.valor-item {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--sombra-card);
  border: 1px solid var(--borda-suave);
  transition: all 0.25s;
}
.valor-item:hover { box-shadow: var(--sombra-hover); transform: translateY(-2px); }
.valor-emoji { font-size: 1.5rem; margin-bottom: 10px; }
.valor-titulo {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--texto-principal);
  margin-bottom: 5px;
}
.valor-desc { font-size: 0.8rem; color: var(--texto-suave); line-height: 1.58; }

/* ============================================================
   NEWSLETTER / CTA
   ============================================================ */
.newsletter-section {
  background: linear-gradient(145deg, #6b0f2a 0%, #881337 40%, #be185d 80%, #e91e8c 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.newsletter-section::after {
  content: '';
  position: absolute; bottom: -100px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.newsletter-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.newsletter-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fce7f3;
  opacity: 0.8;
  margin-bottom: 14px;
}
.newsletter-titulo {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: 14px;
}
.newsletter-subtitulo {
  font-size: 1rem;
  color: #fce7f3;
  margin-bottom: 38px;
  opacity: 0.88;
  line-height: 1.7;
}
.newsletter-form {
  background: white;
  border-radius: 14px;
  padding: 8px 8px 8px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(136,19,55,0.3);
  margin-bottom: 18px;
}
.newsletter-form input {
  flex: 1;
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--texto-principal);
  background: transparent;
  min-width: 0;
}
.newsletter-form input::placeholder { color: var(--texto-claro); }
.newsletter-btn {
  background: linear-gradient(135deg, var(--rosa-profundo), var(--rosa-medio));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.newsletter-nota { font-size: 0.78rem; color: #fce7f3; opacity: 0.6; }
.newsletter-msg { font-size: 0.85rem; color: #fce7f3; margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--rosa-profundo);
  color: #f3b8d0;
  padding: 64px 28px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.footer-logo-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.footer-desc { font-size: 0.875rem; line-height: 1.75; color: #f3b8d0; opacity: 0.7; }
.footer-social {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s;
  cursor: pointer;
}
.social-btn:hover { background: rgba(255,255,255,0.2); }
.footer-col-titulo {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fb7185;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: #f3b8d0;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { opacity: 1; color: white; }
.footer-divisor {
  border: none;
  border-top: 1px solid rgba(243,184,208,0.15);
  margin-bottom: 28px;
}
.footer-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: #f3b8d0; opacity: 0.5; }
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f3b8d0;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  opacity: 0.7;
}

/* ============================================================
   UTILITY CLASSES (for page content & JS-generated markup)
   ============================================================ */

/* Filtros e seletores */
.filtro-select {
  background: white;
  border: 1px solid var(--borda);
  border-radius: 10px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--texto-principal);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filtro-select:focus { border-color: var(--rosa-medio); }

/* Info box */
.info-box {
  background: var(--rosa-palido);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 40px;
}
.info-box h3 {
  font-size: 1.05rem;
  color: var(--rosa-profundo);
  margin-bottom: 8px;
}
.info-box p {
  font-size: 0.875rem;
  color: var(--texto-suave);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 48px 24px;
}
.empty-state h3 {
  font-size: 1.15rem;
  color: var(--texto-claro);
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 0.875rem;
  color: var(--texto-claro);
}

/* CTA section */
.cta-section {
  background: linear-gradient(145deg, #6b0f2a 0%, #881337 40%, #be185d 80%, #e91e8c 100%);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: white; margin-bottom: 14px; }
.cta-section p { color: #fce7f3; margin-bottom: 24px; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btn {
  display: inline-block;
  background: white;
  color: var(--rosa-profundo);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* Content card (white block) */
.content-card {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--sombra-card);
}

/* Feature grid (Sobre, values, etc) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.feature-icon.green  { background: #dcfce7; }
.feature-icon.blue   { background: #dbeafe; }
.feature-icon.purple { background: #ede9fe; }
.feature-icon.orange { background: #fef3c7; }
.feature-icon.rosa   { background: var(--rosa-claro); }
.feature-title { font-size: 0.9rem; font-weight: 700; color: var(--texto-principal); margin-bottom: 4px; }
.feature-desc  { font-size: 0.82rem; color: var(--texto-suave); line-height: 1.55; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--texto-claro);
  margin-bottom: 20px;
  padding: 0 4px;
}
.breadcrumb a {
  color: var(--rosa-medio);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--rosa-profundo); }

/* Protocol content page */
.protocol-content {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--sombra-card);
}
.protocol-content h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--rosa-profundo);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--rosa-medio);
}
.protocol-content h2 {
  font-size: 1.3rem;
  color: var(--rosa-profundo);
  margin-top: 28px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--borda-suave);
}
.protocol-content h3 {
  font-size: 1.1rem;
  color: var(--texto-principal);
  margin-top: 20px;
  margin-bottom: 10px;
}
.protocol-content p {
  margin-bottom: 12px;
  color: var(--texto-suave);
  line-height: 1.75;
}
.protocol-content ul, .protocol-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
.protocol-content li {
  color: var(--texto-suave);
  margin-bottom: 6px;
  line-height: 1.65;
}
.protocol-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.875rem;
}
.protocol-content th {
  background: var(--rosa-profundo);
  color: white;
  padding: 10px;
  text-align: left;
  font-weight: 600;
}
.protocol-content td {
  border: 1px solid var(--borda-suave);
  padding: 10px;
  color: var(--texto-suave);
}
.protocol-content tr:nth-child(even) { background: var(--rosa-palido); }

/* Action button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rosa-profundo), var(--rosa-medio));
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Contato page */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contato-icon {
  width: 44px; height: 44px;
  background: var(--rosa-claro);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contato-label { font-size: 0.95rem; font-weight: 600; color: var(--texto-principal); }
.contato-valor { font-size: 0.875rem; color: var(--texto-suave); }
.contato-nota { font-size: 0.78rem; color: var(--texto-claro); margin-top: 2px; }

/* Form elements */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texto-principal);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--borda);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--texto-principal);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--rosa-medio); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--borda-suave);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto-principal);
  padding: 4px 0;
}
.faq-answer {
  display: none;
  margin-top: 10px;
  color: var(--texto-suave);
  font-size: 0.875rem;
  line-height: 1.65;
}
.faq-answer.open { display: block; }

/* Equipe card (Sobre) */
.equipe-card {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.equipe-foto {
  height: 240px;
  background: linear-gradient(135deg, var(--rosa-profundo), var(--rosa-suave));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}
.equipe-body { padding: 24px; }
.equipe-nome { font-size: 1.15rem; font-weight: 700; color: var(--texto-principal); margin-bottom: 4px; }
.equipe-cargo { font-size: 0.82rem; color: var(--texto-suave); margin-bottom: 10px; }
.equipe-bio { font-size: 0.85rem; color: var(--texto-suave); line-height: 1.6; margin-bottom: 14px; }
.equipe-social { display: flex; justify-content: center; gap: 12px; }
.equipe-social a {
  width: 36px; height: 36px;
  background: var(--rosa-claro);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rosa-profundo);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.equipe-social a:hover { background: var(--rosa-profundo); color: white; }

/* Search results */
.search-stat { text-align: center; color: var(--texto-suave); margin-bottom: 24px; font-size: 0.9rem; }
.search-result-card {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--sombra-card);
  margin-bottom: 14px;
  transition: all 0.2s;
}
.search-result-card:hover { box-shadow: var(--sombra-hover); transform: translateX(4px); }
.search-result-card h3 { font-size: 1rem; color: var(--rosa-profundo); margin-bottom: 6px; }
.search-result-card p { font-size: 0.85rem; color: var(--texto-suave); line-height: 1.6; }
.search-result-card a { color: var(--rosa-medio); font-weight: 600; font-size: 0.85rem; }

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--rosa-profundo);
  color: white;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Hidden utility */
.hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  nav.desktop-nav { display: none; }
  .header-search { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 64px 20px 100px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .noticias-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 48px 16px; }
  .header-inner { padding: 0 16px; height: 60px; }
  .logo { font-size: 0.95rem; }
  .logo-icon { width: 32px; height: 32px; font-size: 1rem; }

  .hero { padding: 48px 16px 80px; }
  .page-hero { padding: 40px 16px 60px; }

  .cards-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .sobre-valores { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .hero-search-wrapper { flex-direction: column; padding: 12px; }
  .hero-search-btn { width: 100%; text-align: center; justify-content: center; }

  .newsletter-form { flex-direction: column; padding: 12px; }
  .newsletter-btn { width: 100%; justify-content: center; }

  .card-evento { flex-direction: column; }
  .evento-link { align-self: flex-start; }

  footer { padding: 40px 16px 24px; }
}

/* ============================================================
   MODE TOGGLE (Paciente / Profissional)
   ============================================================ */
.mode-toggle {
  display: flex;
  background: var(--rosa-claro);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.mode-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  color: var(--texto-suave);
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.mode-btn.active {
  background: var(--rosa-profundo);
  color: white;
  font-weight: 600;
}
.mode-btn:hover:not(.active) {
  background: var(--rosa-palido);
}
.mobile-mode-toggle {
  margin-bottom: 20px;
  justify-content: center;
}

@media (max-width: 960px) {
  .mode-toggle:not(.mobile-mode-toggle) { display: none; }
}

/* ============================================================
   ÁREA DO PACIENTE — Estilos específicos
   ============================================================ */

/* Hero paciente */
.pac-hero {
  background: linear-gradient(148deg, #6b0f2a 0%, #881337 30%, #be185d 70%, #e91e8c 100%);
  padding: 96px 28px 140px;
  position: relative;
  overflow: hidden;
}
.pac-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 80px;
  background: var(--creme);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.pac-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.pac-hero-content { position: relative; z-index: 1; }
.pac-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.pac-hero-icon {
  margin-bottom: 20px;
}
/* Subpages without pac-hero-inner: center content */
.pac-hero > .pac-hero-icon,
.pac-hero > h1,
.pac-hero > p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.pac-hero > .pac-hero-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.pac-hero > h1 { margin-bottom: 16px; }
.pac-hero > p { margin-bottom: 0; }
.pac-hero-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.35), 0 4px 16px rgba(0,0,0,0.2);
}
.pac-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: 'Lora', serif;
  font-weight: 700;
}
.pac-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.pac-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 0;
}
.pac-hero .hero-search-wrapper {
  max-width: 480px;
  margin: 24px 0 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Condições grid */
.cond-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.cond-card {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--sombra-card);
  transition: all 0.25s;
  cursor: pointer;
}
.cond-card:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-3px);
}
.cond-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cond-icon.rosa   { background: var(--rosa-claro); }
.cond-icon.lilas  { background: #ede9fe; }
.cond-icon.verde  { background: #dcfce7; }
.cond-icon.ambar  { background: #fef3c7; }
.cond-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto-principal);
  margin-bottom: 4px;
}
.cond-desc {
  font-size: 0.82rem;
  color: var(--texto-suave);
  line-height: 1.55;
}
.cond-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rosa-medio);
  margin-top: 6px;
  display: inline-block;
  transition: all 0.2s;
}
.cond-link:hover { color: var(--rosa-profundo); }

/* Dicas de saúde grid */
.dicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.dica-card {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: all 0.25s;
  cursor: pointer;
}
.dica-card:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-3px);
}
.dica-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.dica-img.r1 { background: linear-gradient(135deg, #fce7f3, #fda4af); }
.dica-img.r2 { background: linear-gradient(135deg, #ede9fe, #c4b5fd); }
.dica-img.r3 { background: linear-gradient(135deg, #dcfce7, #86efac); }
.dica-img.r4 { background: linear-gradient(135deg, #fef3c7, #fcd34d); }
.dica-body { padding: 18px; }
.dica-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto-principal);
  margin-bottom: 6px;
  line-height: 1.35;
}
.dica-desc {
  font-size: 0.82rem;
  color: var(--texto-suave);
  line-height: 1.55;
  margin-bottom: 10px;
}
.dica-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rosa-medio);
  transition: all 0.2s;
}
.dica-link:hover { color: var(--rosa-profundo); }

/* FAQ paciente */
.faq-pac-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-pac-item {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--sombra-card);
}
.faq-pac-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}
.faq-pac-q span:first-child {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--texto-principal);
}
.faq-pac-q .faq-arrow {
  font-size: 0.85rem;
  color: var(--texto-claro);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-pac-a {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--borda-suave);
  font-size: 0.875rem;
  color: var(--texto-suave);
  line-height: 1.7;
}
.faq-pac-item.open .faq-pac-a { display: block; }
.faq-pac-item.open .faq-arrow { transform: rotate(180deg); }

/* Sinais de alerta */
.sinais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.sinal-card {
  background: var(--fundo-card);
  border: 1px solid var(--borda-suave);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--sombra-card);
}
.sinal-num {
  width: 36px; height: 36px;
  background: var(--rosa-claro);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rosa-profundo);
  flex-shrink: 0;
}
.sinal-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto-principal);
  margin-bottom: 3px;
}
.sinal-desc {
  font-size: 0.8rem;
  color: var(--texto-suave);
  line-height: 1.5;
}

/* CTA especialista */
.cta-especialista {
  background: linear-gradient(135deg, var(--rosa-profundo), var(--rosa-medio));
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.cta-esp-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cta-esp-text { flex: 1; }
.cta-esp-title {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 6px;
}
.cta-esp-desc {
  font-size: 0.875rem;
  color: #fce7f3;
  opacity: 0.9;
  line-height: 1.6;
}
.cta-esp-btn {
  background: white;
  color: var(--rosa-profundo);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.cta-esp-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* Sobre dra card */
.sobre-dra {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sobre-dra-foto {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rosa-profundo), var(--rosa-suave));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.sobre-dra-nome {
  font-size: 1rem;
  font-weight: 700;
  color: var(--texto-principal);
  margin-bottom: 3px;
}
.sobre-dra-cargo {
  font-size: 0.8rem;
  color: var(--texto-suave);
  margin-bottom: 8px;
}
.sobre-dra-bio {
  font-size: 0.85rem;
  color: var(--texto-suave);
  line-height: 1.6;
}

/* Em breve page */
.em-breve {
  text-align: center;
  padding: 80px 28px;
}
.em-breve-icon { font-size: 3rem; margin-bottom: 20px; }
.em-breve h1 {
  font-size: 1.5rem;
  color: var(--rosa-profundo);
  margin-bottom: 12px;
}
.em-breve p {
  font-size: 1rem;
  color: var(--texto-suave);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .cond-grid { grid-template-columns: 1fr; }
  .dicas-grid { grid-template-columns: 1fr; }
  .sinais-grid { grid-template-columns: 1fr; }
  .cta-especialista { flex-direction: column; text-align: center; }
  .cta-esp-btn { width: 100%; text-align: center; }
  .sobre-dra { flex-direction: column; text-align: center; }
  .pac-hero { padding: 48px 16px 80px; }
  .pac-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pac-hero-stats { display: none; }
  .pac-hero h1 { font-size: 1.8rem; }
  .pac-hero p { max-width: 100%; }
  .pac-hero .hero-search-wrapper { max-width: 100%; }
}

/* ============================================================
   IMPROVEMENT: Real Images + Share Buttons
   ============================================================ */

/* Doctor photo as img */
img.sobre-dra-foto {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

img.equipe-foto {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
}

/* SVG condition icons inside cond-icon div */
.cond-svg-icon {
    width: 60%;
    height: 60%;
}

/* Footer social SVG icons */
.footer-social .social-btn img,
.equipe-social a img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(60%) saturate(3000%) hue-rotate(330deg);
    transition: filter 0.2s;
}
.footer-social .social-btn:hover img,
.equipe-social a:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Share buttons */
.share-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
    padding: 14px 0;
    border-top: 1px solid var(--borda);
}
.share-bar-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--texto-suave);
    margin-right: 4px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--rosa-claro);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.share-btn:hover {
    background: var(--rosa-profundo);
}
.share-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(60%) saturate(3000%) hue-rotate(330deg);
    transition: filter 0.2s;
}
.share-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}
.share-btn--copy {
    font-size: 0.8rem;
    width: auto;
    padding: 0 12px;
    gap: 6px;
    color: var(--rosa-profundo);
    font-weight: 500;
}
.share-btn--copy:hover {
    color: #fff;
}

/* ============================================================
   VIDEO INTEGRATION
   ============================================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.video-card {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--borda);
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(136, 19, 55, 0.08);
}
.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.video-wrapper lite-youtube { border-radius: 0; }
.video-title {
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--texto-principal);
    line-height: 1.4;
}

/* ============================================================
   INLINE ICONS (replacing emojis)
   ============================================================ */
.icon-inline {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    margin-right: 2px;
}
.secao-tag .icon-inline {
    width: 0.9em;
    height: 0.9em;
    filter: none;
}
.logo-icon-svg {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
}
.footer-logo-icon-svg {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}
.pac-hero-icon .icon-inline {
    width: 64px;
    height: 64px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}
.cta-esp-icon .icon-inline {
    width: 1.5em;
    height: 1.5em;
}
.valor-emoji .icon-inline,
.stat-icon .icon-inline {
    width: 1.2em;
    height: 1.2em;
}

@media (max-width: 600px) {
    .video-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   UTILIDADES — Compatibilidade com classes de artigos/protocolos
   Mapeamento: antigo tema azul → novo tema rosa
   ============================================================ */

/* --- Textos --- */
.text-blue-600  { color: var(--rosa-medio); }
.text-blue-700  { color: var(--rosa-medio); }
.text-blue-800  { color: var(--rosa-profundo); }
.text-uro-azul  { color: var(--rosa-medio); }
.text-uro-azul_escuro { color: var(--rosa-profundo); }
.text-gray-500  { color: #9ca3af; }
.text-gray-600  { color: var(--texto-suave); }
.text-gray-700  { color: var(--texto-principal); }
.text-gray-800  { color: var(--texto-principal); }
.text-gray-900  { color: var(--texto-principal); }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }
.text-pink-700  { color: var(--rosa-medio); }
.text-pink-800  { color: var(--rosa-profundo); }
.text-purple-700 { color: #7e22ce; }
.text-purple-800 { color: #6b21a8; }
.text-red-700   { color: #b91c1c; }
.text-red-800   { color: #991b1b; }
.text-yellow-700 { color: #a16207; }
.text-yellow-800 { color: #854d0e; }
.text-white     { color: #fff; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

/* --- Backgrounds --- */
.bg-white       { background: #fff; }
.bg-gray-50     { background: #f9fafb; }
.bg-gray-200    { background: #e5e7eb; }
.bg-gray-300    { background: #d1d5db; }
.bg-blue-50     { background: var(--rosa-palido); }
.bg-blue-600    { background: var(--rosa-profundo); }
.bg-blue-700    { background: var(--rosa-profundo); }
.bg-uro-azul    { background: var(--rosa-profundo); }
.bg-green-50    { background: #f0fdf4; }
.bg-green-600   { background: #16a34a; }
.bg-orange-50   { background: #fff7ed; }
.bg-orange-600  { background: #ea580c; }
.bg-pink-50     { background: var(--rosa-palido); }
.bg-purple-50   { background: #faf5ff; }
.bg-purple-600  { background: #9333ea; }
.bg-red-50      { background: #fef2f2; }
.bg-yellow-50   { background: #fefce8; }

/* --- Bordas --- */
.border-blue-400 { border-color: var(--rosa-suave); }
.border-blue-600 { border-color: var(--rosa-medio); }
.border-uro-azul { border-color: var(--rosa-medio); }
.border-yellow-400 { border-color: #facc15; }
.border-b-2     { border-bottom-width: 2px; border-bottom-style: solid; }
.border-l-4     { border-left-width: 4px; border-left-style: solid; }

/* --- Layout comuns em artigos/protocolos --- */
.container { max-width: 1200px; margin: 0 auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pl-5 { padding-left: 1.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-right { text-align: right; }
.text-center { text-align: center; }

/* Tipografia */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.inline-block { display: inline-block; }

/* Componentes */
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }
.max-w-4xl { max-width: 56rem; }
.max-w-none { max-width: none; }
.min-w-\[200px\] { min-width: 200px; }
.overflow-hidden { overflow: hidden; }

/* Prose/conteúdo de artigos */
.prose { line-height: 1.75; color: var(--texto-principal); }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; color: var(--rosa-profundo); border-bottom: 2px solid var(--rosa-medio); padding-bottom: 0.5rem; }
.prose h3 { font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.75rem; color: var(--rosa-profundo); }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin-left: 1.25rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { font-weight: 700; }
.prose em { font-style: italic; }

/* Highlight boxes em artigos */
.highlight-box, .key-point {
  background: var(--rosa-palido);
  border-left: 4px solid var(--rosa-medio);
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Responsivo artigo/protocolo */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:p-8 { padding: 2rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

/* Transition */
.transition-colors { transition: color 0.15s ease; }

/* Hover */
.hover\:text-blue-800:hover { color: var(--rosa-profundo); }
.hover\:text-uro-azul_escuro:hover { color: var(--rosa-profundo); }
