/* ============================================================
   CLÍNICA PROPET — PÁGINAS DE ESPECIALIDADE
   Estilos compartilhados pelas páginas internas
   ============================================================ */

/* ----- BREADCRUMB ----- */
.breadcrumb {
  padding: 110px 0 0;
  background: var(--paper);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  font-family: var(--font-body);
}
.breadcrumb__inner a {
  color: var(--propet-blue);
  transition: color var(--t-fast);
}
.breadcrumb__inner a:hover { color: var(--propet-blue-deep); text-decoration: underline; }
.breadcrumb__sep {
  color: var(--ink-300);
  font-weight: 400;
}
.breadcrumb__current {
  color: var(--ink-700);
  font-weight: 600;
}

/* ----- HERO DE ESPECIALIDADE ----- */
.esp-hero {
  padding: 32px 0 80px;
  background: linear-gradient(135deg, var(--paper) 0%, var(--blue-50) 100%);
}
.esp-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.esp-hero__copy { max-width: 600px; }

.esp-hero__headline {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink-1000);
  margin: 16px 0 20px;
  letter-spacing: -0.015em;
}
.esp-hero__headline .hl { color: var(--propet-blue); }

.esp-hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 32px;
}

.esp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.esp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
}
.esp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-700);
}
.esp-hero__trust-item strong {
  color: var(--ink-1000);
  font-weight: 700;
}

.esp-hero__photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--blue-50);
}
.esp-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.esp-hero__photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.esp-hero__photo-badge strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-1000);
}
.esp-hero__photo-badge small {
  font-size: 12px;
  color: var(--ink-500);
}

/* ----- SEÇÃO BASE DE TEXTO ----- */
.esp-section {
  padding: 80px 0;
}
.esp-section--soft { background: var(--blue-50); }
.esp-section--dark {
  background: var(--ink-1000);
  color: rgba(255,255,255,0.85);
}
.esp-section--dark h2,
.esp-section--dark h3 { color: white; }

.esp-section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.esp-section__title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--ink-1000);
  margin: 16px 0 14px;
  letter-spacing: -0.01em;
}
.esp-section--dark .esp-section__title { color: white; }
.esp-section__sub {
  font-size: 16px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.6;
}
.esp-section--dark .esp-section__sub { color: rgba(255,255,255,0.75); }

/* ----- BLOCO DE TEXTO RICO ----- */
.esp-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-700);
}
.esp-prose p { margin: 0 0 18px; }
.esp-prose strong { color: var(--ink-1000); font-weight: 700; }
.esp-prose em { color: var(--propet-blue-ink); font-style: normal; font-weight: 600; }

/* ----- CARDS DE SINAIS / EXAMES ----- */
.esp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.esp-card-item {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.esp-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.esp-card-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--propet-blue);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}
.esp-card-item__icon--green {
  background: var(--green-50);
  color: var(--propet-green-deep);
}
.esp-card-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0 0 8px;
  line-height: 1.3;
}
.esp-card-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}

/* ----- CARDS DE EXAMES (variante 2 colunas com mais texto) ----- */
.esp-exams {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.esp-exam {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.esp-exam__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--propet-blue);
  background: var(--blue-50);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.esp-exam h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-1000);
  line-height: 1.25;
  margin: 0;
}
.esp-exam p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}
.esp-exam__when {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-200);
  font-size: 13px;
  color: var(--ink-500);
}
.esp-exam__when strong { color: var(--ink-1000); font-weight: 700; }

/* ----- ALERT BOX (compliance vet) ----- */
.esp-alert {
  max-width: 880px;
  margin: 32px auto 0;
  padding: 22px 28px;
  background: var(--blue-50);
  border-left: 4px solid var(--propet-blue);
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.esp-alert__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--propet-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.esp-alert p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
}
.esp-alert strong { color: var(--ink-1000); }

/* ----- WHEN-TO-COME BLOCK (lista de sinais) ----- */
.esp-signals {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.esp-signals li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-200);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-700);
}
.esp-signals li::before {
  content: '!';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--propet-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.esp-signals strong { color: var(--ink-1000); font-weight: 700; }

/* ----- INLINE CTA (entre seções) ----- */
.esp-inline-cta {
  background: linear-gradient(135deg, var(--propet-blue) 0%, var(--blue-700) 100%);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
}
.esp-inline-cta h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: white;
  margin: 0 0 14px;
  line-height: 1.25;
}
.esp-inline-cta p {
  font-size: 16px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.9);
}
.esp-inline-cta__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.esp-inline-cta .btn--white { color: var(--propet-blue); }

/* ----- POR QUE NA PROPET (mini cards) ----- */
.esp-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.esp-why-card {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.esp-why-card__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--propet-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}
.esp-why-card__num--green {
  background: var(--green-50);
  color: var(--propet-green-deep);
}
.esp-why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0 0 6px;
  line-height: 1.3;
}
.esp-why-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}

/* ----- VET STRIPE (autoridade dos sócios numa linha) ----- */
.esp-vet-stripe {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.esp-vet-stripe__avatars {
  display: flex;
}
.esp-vet-stripe__avatars img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.esp-vet-stripe__avatars img + img { margin-left: -14px; }
.esp-vet-stripe__copy { flex: 1; min-width: 240px; }
.esp-vet-stripe__copy strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-1000);
  margin-bottom: 4px;
}
.esp-vet-stripe__copy p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  margin: 0;
}
.esp-vet-stripe__copy small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-500);
}

