.unidades-section {
text-align: center;
padding: 60px 20px;
background-color: #fff;
}

.unidades-section h2 {
font-size: 2.5rem;
color: #023059;
margin-bottom: 40px;
}

.unidades-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

.unidade-card {
background: #023059; /* fundo azul escuro */
border-radius: 16px;
padding: 15px;
width: 280px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
align-items: center;
color: #ffffff;
}

.unidade-card iframe {
width: 100%;
height: 200px;
border: none;
border-radius: 12px;
margin-bottom: 12px;
}

.unidade-card h3 {
font-size: 1.2rem;
margin-bottom: 5px;
color: #ffffff;
}

.unidade-card p {
font-size: 0.9rem;
margin-bottom: 12px;
color: #ffffff;
}

.btn-whatsapp {
background-color: #056CF2;  /* azul do botão */
color: #ffffff;             /* texto branco */
padding: 8px 16px;
border-radius: 10px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s;
}

.btn-whatsapp:hover {
background-color: #0456bd;
}

@media (max-width: 768px) {
    .unidades-section h2 {
        font-size: 2rem;
        color: #023059;
        margin-bottom: 40px;
    }
}