@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@700&family=Questrial&display=swap');

:root {
  --rosa-marca: #FCD2E7;
  --rosa-nube: #FDE6F3;
  --rosa-medio: #F9B3DC;
  --fucsia: #F580C5;
  --gris-trazo: #656263;
  --grafito: #393536;
  --blanco: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--rosa-nube);
  color: var(--gris-trazo);
  font-family: 'Questrial', 'Jost', 'Century Gothic', sans-serif;
}

h1, h2, h3 {
  font-family: 'Antonio', 'Oswald', 'Impact', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--grafito);
}

a { color: var(--fucsia); }

.topbar {
  background: var(--blanco);
  border-bottom: 1px solid var(--rosa-medio);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar .marca {
  font-family: 'Antonio', sans-serif;
  font-size: 1.3rem;
  color: var(--grafito);
}

.topbar nav a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--gris-trazo);
  font-size: 0.95rem;
}

.topbar nav a:hover { color: var(--fucsia); }

.contenido {
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 20px;
}

.tarjeta {
  background: var(--blanco);
  border: 1px solid var(--rosa-medio);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th {
  background: var(--rosa-nube);
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid var(--rosa-medio);
}

td {
  padding: 10px;
  border-bottom: 1px solid #f1e4ec;
}

.btn {
  display: inline-block;
  background: var(--fucsia);
  color: var(--blanco);
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-family: 'Questrial', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover { opacity: 0.9; }
.btn:disabled { background: var(--rosa-medio); cursor: not-allowed; }

.btn-secundario {
  background: var(--blanco);
  color: var(--gris-trazo);
  border: 1px solid var(--rosa-medio);
}

.aviso {
  background: #FFF9E4;
  border: 1px solid #FDE8BE;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.alerta {
  background: var(--rosa-marca);
  border: 1px solid var(--fucsia);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
}

.pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: var(--rosa-nube);
  border: 1px solid var(--rosa-medio);
}

.pill-ok { background: #EBF8F4; border-color: #BFE9E4; }
.pill-error { background: var(--rosa-marca); border-color: var(--fucsia); }

form.login {
  max-width: 360px;
  margin: 80px auto;
}

input[type=text], input[type=email], input[type=password], select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--rosa-medio);
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: 'Questrial', sans-serif;
}

label { font-size: 0.9rem; color: var(--gris-trazo); }
