/* Especialidades */

.titulo-especialidade {
    font-size: 2.5rem;
    text-align: center;
    color: #0D2450;
    margin-bottom: 40px;
    line-height: 1.4;
    font-weight: 300;
}
  
.titulo-especialidade .destaque {
    font-weight: 700;
    color: #0D2450;
}
  

.especialidade {
    position: relative;
    background: #e2e8f0;
    min-height: 75vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}
  
.especialidade::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-image: url('/image/Ativo.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
    transform: scaleX(-1);
}
  
.especialidade-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}
  
.especialidade-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}
  
.especialidade-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
  
.texto {
    flex: 1 1 45%;
    font-size: 1.1rem;
    color: black;
    line-height: 1.7;
    max-width: 500px;
    text-align: left;
}
  
/* Responsivo */
@media (max-width: 768px) {
    .especialidade-content {
      flex-direction: column;
      align-items: center;
    }
  
    .texto {
      max-width: 100%;
    }

    .especialidade::after {
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-image: url('/image/Ativo.webp');
        opacity: 0.1;
    }

    .especialidade-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}