/* ProvoNet landing — estilo corporativo limpio (referencia visual tipo página pública) */
:root {
  --bg: #f4f6f9;
  --card: #ffffff;
  --text: #1c1e21;
  --muted: #65676b;
  --brand: #0a4f8c;
  --brand-hover: #083d6e;
  --accent: #e8f1fb;
  --border: #e4e6eb;
  --legal-bar: rgba(255, 255, 255, 0.97);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: #fff;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  background: linear-gradient(135deg, var(--brand) 0%, #0d5ba8 100%);
  color: #fff;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}

.site-logo:hover {
  text-decoration: none;
  opacity: 0.95;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 1.5rem;
}

.hero__card {
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.hero__cover {
  height: 140px;
  background: linear-gradient(90deg, #0a4f8c 0%, #1a6cb5 50%, #0a4f8c 100%);
}

.hero__body {
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
}

.hero__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 4px solid var(--card);
  margin-top: -52px;
  margin-bottom: 0.75rem;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--brand);
}

.hero h1 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  line-height: 1.2;
}

.hero__subtitle {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-hover);
  text-decoration: none;
}

.btn--secondary {
  background: var(--accent);
  color: var(--brand);
}

.btn--secondary:hover {
  background: #dceaf8;
  text-decoration: none;
}

.legal-strip {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-strip strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}

.legal-strip nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.legal-strip a {
  color: var(--brand);
  font-weight: 500;
}

main {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.25rem 2rem;
}

.section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.section p {
  margin: 0 0 0.75rem;
  color: #333;
}

.section p:last-child {
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--legal-bar);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

.site-footer {
  margin-top: auto;
  padding: 1.25rem;
  background: #fff;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

/* Legal document pages */
.doc-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.doc-page h1 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.doc-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.doc-page h2 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

.doc-page h3 {
  font-size: 1rem;
  margin: 1rem 0 0.35rem;
}

.doc-page p,
.doc-page ul {
  margin: 0 0 0.75rem;
  color: #333;
}

.doc-page ul {
  padding-left: 1.25rem;
}

.doc-page li {
  margin-bottom: 0.35rem;
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 1.35rem;
  }
}
