:root {
  --blue-dark: #0a0f2a;
  --yellow-soft: #f2d675;
}

/* Reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--blue-dark);
  font-family: "Inter", sans-serif;
  color: white;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);

  z-index: 10;
}

.logo-img {
  height: 42px;
  width: auto;
}

.menu a {
  margin-left: 20px;
  color: var(--yellow-soft);
  text-decoration: none;
  transition: 0.2s;
}

.menu a:hover,
.menu a.active {
  color: white;
}

/* CONTENIDO CONTACTO */
.contacto-container {
  margin-top: 120px;
  padding: 0 32px;
  max-width: 700px;
}

.contacto-container h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--yellow-soft);
}

.intro {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contacto-info p {
  font-size: 18px;
  margin: 8px 0;
  line-height: 1.5;
}

.contacto-info strong {
  color: var(--yellow-soft);
}
