/*
 * Landing pública. Sin framework a propósito: es texto e imágenes, y el objetivo
 * es que pese unos pocos cientos de KB. Los colores son los mismos tokens del
 * diseño que usan la app y el portal.
 */
:root {
  --verde: #34c759;
  --texto: #09101d;
  --texto-suave: #747b84;
  --superficie: #f6f6f6;
  --borde: #dadee3;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--texto);
  line-height: 1.6;
}

.cabecera {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

.cabecera h1 { margin: 0.5rem 0 0; font-size: 2.25rem; }
.reclamo { color: var(--texto-suave); margin-top: 0.25rem; }

main { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem 3rem; }

.opciones {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.opciones article {
  background: var(--superficie);
  border: 1px solid var(--borde);
  border-radius: 16px;
  padding: 1.5rem;
}

.opciones h2 { margin-top: 0; font-size: 1.15rem; }

.profesionales {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--borde);
}

.boton {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--verde);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: var(--texto-suave);
  font-size: 0.9rem;
}

footer a { color: inherit; }
