
/* NUDA — Página en construcción
   Replace /assets/azul.png with the real logo provided by the client.
*/

:root{
  --bg: #F6F2EC;           /* base neutra y cálida */
  --text: #2e2e2b;
  --muted: #6a6a65;
  --accent-ocre: #C5A02C;  /* mostaza terroso */
  --accent-blue: #476178;  /* azul plomo/gris azulado */
  --accent-green: #8BAA8B; /* verde salvia */
}

*{ box-sizing: border-box; }

html{
  font-size: 16px;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Georgia", "Times New Roman", serif; /* serif serena */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card{
  max-width: 860px;
  width: 100%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(71,97,120,0.18);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.logo{
  display: block;
  margin: 0 auto 20px;
  width: 160px;
  height: auto;
}

.tag{
  display:inline-block;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(71,97,120,.08);
  border: 1px solid rgba(71,97,120,.18);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 14px;
}

h1{
  font-size: clamp(2.1rem, 2.2rem + 1vw, 3.2rem);
  line-height: 1.1;
  margin: 10px 0 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.lead{
  font-size: clamp(1rem, .95rem + .5vw, 1.25rem);
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto 26px;
  max-width: 52ch;
}

.manifesto{
  margin: 28px auto 0;
  padding: 18px 16px;
  border-left: 4px solid var(--accent-ocre);
  color: var(--text);
  background: rgba(197,160,44,.08);
  border-radius: 10px;
  max-width: 60ch;
  text-align: left;
}

.footer{
  margin-top: 32px;
  font-size: .9rem;
  color: var(--muted);
}

.footer a{
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px dashed rgba(71,97,120,.4);
}

.footer a:hover{
  border-bottom-style: solid;
}

.btn{
  display:inline-block;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-blue);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.1);
  transition: transform .15s ease, filter .2s ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

@media (prefers-color-scheme: dark){
  body{ background: #111315; color: #e7e7e7; }
  .card{ background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
  .lead{ color: #bdbdbd; }
  .manifesto{ background: rgba(197,160,44,.12); }
  .footer{ color: #bdbdbd; }
}
