:root {
  --blue: #0092ED;
  --blue-light: #40ADF2;
  --blue-hover: #0078C2;
  --blue-active: #0063A1;
  --navy: #00426B;
  --tint-bg: #F0F8FE;
  --tint-border: #D1EBFC;
  --tint-card: #F9FCFF;
  --ink: #10151A;
  --ink-soft: #5B6874;
  --white: #FFFFFF;
  --fx-black: #000000;
  --cyan: #00C6FF;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 21, 26, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(0, 66, 107, 0.18);
  --shadow-lg: 0 16px 40px -12px rgba(0, 66, 107, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --canvas: #FAFCFF;
}

* { box-sizing: border-box; }

html {
  background: var(--canvas);
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 24px;
}

main { position: relative; z-index: 1; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 9px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand-name strong { font-weight: 800; color: var(--blue); }

.icon-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.18s var(--ease);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 40px 0 32px;
  background:
    radial-gradient(560px 280px at 50% -80px, var(--tint-bg), transparent 70%);
  text-align: center;
  overflow: hidden;
}

/* ---------- Fundo animado (fixo, cobre a página inteira ao rolar) ---------- */

.bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.bg-grid {
  position: absolute;
  inset: -10% -10%;
  background-image:
    linear-gradient(var(--tint-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--tint-border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.4;
  -webkit-mask-image: radial-gradient(60% 50% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(60% 50% at 50% 0%, #000 0%, transparent 75%);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform;
  transform: translateZ(0);
}
.bg-glow-1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  opacity: 0.16;
  animation: glow-pulse 12s ease-in-out infinite;
}
.bg-glow-2 {
  width: 480px;
  height: 480px;
  bottom: -180px;
  right: -140px;
  background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
  opacity: 0.12;
  animation: glow-pulse 14s ease-in-out infinite 2s;
}

.bg-side-glow {
  position: absolute;
  top: 50%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  transform: translateY(-50%) translateZ(0);
  filter: blur(45px);
  will-change: transform;
  background: radial-gradient(circle, var(--blue) 0%, transparent 68%);
}
.bg-side-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px 2px var(--blue);
  opacity: 0.7;
}
.bg-side-glow-left {
  left: -260px;
  opacity: 0.16;
  animation: glow-pulse 16s ease-in-out infinite;
}
.bg-side-glow-right {
  right: -260px;
  opacity: 0.16;
  animation: glow-pulse 18s ease-in-out infinite 3s;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50% { transform: scale(1.15); opacity: 0.22; }
}

.bg-dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  background: var(--blue-light);
  will-change: transform;
}

.bg-dot-white {
  background: var(--blue-light);
}

.bg-dot-1 { width: 9px;  height: 9px;  top: 14%; left: 3%; opacity: 0.32; animation: float-a 8s ease-in-out infinite; }
.bg-dot-2 { width: 6px;  height: 6px;  top: 32%; right: 4%; opacity: 0.28; animation: float-b 10s ease-in-out infinite; }
.bg-dot-3 { width: 7px;  height: 7px;  top: 54%; left: 2%;  opacity: 0.26; animation: float-c 11s ease-in-out infinite; }
.bg-dot-4 { width: 10px; height: 10px; top: 68%; right: 3%; opacity: 0.24; animation: float-a 9s ease-in-out infinite 1.5s; }
.bg-dot-5 { width: 5px;  height: 5px;  top: 84%; left: 4%; opacity: 0.3;  animation: float-b 7.5s ease-in-out infinite 0.8s; }
.bg-dot-6 { width: 8px;  height: 8px;  top: 92%; right: 5%; opacity: 0.26; animation: float-c 10.5s ease-in-out infinite 2s; }
.bg-dot-7 { width: 5px;  height: 5px;  top: 4%;  left: 30%; opacity: 0.24; animation: float-b 9.5s ease-in-out infinite 1.2s; }
.bg-dot-8 { width: 7px;  height: 7px;  top: 46%; right: 30%; opacity: 0.24; animation: float-c 8.5s ease-in-out infinite 0.4s; }
.bg-dot-9 { width: 6px;  height: 6px;  top: 8%;  right: 8%;  opacity: 0.28; animation: float-a 9.5s ease-in-out infinite 0.6s; }
.bg-dot-10 { width: 9px; height: 9px;  top: 24%; left: 34%; opacity: 0.24; animation: float-b 11.5s ease-in-out infinite 1.8s; }
.bg-dot-11 { width: 5px; height: 5px;  top: 60%; left: 22%; opacity: 0.26; animation: float-c 9s ease-in-out infinite 2.4s; }
.bg-dot-12 { width: 8px; height: 8px;  top: 78%; right: 26%; opacity: 0.26; animation: float-a 10.5s ease-in-out infinite 1s; }
.bg-dot-13 { width: 6px; height: 6px;  top: 16%; right: 22%; opacity: 0.26; animation: float-c 10s ease-in-out infinite 0.9s; }
.bg-dot-14 { width: 9px; height: 9px;  top: 38%; left: 16%; opacity: 0.22; animation: float-a 11s ease-in-out infinite 2.2s; }
.bg-dot-15 { width: 5px; height: 5px;  top: 50%; right: 14%; opacity: 0.3;  animation: float-b 8s ease-in-out infinite 1.6s; }
.bg-dot-16 { width: 7px; height: 7px;  top: 74%; left: 40%; opacity: 0.24; animation: float-c 9.5s ease-in-out infinite 0.3s; }
.bg-dot-17 { width: 6px; height: 6px;  top: 88%; left: 12%; opacity: 0.28; animation: float-a 10s ease-in-out infinite 2.6s; }
.bg-dot-18 { width: 8px; height: 8px;  top: 2%;  left: 46%; opacity: 0.22; animation: float-b 12s ease-in-out infinite 1.3s; }
.bg-dot-19 { width: 6px; height: 6px;  top: 20%; left: 60%; opacity: 0.3;  animation: float-c 9s ease-in-out infinite 0.5s; }
.bg-dot-20 { width: 8px; height: 8px;  top: 62%; left: 8%;  opacity: 0.26; animation: float-a 10s ease-in-out infinite 1.1s; }
.bg-dot-21 { width: 5px; height: 5px;  top: 42%; right: 12%; opacity: 0.3;  animation: float-b 8.5s ease-in-out infinite 2s; }
.bg-dot-22 { width: 7px; height: 7px;  top: 10%; left: 12%;  opacity: 0.26; animation: float-c 11s ease-in-out infinite 0.2s; }
.bg-dot-23 { width: 6px; height: 6px;  top: 96%; left: 30%; opacity: 0.28; animation: float-a 9.5s ease-in-out infinite 1.7s; }
.bg-dot-24 { width: 9px; height: 9px;  top: 30%; right: 18%; opacity: 0.24; animation: float-b 10.5s ease-in-out infinite 0.7s; }
.bg-dot-25 { width: 5px; height: 5px;  top: 56%; left: 48%;  opacity: 0.3;  animation: float-c 8s ease-in-out infinite 1.4s; }
.bg-dot-26 { width: 7px; height: 7px;  top: 80%; right: 42%; opacity: 0.26; animation: float-a 11.5s ease-in-out infinite 2.3s; }
.bg-dot-27 { width: 6px; height: 6px;  top: 6%;  right: 38%; opacity: 0.28; animation: float-b 9s ease-in-out infinite 0.4s; }
.bg-dot-28 { width: 8px; height: 8px;  top: 34%; left: 44%;  opacity: 0.26; animation: float-c 10s ease-in-out infinite 1.9s; }
.bg-dot-29 { width: 5px; height: 5px;  top: 70%; right: 6%;  opacity: 0.3;  animation: float-a 8.5s ease-in-out infinite 1.2s; }
.bg-dot-30 { width: 7px; height: 7px;  top: 48%; left: 4%;   opacity: 0.26; animation: float-b 11s ease-in-out infinite 0.8s; }
.bg-dot-31 { width: 6px; height: 6px;  top: 90%; right: 20%; opacity: 0.28; animation: float-c 9.5s ease-in-out infinite 2.1s; }
.bg-dot-32 { width: 9px; height: 9px;  top: 14%; right: 46%; opacity: 0.24; animation: float-a 10.5s ease-in-out infinite 1.6s; }
.bg-dot-33 { width: 5px; height: 5px;  top: 58%; right: 32%; opacity: 0.3;  animation: float-b 8s ease-in-out infinite 0.3s; }
.bg-dot-34 { width: 7px; height: 7px;  top: 26%; left: 6%;   opacity: 0.28; animation: float-c 11.5s ease-in-out infinite 1.4s; }
.bg-dot-35 { width: 6px; height: 6px;  top: 82%; left: 54%;  opacity: 0.26; animation: float-a 9s ease-in-out infinite 2.4s; }
.bg-dot-36 { width: 8px; height: 8px;  top: 40%; right: 4%;  opacity: 0.26; animation: float-b 10s ease-in-out infinite 0.9s; }

@keyframes float-a {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(8px, -18px); opacity: 0.6; }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0); opacity: 0.22; }
  50% { transform: translate(-10px, 16px); opacity: 0.42; }
}
@keyframes float-c {
  0%, 100% { transform: translate(0, 0); opacity: 0.24; }
  50% { transform: translate(12px, 10px); opacity: 0.46; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.fade-up {
  opacity: 0;
  animation: fade-up 0.45s var(--ease) forwards;
}
.fade-up-1 { animation-delay: 0.02s; }
.fade-up-2 { animation-delay: 0.07s; }
.fade-up-3 { animation-delay: 0.12s; }
.fade-up-4 { animation-delay: 0.17s; }
.fade-up-5 { animation-delay: 0.22s; }
.fade-up-6 { animation-delay: 0.27s; }
.fade-up-7 { animation-delay: 0.32s; }
.fade-up-8 { animation-delay: 0.37s; }

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 14px;
  transform: translateX(-4px);
}

.hero-divider {
  width: 2px;
  height: 22px;
  background: linear-gradient(var(--blue), transparent);
  margin-bottom: 14px;
  transform: translateX(-14px);
  animation: pulse-line 2.2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.9; }
}

