/* ============================================================
   PÁGINAS DE ESPECIALIDADE — VetCare Instituto Veterinário
   Usa a paleta do site (teal). Complementa styles.css
   ============================================================ */

.esp-hero{
  padding:140px 0 70px;
  background:linear-gradient(160deg,#f4fbfa 0%,#e8f5f2 100%);
  position:relative;
}
.esp-breadcrumb{
  font-size:0.85rem;
  color:#5f7f7b;
  margin-bottom:1.5rem;
}
.esp-breadcrumb a{ color:var(--deep-teal); text-decoration:none; }
.esp-breadcrumb a:hover{ text-decoration:underline; }
.esp-breadcrumb span{ margin:0 0.4rem; color:#9bb5b1; }

.esp-hero__title{
  font-family:var(--font-head);
  font-size:clamp(1.9rem,4.5vw,3rem);
  color:var(--dark-teal);
  line-height:1.15;
  margin-bottom:1.5rem;
  max-width:820px;
}
.esp-hero__img{
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:18px;
  margin-bottom:1.8rem;
  box-shadow:0 10px 40px rgba(2,114,118,0.18);
  display:block;
}
.esp-hero__intro{ max-width:760px; }
.esp-hero__intro p{
  font-size:1.12rem;
  line-height:1.75;
  color:#3a4f4c;
  margin-bottom:1.1rem;
}

.esp-btn{
  display:inline-flex;
  align-items:center;
  gap:0.6rem;
  background:linear-gradient(135deg,#25D366,#1da851);
  color:#fff;
  font-weight:700;
  font-size:1.02rem;
  padding:0.95rem 2rem;
  border-radius:100px;
  text-decoration:none;
  box-shadow:0 6px 22px rgba(37,211,102,0.32);
  transition:transform .25s ease, box-shadow .25s ease;
  margin-top:1.5rem;
}
.esp-btn:hover{ transform:translateY(-3px); box-shadow:0 10px 30px rgba(37,211,102,0.42); }
.esp-btn i{ font-size:1.25rem; }
.esp-btn--hero{ margin-top:0.5rem; }
.esp-btn--white{
  background:#fff; color:var(--deep-teal);
  box-shadow:0 6px 22px rgba(0,0,0,0.15);
}
.esp-btn--white:hover{ box-shadow:0 10px 30px rgba(0,0,0,0.22); }

.esp-section{ padding:70px 0; }
.esp-section--alt{ background:#f7fafa; }

.esp-h2{
  font-family:var(--font-head);
  font-size:clamp(1.5rem,3.2vw,2.1rem);
  color:var(--dark-teal);
  margin-bottom:1rem;
  line-height:1.2;
}
.esp-lead{
  font-size:1.1rem;
  color:#46605c;
  max-width:720px;
  margin-bottom:1.8rem;
  line-height:1.7;
}
.esp-fecho{
  font-size:1.08rem;
  color:var(--deep-teal);
  font-weight:500;
  max-width:720px;
  margin-top:1.8rem;
  line-height:1.7;
  padding-left:1.1rem;
  border-left:3px solid var(--sage);
}

.esp-sintomas{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:0.9rem;
}
.esp-sintomas li{
  position:relative;
  background:#fff;
  border:1px solid #dcefeb;
  border-radius:12px;
  padding:1rem 1.1rem 1rem 3rem;
  font-size:1.02rem;
  color:#3a4f4c;
  line-height:1.5;
  box-shadow:0 2px 12px rgba(2,114,118,0.06);
}
.esp-sintomas li::before{
  content:"\f00c";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  color:var(--sage);
  position:absolute;
  left:1.1rem;
  top:1.05rem;
}

.esp-diff{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:1.4rem;
  margin:1.5rem 0;
}
.esp-diff__card{
  background:#fff;
  border-radius:16px;
  padding:1.8rem 1.5rem;
  text-align:center;
  box-shadow:var(--shadow);
  border:1px solid #e4f1ee;
  transition:transform .25s ease, box-shadow .25s ease;
}
.esp-diff__card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.esp-diff__card i{
  font-size:2rem;
  color:var(--deep-teal);
  margin-bottom:0.9rem;
}
.esp-diff__card h3{
  font-size:1.15rem;
  color:var(--dark-teal);
  margin-bottom:0.5rem;
}
.esp-diff__card p{
  font-size:0.95rem;
  color:#5f7671;
  line-height:1.6;
}

.esp-faq{ max-width:820px; }
.esp-faq__item{
  background:#fff;
  border-radius:14px;
  padding:1.4rem 1.6rem;
  margin-bottom:1rem;
  box-shadow:0 2px 14px rgba(2,114,118,0.07);
  border-left:4px solid var(--sage);
}
.esp-faq__q{
  font-size:1.12rem;
  color:var(--dark-teal);
  margin-bottom:0.5rem;
}
.esp-faq__a{
  font-size:1.02rem;
  color:#46605c;
  line-height:1.7;
  margin:0;
}

.esp-cta{
  padding:80px 0;
  background:linear-gradient(135deg,var(--deep-teal),var(--dark-teal));
  color:#fff;
  text-align:center;
}
.esp-cta h2{
  font-family:var(--font-head);
  font-size:clamp(1.6rem,3.5vw,2.3rem);
  margin-bottom:1rem;
}
.esp-cta p{
  font-size:1.1rem;
  opacity:0.92;
  max-width:640px;
  margin:0 auto 2rem;
  line-height:1.7;
}

@media(max-width:600px){
  .esp-hero{ padding:120px 0 50px; }
  .esp-hero__intro p{ font-size:1.05rem; }
  .esp-sintomas{ grid-template-columns:1fr; }
  .esp-section{ padding:50px 0; }
}

/* ===== ÍNDICE DE ESPECIALIDADES (na página de serviços) ===== */
.esp-index__title{
  font-family:var(--font-head);
  font-size:clamp(1.5rem,3.2vw,2.1rem);
  color:var(--dark-teal);
  margin:0.5rem 0 0.8rem;
}
.esp-index__lead{
  font-size:1.08rem;
  color:#46605c;
  max-width:760px;
  margin-bottom:2.5rem;
  line-height:1.7;
}
.esp-index__group{ margin-bottom:2.2rem; }
.esp-index__cat{
  font-size:1.15rem;
  color:var(--deep-teal);
  margin-bottom:1rem;
  padding-bottom:0.5rem;
  border-bottom:2px solid #e4f1ee;
  font-weight:700;
}
.esp-index__links{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(290px,1fr));
  gap:0.9rem;
}
.esp-index__link{
  display:flex;
  align-items:center;
  gap:0.9rem;
  background:#fff;
  border:1.5px solid #cfe8e2;
  border-left:4px solid var(--deep-teal);
  border-radius:12px;
  padding:1rem 1.15rem;
  color:var(--dark-teal);
  text-decoration:none;
  font-size:1.02rem;
  font-weight:600;
  box-shadow:0 2px 10px rgba(2,114,118,0.07);
  transition:all .22s ease;
}
.esp-index__link i{
  color:#fff;
  background:var(--deep-teal);
  width:34px; height:34px;
  min-width:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:0.9rem;
  transition:all .22s ease;
}
.esp-index__link::after{
  content:"\f061";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  margin-left:auto;
  color:var(--sage);
  font-size:0.85rem;
  transition:transform .22s ease;
}
.esp-index__link:hover{
  border-color:var(--deep-teal);
  background:var(--deep-teal);
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 8px 22px rgba(2,114,118,0.22);
}
.esp-index__link:hover i{ background:#fff; color:var(--deep-teal); }
.esp-index__link:hover::after{ color:#fff; transform:translateX(4px); }

@media(max-width:600px){
  .esp-index__links{ grid-template-columns:1fr; }
}

/* ============================================================
   BLOCO DE ESPECIALIDADES NA HOME
   ============================================================ */
.home-esp{
  margin-top:3rem;
  padding-top:2.5rem;
  border-top:1px solid #e4f1ee;
}
.home-esp__title{
  font-family:var(--font-head);
  font-size:1.6rem;
  color:var(--dark-teal);
  text-align:center;
  margin-bottom:0.5rem;
}
.home-esp__lead{
  text-align:center;
  color:#5f7671;
  margin-bottom:2rem;
  font-size:1.02rem;
}
.home-esp__cat{
  font-weight:700;
  color:var(--deep-teal);
  font-size:0.9rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
  margin:1.5rem 0 0.8rem;
}
.home-esp__links{
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
}
.home-esp__link{
  display:inline-flex;
  align-items:center;
  background:#fff;
  border:1.5px solid #cfe8e2;
  border-radius:100px;
  padding:0.5rem 1.1rem;
  color:var(--dark-teal);
  text-decoration:none;
  font-size:0.92rem;
  font-weight:600;
  transition:all .2s ease;
}
.home-esp__link:hover{
  background:var(--deep-teal);
  border-color:var(--deep-teal);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 5px 16px rgba(2,114,118,0.2);
}
