.especialidades-section {
width: 100%;
padding: 60px 20px;
background-color: #002e6d; /* azul de fundo */
color: #fff;
text-align: center;
border-radius: 0 0 0 0; /* apenas superior arredondado */
margin-bottom: 40px; /* ou o valor desejado */
}

.container.especialidades-section {
max-width: none; /* remove a limitação se houver */
}

.especialidades-title {
font-size: 2.8rem;
font-weight: bold;
margin-bottom: 10px;
}

.especialidades-subtitle {
font-size: 1.2rem;
margin-bottom: 40px;
}

.especialidades-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
padding: 0 20px;
}

.especialidade-card {
background-color: #ffffff;
color: #002e6d;
border-radius: 16px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.especialidade-card img {
width: 100%;
height: 160px;
object-fit: cover;
border-radius: 12px;
margin-bottom: 15px;
}

.especialidade-card h3 {
font-size: 1.2rem;
margin-bottom: 8px;
}

.especialidade-card p {
font-size: 0.95rem;
margin-bottom: 15px;
}

.btn-agendar {
display: inline-block;
padding: 10px 20px;
background-color: #0066ff;
color: #fff;
font-weight: bold;
border-radius: 30px;
text-decoration: none;
transition: background 0.3s;
}

.btn-agendar:hover {
background-color: #004ecb;
}  

@media (max-width: 768px) {
    .especialidades-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }
}