.elementor-1472 .elementor-element.elementor-element-e64408a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7b184da *//* ===== Header con logo centrado y menú debajo ===== */
.df-header {
  position: sticky;
  top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eaeef3;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.df-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column; /* Logo arriba, menú debajo */
  align-items: center;
  gap: 16px;
}

/* Logo */
.df-header__logo img {
  height: 64px;
  max-height: 64px;
  width: auto;
}

/* Menú */
.df-header__nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px; flex-wrap: wrap;
  justify-content: center;
}
.df-header__nav a {
  text-decoration: none;
  font-weight: 600;
  color: #0b2d4d;
  transition: color .15s ease;
}
.df-header__nav a:hover {
  color: #004e92;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .df-header__nav ul { gap: 18px; }
}
@media (max-width: 600px) {
  .df-header__logo img { height: 52px; }
  .df-header__nav ul { flex-direction: column; gap: 12px; text-align: center; }
}/* End custom CSS */