/* ============================================================
   NexRisk — Site Institucional
   Design tokens alinhados com o app (brand-700 #00519d etc.)
   ============================================================ */

:root {
  /* Marca — mesmos tons usados no aplicativo NexRisk */
  --brand-50: #eaf2fa;
  --brand-100: #cfe2f4;
  --brand-500: #0e6bc2;
  --brand-600: #0a5da8;
  --brand-700: #00519d;
  --brand-800: #003d75;
  --brand-900: #002a52;

  /* Neutros */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Acento (laranja da marca, mesmo uso do app: destaque leve) */
  --accent-500: #f97316;
  --accent-600: #ea580c;

  --font-sans: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Segoe UI", -apple-system, Roboto, Helvetica, Arial, sans-serif;

  --container-w: 1160px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15, 23, 42, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: #ffffff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  text-wrap: balance;
}

/* +2 (equivalente a ~2px/pt) em cada tamanho, pedido do usuário em 20/08/2026 */
h1 { font-size: clamp(2.125rem, 4vw, 3.125rem); line-height: 1.1; }
h2 { font-size: clamp(1.625rem, 2.7vw, 2.225rem); line-height: 1.2; }
h3 { font-size: 1.275rem; line-height: 1.3; }

p { margin: 0; color: var(--slate-600); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-700); color: #fff; }
.btn-primary:hover { background: var(--brand-800); box-shadow: var(--shadow-md); }
.btn-outline { background: #fff; color: var(--brand-700); border-color: var(--brand-100); }
.btn-outline:hover { border-color: var(--brand-700); }
.btn-accent { background: var(--accent-500); color: #fff; }
.btn-accent:hover { background: var(--accent-600); box-shadow: var(--shadow-md); }
.btn-ghost-inverse { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost-inverse:hover { background: rgba(255,255,255,0.2); }

/* ---------- Header / navegação ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(120deg, var(--brand-900), var(--brand-800));
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-left { display: flex; align-items: center; gap: 28px; min-width: 0; }
.site-header .container { max-width: 1440px; }
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 62px; width: auto; }

/* Menu completo (9 itens, alguns com rótulo longo) só cabe sem quebrar/sobrepor
   a partir de uma tela bem larga -- abaixo disso vira o menu mobile completo, em
   vez de ficar num meio-termo quebrado (achado com o usuário em 20/08/2026). */
.main-nav { display: none; }
@media (min-width: 1360px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: calc(0.85rem + 2px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.nav-link:hover, .nav-item.open .nav-link { color: #fff; background: rgba(255, 255, 255, 0.1); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-700);
  text-decoration: none;
}
.dropdown a:hover { background: var(--slate-50); color: var(--brand-700); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 11px 20px; font-size: 0.88rem; }
.desktop-only-btn { display: none; }
@media (min-width: 760px) { .desktop-only-btn { display: inline-flex; } }

.nav-toggle {
  display: flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
@media (min-width: 1360px) { .nav-toggle { display: none; } }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 2px; background: #fff; position: relative; }
.nav-toggle { flex-direction: column; gap: 4px; }

.mobile-nav {
  border-top: 1px solid var(--slate-200);
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.mobile-nav.open { max-height: 80vh; overflow-y: auto; }
@media (min-width: 1360px) { .mobile-nav { display: none !important; } }
.mobile-nav .container { padding: 14px 24px 22px; display: flex; flex-direction: column; gap: 2px; }
.mobile-group summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 12px 4px; font-weight: 700; font-size: 0.95rem; color: var(--slate-800); cursor: pointer; }
.mobile-group summary::-webkit-details-marker { display: none; }
.mobile-group[open] summary { color: var(--brand-700); }
.mobile-group a { display: block; padding: 9px 12px; color: var(--slate-600); text-decoration: none; font-size: 0.9rem; border-radius: 8px; }
.mobile-group a:hover { background: var(--slate-50); }
.mobile-nav > a.nav-link { padding: 12px 4px; }
.mobile-cta { display: flex; gap: 10px; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--slate-200); }

/* ---------- Barra de trilha (Home > Página) ---------- */
.breadcrumb-bar { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
.breadcrumb-bar .container { display: flex; align-items: center; gap: 8px; padding-top: 14px; padding-bottom: 14px; font-size: 0.85rem; }
.breadcrumb-bar a { color: var(--slate-500); text-decoration: none; font-weight: 600; }
.breadcrumb-bar a:hover { color: var(--brand-700); }
.breadcrumb-bar .current { color: var(--slate-800); font-weight: 600; }
.breadcrumb-bar .sep { color: var(--slate-400); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--brand-900) 0%, var(--brand-800) 45%, var(--brand-700) 100%);
  color: #fff;
  overflow: hidden;
  padding: 0 0 96px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 420px at 88% 12%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(420px 320px at 6% 92%, rgba(255,255,255,0.07), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; text-align: center; max-width: 880px; }
.hero h1 { color: #fff; margin-top: 44px; }
.hero .lede {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-frame {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.45);
}
.hero-frame img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  display: block;
}

/* ---------- Placeholder de imagem (sem banco de fotos ainda) ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-50), var(--slate-100));
  border: 1.5px dashed var(--brand-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--brand-700);
  text-align: center;
  padding: 32px;
  overflow: hidden;
}
.img-placeholder .ph-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1.4rem;
}
.img-placeholder .ph-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; max-width: 220px; color: var(--brand-800); }
.img-placeholder .ph-sub { font-size: 0.7rem; color: var(--slate-500); }
.hero .img-placeholder { aspect-ratio: 16 / 6.2; background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)); border-color: rgba(255,255,255,0.35); }
.hero .img-placeholder .ph-label { color: #fff; }
.hero .img-placeholder .ph-icon { background: rgba(255,255,255,0.16); box-shadow: none; color: #fff; }
.hero .img-placeholder .ph-sub { color: rgba(255,255,255,0.7); }

/* ---------- Mockup de tela do produto (preview ilustrativo, sem prints reais) ---------- */
.app-mockup {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: 0 24px 48px -28px rgba(0, 20, 60, 0.35);
  background: #fff;
}
.app-mockup .mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: linear-gradient(160deg, var(--brand-900), var(--brand-800));
}
.app-mockup .mock-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.28); }
.app-mockup .mock-crumb { margin-left: 10px; color: rgba(255, 255, 255, 0.72); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; }
.app-mockup .mock-body { padding: 20px; background: var(--slate-50); }

.mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.mock-kpi { background: #fff; border: 1px solid var(--slate-200); border-radius: 10px; padding: 11px 13px; }
.mock-kpi-label { font-size: 0.64rem; color: var(--slate-500); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.mock-kpi-value { font-size: 1.25rem; font-weight: 700; color: var(--slate-800); margin-top: 4px; }
.mock-kpi-value.alert { color: #dc2626; }

.mock-panels { display: grid; grid-template-columns: 1.3fr 1fr; gap: 12px; }
.mock-panel { background: #fff; border: 1px solid var(--slate-200); border-radius: 10px; padding: 14px 16px; }
.mock-panel-title { font-size: 0.72rem; font-weight: 700; color: var(--slate-700); margin-bottom: 12px; }

.mock-bars { display: flex; align-items: flex-end; gap: 7px; height: 84px; }
.mock-bars .bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--brand-500); opacity: 0.88; }
.mock-bars .bar.alto { background: var(--accent-500); }
.mock-bars .bar.critico { background: #dc2626; opacity: 0.85; }

.mock-legend { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 10px; font-size: 0.64rem; color: var(--slate-500); }
.mock-legend span { display: inline-flex; align-items: center; gap: 5px; }
.mock-legend .sw { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }

.mock-donut {
  width: 92px; height: 92px; border-radius: 50%; margin: 6px auto 12px;
  background: conic-gradient(var(--brand-700) 0 62%, var(--accent-500) 62% 84%, #dc2626 84% 100%);
  position: relative;
}
.mock-donut::after { content: ""; position: absolute; inset: 16px; background: #fff; border-radius: 50%; }

.mock-rows { display: flex; flex-direction: column; gap: 8px; }
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; background: #fff; border: 1px solid var(--slate-200); border-radius: 8px; font-size: 0.78rem; }
.mock-row .mock-name { font-weight: 600; color: var(--slate-800); }
.mock-row .mock-tag { font-size: 0.64rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.02em; }
.mock-tag.muito-baixo { background: #dcfce7; color: #15803d; }
.mock-tag.baixo { background: #dcfce7; color: #15803d; }
.mock-tag.medio { background: #fef3c7; color: #b45309; }
.mock-tag.alto { background: #ffedd5; color: var(--accent-600); }
.mock-tag.critico { background: #fee2e2; color: #dc2626; }
.mock-tag.injusticado { background: #ede9fe; color: #6d28d9; }

.mock-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.mock-profile { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mock-profile-name { font-weight: 700; color: var(--slate-800); font-size: 0.88rem; }
.mock-profile-role { font-size: 0.72rem; color: var(--slate-500); }

.mock-meter { height: 8px; border-radius: 999px; background: var(--slate-200); overflow: hidden; margin-top: 6px; }
.mock-meter > span { display: block; height: 100%; border-radius: 999px; background: var(--brand-600); }
.mock-meter-row { margin-bottom: 10px; }
.mock-meter-row .mock-meter-label { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--slate-600); }

.mock-table { width: 100%; border-collapse: collapse; font-size: 0.74rem; }
.mock-table thead th { text-align: left; padding: 8px 10px; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--slate-500); border-bottom: 1px solid var(--slate-200); }
.mock-table tbody td { padding: 9px 10px; border-bottom: 1px solid var(--slate-100); color: var(--slate-700); }
.mock-table tbody tr:last-child td { border-bottom: none; }
.mock-name-cell { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--slate-800); }
.mock-avatar-sm { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-600), var(--brand-800)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; flex-shrink: 0; }

.mock-tag.ativo { background: #dcfce7; color: #15803d; }
.mock-tag.pendente { background: #fef3c7; color: #b45309; }
.mock-tag.concluido { background: #dbeafe; color: #1d4ed8; }
.mock-tag.andamento { background: #ffedd5; color: var(--accent-600); }

.mock-action-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.mock-action { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; background: #fff; border: 1px solid var(--slate-200); border-radius: 8px; font-size: 0.76rem; }
.mock-action-text { color: var(--slate-700); }

.mock-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.mock-filter { font-size: 0.64rem; font-weight: 600; color: var(--slate-600); background: #fff; border: 1px solid var(--slate-200); border-radius: 999px; padding: 5px 12px; }

.mock-note { font-size: 0.68rem; color: var(--slate-500); margin-top: 8px; }

/* ---------- Seções gerais ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--slate-50); }
.section-head { max-width: 640px; margin: 0 0 52px; text-align: left; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ---------- Bloco alternado imagem + texto ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split.reverse > .split-media { order: 2; }
  .split.reverse > .split-text { order: 1; }
}
.split + .split { margin-top: 96px; }
.split-media .img-placeholder { aspect-ratio: 4 / 3.1; }
.split-media img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; border-radius: var(--radius); display: block; }
.split-text .eyebrow { margin-bottom: 16px; }
.split-text h2 { margin-bottom: 18px; }
.split-text p + p { margin-top: 14px; }
.split-text ul, .card ul, .section-head ul { margin: 22px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.split-text ul li, .card ul li, .section-head ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--slate-700); }
.split-text ul li .dot, .card ul li .dot, .section-head ul li .dot { flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px; background: var(--brand-50); color: var(--brand-700); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; margin-top: 2px; }
.card ul li { font-size: 0.88rem; }
.split-text .btn { margin-top: 26px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* Grid "O que você consegue acompanhar" -- cards todos do mesmo tamanho (coluna
   fixa, não auto-fit), maiores que os cards padrão, mesma fonte de sempre. */
.tracking-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .tracking-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tracking-grid { grid-template-columns: 1fr; } }
.tracking-grid .card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  padding: 28px 22px;
}
.tracking-grid .card p { font-size: 0.92rem; font-weight: 600; color: var(--slate-800); line-height: 1.4; }

.card .card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.92rem; }

/* ---------- CTA final ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-700));
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-900); color: var(--slate-300); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--slate-400); text-decoration: none; font-size: 0.9rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: var(--slate-400); font-size: 0.9rem; margin-top: 14px; max-width: 260px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--slate-500);
}

/* ---------- Formulário de contato ---------- */
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--slate-700); }
.contact-form input, .contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--slate-800);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand-500); }
.contact-form fieldset { border: 1px solid var(--slate-200); border-radius: 10px; padding: 16px; margin: 0; }
.contact-form legend { font-size: 0.85rem; font-weight: 600; color: var(--slate-700); padding: 0 6px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-top: 8px; }
@media (max-width: 480px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; color: var(--slate-700); }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--brand-700); flex-shrink: 0; }

.contact-alt { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--slate-200); text-align: center; }
.contact-links { display: flex; justify-content: center; gap: 24px; margin-top: 12px; flex-wrap: wrap; }
.contact-links a { font-weight: 600; color: var(--brand-700); text-decoration: none; }
.contact-links a:hover { text-decoration: underline; }

/* ---------- Galeria ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-50), var(--slate-100));
  border: 1.5px dashed var(--brand-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brand-700);
  text-align: center;
  padding: 20px;
}
.gallery-tile .gt-icon { width: 46px; height: 46px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); font-size: 1.2rem; }
.gallery-tile .gt-label { font-size: 0.76rem; font-weight: 700; color: var(--brand-800); max-width: 200px; }
.gallery-tile .gt-sub { font-size: 0.68rem; color: var(--slate-500); }
.gallery-tile.video .gt-icon { background: var(--brand-700); color: #fff; }

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 56px; }

/* ---------- Formulário: aviso de envio ---------- */
.form-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.form-alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---------- Animação de rolagem (fade-in + subida leve) ---------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}
