.contacto-profesional {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  color: #222;
  padding: 2rem;
  border-top: 4px solid #f1c40f;
}

.contacto-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.datos, .ubicacion {
  flex: 1 1 300px;
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.datos h2, .ubicacion h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
}

.icon {
  font-size: 1.5rem;
}

.datos ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.datos li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.datos a {
  color: #007bff;
  text-decoration: none;
}

.datos a:hover {
  text-decoration: underline;
}

.mapa iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-wrapper {
    flex-direction: column;
  }

  .mapa iframe {
    height: 250px;
  }
}