.hero-brand-mark {
  border-radius: 14px;
  flex-shrink: 0;
}

.hero-brand-name {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.hero-brand-name strong { font-weight: 800; color: var(--blue); }

.hero h1 {
  font-size: clamp(24px, 3.4vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--ink);
  margin: 6px 0 14px;
  max-width: 640px;
}

.hero h1 .hl-blue { color: var(--blue); }

/* ---------- Access cards ---------- */

.access { padding: 8px 0 24px; }

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--tint-border);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}

.card:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--tint-border), 0 10px 26px -10px rgba(0, 146, 237, 0.35);
  border-color: var(--blue);
}

.card:active { transform: translateY(-1px) scale(1); }

.card-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-sm);
}
.card-featured:hover {
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg), 0 10px 26px -10px rgba(0, 146, 237, 0.35);
}
.card-featured .card-title {
  color: var(--blue);
}
.card-title-accent {
  color: var(--ink);
}
.card-title-blue {
  color: var(--blue);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tint-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon { transition: transform 0.22s var(--ease); }
.card:hover .card-icon { transform: scale(1.12) rotate(-4deg); }

.card-icon-photo {
  background: transparent;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
}
.card-icon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.card-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), color 0.2s var(--ease);
}
.card:hover .card-arrow { opacity: 1; transform: translateX(2px); color: var(--blue); }

