:root {
    --navy: #212e41;
    --laranja: #f87203;
    --suave: #9aa3b5;
  }
  * { box-sizing: border-box; }
  body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--navy);
    color: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
  }
  main { max-width: 30rem; text-align: center; }
  .marca {
    width: 190px;
    height: auto;
    margin-bottom: 2rem;
  }
  .etiqueta {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 0.75rem;
  }
  h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
  }
  p { color: var(--suave); margin: 0 0 1rem; }
  .contactos {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9375rem;
  }
  a { color: var(--laranja); text-decoration: none; }
  a:hover, a:focus { text-decoration: underline; }
  a:focus-visible { outline: 2px solid var(--laranja); outline-offset: 3px; }
