.home {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.home-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 20px 40px;
  text-align: center;
}

.logo-hero span {
  font-size: 2.4rem;
}

.logo-hero svg {
  width: 40px;
  height: 25px;
}

.home-subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.home-actions {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-actions .btn {
  padding: 22px 24px;
  font-size: 1.15rem;
  border-radius: 6px;
  width: 100%;
}

.home-actions .btn small {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 2px;
}

.horario {
  max-width: 380px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-2);
}

.horario .estado {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.horario .estado .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-soft);
}

.horario .estado.abierto {
  color: #1e5e2d;
}

.horario .estado.abierto .dot {
  background: #2f9e44;
}

.horario .estado.cerrado {
  color: #7a2018;
}

.horario .estado.cerrado .dot {
  background: #c0392b;
}

.horario p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .logo-hero span {
    font-size: 2.8rem;
  }

  .logo-hero svg {
    width: 46px;
    height: 29px;
  }
}
