:root {
  --adhoc-violeta:    #7C6CD8;
  --adhoc-lila:       #BCAFEF;
  --adhoc-lila-light: #DED7F7;
  --adhoc-coral:      #FF7348;
  --adhoc-amarillo:   #FEA912;
  --adhoc-crema:      #E9E5DF;
  --adhoc-crema-light:#F7F5F3;
  --adhoc-negro:      #191919;
  --adhoc-gris:       #2D2D2D;
  --adhoc-blanco:     #FFFFFF;
  --font-body:    'Varta', sans-serif;
  --font-display: 'Corben', serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--adhoc-negro);
  background: var(--adhoc-blanco);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.topbar { padding: 28px 40px; }
.topbar img { height: 32px; display: block; }
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.layout {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1040px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.illustration { flex: 0 0 340px; text-align: center; }
.content { flex: 1; min-width: 320px; max-width: 520px; }
.badge {
  display: inline-block;
  border-radius: 999px;
  background: var(--adhoc-amarillo);
  color: var(--adhoc-negro);
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}
h1 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 .accent { color: var(--adhoc-coral); }
.subtitle {
  font-size: 18px;
  color: var(--adhoc-gris);
  line-height: 1.55;
  margin-bottom: 24px;
}
.eco-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--adhoc-crema-light);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--adhoc-gris);
  margin-bottom: 32px;
}
.eco-pill .dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--adhoc-lila-light);
  color: var(--adhoc-violeta);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.loader-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 4px solid var(--adhoc-crema-light);
  border-top-color: var(--adhoc-coral);
  animation: spin 0.9s linear infinite;
  flex-shrink: 0;
}
.loader-text {
  font-size: 14px;
  color: var(--adhoc-gris);
}
/* Ilustración estática */
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 720px) {
  h1 { font-size: 32px; }
  .illustration { flex: 0 0 220px; }
  .illustration svg { width: 200px; height: auto; }
}