/* ----- FAQ (reaproveita o estilo base mas com variações leves) ----- */
.esp-faq__grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.esp-faq-item {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 0;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.esp-faq-item[open] {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}
.esp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-1000);
  line-height: 1.4;
}
.esp-faq-item summary::-webkit-details-marker { display: none; }
.esp-faq-item__icon {
  flex-shrink: 0;
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--propet-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  transition: transform var(--t-base);
}
.esp-faq-item[open] .esp-faq-item__icon { transform: rotate(45deg); }
.esp-faq-item p {
  padding: 0 26px 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}

/* ----- LOCATION CARD (resumo no fim) ----- */
.esp-location {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.esp-location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 20px;
}
.esp-location__info {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 20px;
  padding: 32px;
}
.esp-location__info h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink-1000);
  margin: 12px 0 8px;
}
.esp-location__info p { font-size: 15px; color: var(--ink-700); margin: 0 0 16px; line-height: 1.55; }
.esp-location__info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 14px;
  margin: 16px 0;
}
.esp-location__info dt { color: var(--ink-500); font-weight: 500; }
.esp-location__info dd { color: var(--ink-1000); font-weight: 700; margin: 0; }
.esp-location__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ----- JORNADA NUMERADA (passos da cirurgia / fluxo) ----- */
.esp-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.esp-step {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
}
.esp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--propet-blue);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}
.esp-step__num--green { background: var(--propet-green); }
.esp-step h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0 0 8px;
  line-height: 1.3;
}
.esp-step p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-700);
  margin: 0;
}

/* ----- TIPOS DE CIRURGIA (variante card mais visual) ----- */
.esp-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.esp-type {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.esp-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.esp-type__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--propet-blue);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}
.esp-type__icon--green {
  background: var(--green-50);
  color: var(--propet-green-deep);
}
.esp-type h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0 0 10px;
  line-height: 1.25;
}
.esp-type p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}
.esp-type__examples {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--ink-200);
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.5;
}
.esp-type__examples strong { color: var(--ink-1000); font-weight: 700; }

/* ----- CALENDÁRIO VACINAL (tabela limpa, 2 colunas: cães e gatos) ----- */
.esp-vacc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.esp-vacc-card {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.esp-vacc-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-1000);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.esp-vacc-card h3 .esp-vacc-card__species {
  font-size: 22px;
}
.esp-vacc-card__sub {
  font-size: 14px;
  color: var(--ink-500);
  margin: 0 0 24px;
}
.esp-vacc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.esp-vacc-table th,
.esp-vacc-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--ink-200);
  vertical-align: top;
}
.esp-vacc-table th {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--propet-blue);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.esp-vacc-table td:first-child {
  font-weight: 700;
  color: var(--ink-1000);
  white-space: nowrap;
  width: 32%;
}
.esp-vacc-table td {
  color: var(--ink-700);
  line-height: 1.5;
}
.esp-vacc-table tr:last-child td { border-bottom: 0; }
.esp-vacc-card__note {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--blue-50);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.5;
}
.esp-vacc-card__note strong { color: var(--ink-1000); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .esp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .esp-hero__photo { max-width: 460px; margin: 0 auto; }
  .esp-cards { grid-template-columns: repeat(2, 1fr); }
  .esp-exams { grid-template-columns: 1fr; }
  .esp-why { grid-template-columns: 1fr; }
  .esp-types { grid-template-columns: repeat(2, 1fr); }
  .esp-steps { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .esp-steps h3 { font-size: 13px; }
  .esp-steps p { font-size: 12px; }
  .esp-vacc { grid-template-columns: 1fr; }
  .esp-location { grid-template-columns: 1fr; }
  .esp-location__map iframe { min-height: 320px; }
}

@media (max-width: 768px) {
  .breadcrumb { padding-top: 96px; }
  .breadcrumb__inner { font-size: 12px; }
  .esp-hero { padding: 24px 0 56px; }
  .esp-section { padding: 56px 0; }
  .esp-cards { grid-template-columns: 1fr; }
  .esp-types { grid-template-columns: 1fr; }
  .esp-steps { grid-template-columns: 1fr; gap: 12px; }
  .esp-step { text-align: left; display: flex; gap: 14px; align-items: flex-start; padding: 18px; }
  .esp-step__num { margin-bottom: 0; flex-shrink: 0; width: 38px; height: 38px; font-size: 16px; }
  .esp-signals { grid-template-columns: 1fr; gap: 0; }
  .esp-vet-stripe { flex-direction: column; align-items: flex-start; padding: 24px; }
  .esp-inline-cta { padding: 36px 24px; }
  .esp-location__info { padding: 24px; }
  .esp-faq-item summary { padding: 18px 20px; font-size: 15px; gap: 12px; }
  .esp-faq-item p { padding: 0 20px 18px; font-size: 14px; }
  .esp-vacc-card { padding: 24px; }
  .esp-vacc-table { font-size: 13px; }
  .esp-vacc-table td:first-child { width: 38%; }
}