.card-manager[aria-disabled="true"] {
  cursor: default;
}
.card-manager[aria-disabled="true"]:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--tint-border);
}
.card-manager[aria-disabled="true"] .card-arrow { display: none; }

.manager-soon {
  display: inline-block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--tint-bg);
  border: 1px solid var(--tint-border);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 12px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand-footer .brand-name { font-size: 15px; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--tint-bg);
  border: 1px solid var(--tint-border);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.footer-social svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-social:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.footer-copy {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .access-grid { grid-template-columns: 1fr; }
  .hero { padding: 32px 0 28px; }
}

@media (max-width: 380px) {
  .wrap { padding-inline: 16px; }
  .card { padding: 16px; gap: 12px; }
}

.br-desktop { display: inline; }
.br-mobile { display: none; }
@media (max-width: 640px) {
  .br-desktop { display: none; }
  .br-mobile { display: inline; }
  .hero h1 { font-size: 27px; }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  /* menos elementos animados com blur no mobile = rolagem mais fluida */
  .bg-dot-19, .bg-dot-20, .bg-dot-21, .bg-dot-22, .bg-dot-23, .bg-dot-24,
  .bg-dot-25, .bg-dot-26, .bg-dot-27, .bg-dot-28, .bg-dot-29, .bg-dot-30,
  .bg-dot-31, .bg-dot-32, .bg-dot-33, .bg-dot-34, .bg-dot-35, .bg-dot-36 {
    display: none;
  }

  .bg-glow { filter: blur(26px); }
  .bg-side-glow { filter: blur(30px); }
}

@media (max-width: 340px) {
  .hero h1 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
