:root {
  --blue1: #2193b0;
  --blue2: #6dd5ed;
  --ink: #0b1026;
  --gold: #ffd700;
  --cta: #ffb347;
}

/* Reset básico */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: linear-gradient(90deg, #2c003e, #120078);
  line-height: 1.5;
}

/* ---------------- HEADER & HERO ---------------- */
header.hero {
  position: relative;
  text-align: center;
  padding: 120px 20px 50px;
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
}
header.hero .logo {
  width: 480px;
  max-width: 90vw;
  margin-bottom: 30px;
}
header.hero h1 {
  font-size: 4em;
  margin-bottom: 6px;
}
header.hero .tagline {
  font-size: 1.6em;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Header reducido (privacidad.html) */
header.mini {
  padding: 40px 20px;
}
header.mini .logo {
  width: 200px;
  max-width: 80vw;
  margin-bottom: 20px;
}
header.mini h1 {
  font-size: 2.2em;
}

/* ---------------- SECCIONES ---------------- */
section.contact, main {
  padding: 64px 20px;
  background: linear-gradient(90deg, #1f3c88, #2193b0);
  text-align: center;
}

section.contact h2, main h2 {
  margin-bottom: 8px;
  color: var(--gold);
}

section.contact p.lead {
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

main .content {
  max-width: 900px;
  margin: auto;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
  text-align: left;
}

/* ---------------- FORMULARIO ---------------- */
form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}
label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #111;
}
input::placeholder, textarea::placeholder {
  color: #666;
}
.row {
  display: flex;
  gap: 12px;
}
.row > * {
  flex: 1;
}
.consent {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin: 8px 0 14px;
  font-size: .95em;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
button {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 28px;
  background: var(--cta);
  color: #000;
  font-weight: 700;
  font-size: 1.05em;
  cursor: pointer;
}
button:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.status {
  margin-top: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* ---------------- FOOTER ---------------- */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  font-size: .9em;
}
footer a {
  color: var(--gold);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* ---------------- REDES SOCIALES ---------------- */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.social-icons a svg {
  width: 32px;
  height: 32px;
  fill: white;
  transition: fill 0.3s;
}
.social-icons a:hover svg {
  fill: var(--gold);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:768px) {
  header.hero h1 { font-size: 2.5em; }
  header.hero .tagline { font-size: 1.1em; }
  header.hero .logo { width: 300px; }
  .row { flex-direction: column; }
}
@media (max-width:480px) {
  header.hero .logo { width: 240px; }
}
