/*--------------------------------------------------------------
 * Bloque · Hero Consulta
 *-------------------------------------------------------------*/
.consulta-destacado{
  position:relative;
  width:100%;
  min-height:65vh;
  padding:7rem 2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background-size:cover;
  background-position:center center;
  overflow:hidden;
  isolation:isolate;
}

.consulta-destacado__overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,
              rgba(0,0,0,.10) 0%,
              rgba(0,0,0,.10) 70%);
  mix-blend-mode:multiply;
  z-index:1;
}

.consulta-destacado__content{
  position:relative;
  z-index:2;
  max-width:780px;
  padding-inline:1rem;
}

.consulta-destacado__title{
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-size:clamp(2.3rem,6vw,3.25rem);
  line-height:1.15;
  margin-bottom:1rem;
  text-wrap:balance;
}

.consulta-destacado__text{
  font-family:'Karla',sans-serif;
  font-size:clamp(2rem,2.8vw,1.3rem);
  line-height:1.6;
  max-width:900px;
  margin-inline:auto;
  opacity:.9;
}

@media(max-width:768px){
  .consulta-destacado{padding:5rem 1rem;}
  .consulta-destacado__title{font-size:clamp(1.9rem,7vw,2.4rem);}
  .consulta-destacado__text{font-size:clamp(1.25rem,3.5vw,1.1rem);}
}
