/* ============================================================
   r4 SOLUTION — LANDING (estilo mercury) · MONOCROMÁTICO
   #0A0A0C (âncora) + branco + cinzas
   ============================================================ */
:root {
  --bg: #FFFFFF;
  --bg-soft: #EEF4F4;
  --bg-softer: #F5F9F9;
  --bg-tint: #ECF3F3;
  --ink: #052A35;
  --ink-2: #2E4A52;
  --muted: #5C7177;
  --faint: #9FB1B4;
  --border: rgba(0, 45, 58, .12);
  --border-soft: rgba(0, 45, 58, .07);
  --grid: rgba(0, 45, 58, .14);
  --accent: #0E7C8B;
  --accent-ink: #014A5C;
  --accent-soft: rgba(14, 124, 139, .08);
  --shadow: 0 2px 6px rgba(0, 45, 58, .07), 0 18px 50px rgba(0, 45, 58, .12);
  --shadow-lg: 0 8px 24px rgba(0, 45, 58, .12), 0 40px 80px rgba(0, 45, 58, .18);
  --dark: #002D3A;
  --on-dark: #EAF3F3;
  --on-dark-2: rgba(234, 243, 243, .64);
  --dark-border: rgba(234, 243, 243, .12);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --r: 16px;
  --r-lg: 22px;
  --r-pill: 9999px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  transition: background .25s, color .25s
}

a {
  text-decoration: none;
  color: inherit
}

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.08;
  color: var(--ink)
}

.num {
  font-variant-numeric: tabular-nums
}

.money {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -.02em
}

.money .cur {
  font-size: .5em;
  font-weight: 500;
  color: var(--muted);
  margin-right: 5px
}

.money sup {
  font-size: .5em;
  font-weight: 600;
  top: -.62em;
  position: relative;
  margin-left: 1px;
  color: var(--ink-2)
}

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted)
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .12s, border-color .15s
}

.pill:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px
}

.pill-primary {
  background: var(--accent);
  color: var(--bg)
}

.pill-primary:hover {
  background: var(--accent-ink)
}

.pill-ghost {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--border)
}

.pill-ghost:hover {
  background: var(--bg-soft)
}

.on-dark .pill-primary {
  background: #fff;
  color: #0A0A0C
}

.on-dark .pill-primary:hover {
  background: #E8E8EA
}

.on-dark .pill-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--dark-border)
}

.on-dark .pill-ghost:hover {
  background: rgba(255, 255, 255, .06)
}

.frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg)
}

.frame .bar {
  height: 38px;
  background: #F3F3F4;
  border-bottom: 1px solid rgba(10, 10, 12, .08);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px
}

.frame .bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #D7D7DA;
  display: block
}

.frame .bar .url {
  margin-left: 12px;
  flex: 1;
  height: 22px;
  background: #fff;
  border: 1px solid rgba(10, 10, 12, .08);
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 11px;
  color: #8A8A92;
  max-width: 300px
}

.frame img {
  width: 100%;
  display: block
}

/* ===== BLOCO ESCURO DO TOPO ===== */
.dark-block {
  background: var(--dark);
  color: var(--on-dark)
}

.topbar {
  border-bottom: 1px solid var(--dark-border);
  font-size: 12.5px;
  color: var(--on-dark-2)
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 16px
}

.topbar .l {
  display: flex;
  align-items: center;
  gap: 8px
}

.topbar .l::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
  animation: pulse 2.4s infinite
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
  }
}

.topbar b {
  color: var(--on-dark);
  font-weight: 600
}

.topbar a {
  color: #fff;
  font-weight: 600
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--dark) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dark-border)
}

header.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.brand img {
  height: 30px;
  width: auto;
  display: block
}

.nav-menu {
  display: flex;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--on-dark-2);
  align-items: center;
}

.nav-menu > a, .dropdown-toggle {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  transition: all 0.2s;
}

.nav-menu > a:hover, .dropdown-toggle:hover {
  color: #fff;
}

/* Dropdown Container */
.nav-dropdown {
  position: relative;
}

/* Active State for Dropdown Trigger */
.nav-dropdown:hover .dropdown-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Caret Icon */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
  margin-top: 2px;
}

.nav-dropdown:hover .caret {
  transform: rotate(180deg);
}

/* Dropdown Menu Box */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: #013240; /* Petróleo elevado — superfície do dropdown */
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 100;
  width: 540px; /* Largura para 2 colunas */
}

/* Mostra no hover */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}

.dropdown-grid {
  display: flex;
  gap: 28px;
}

.dropdown-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-col.border-left {
  border-left: 1px solid var(--dark-border);
  padding-left: 28px;
}

.dropdown-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 600;
  padding-left: 12px;
}

/* Items do Dropdown */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  color: var(--on-dark-2);
  transition: background 0.15s;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.item-text {
  display: flex;
  flex-direction: column;
}

.item-text b {
  font-size: 14.5px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.item-text span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* Highlight Card na Coluna Direita */
.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-card b {
  font-size: 15px;
  color: #fff;
}

.highlight-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.sparkle {
  font-size: 18px;
}

/* Produtos — accordion dentro do dropdown (sem navegação) */
.dd-acc {
  display: flex;
  flex-direction: column;
}

.dd-acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: var(--on-dark-2);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.dd-acc-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dd-acc-toggle .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dd-acc-toggle b {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
}

.dd-acc-toggle .dd-acc-logo {
  height: 22px;
  width: auto;
  margin-right: auto;
  flex-shrink: 0;
}

.dd-acc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.dd-acc.is-open .dd-acc-icon {
  transform: rotate(45deg);
}

.dd-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dd-acc.is-open .dd-acc-panel {
  grid-template-rows: 1fr;
}

.dd-acc-inner {
  overflow: hidden;
  min-height: 0;
}

.dd-acc-inner p {
  margin: 0;
  padding: 2px 12px 12px 34px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* Logo no lugar do antigo card "Tudo conectado" */
.dd-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
}

.dd-logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
}

/* Desktop: o dropdown de produtos vira hover → painel "Destaque".
   O acordeon inline (painel + ícone "+") fica só no menu mobile (.m-nav). */
.dropdown-menu .dd-acc-panel {
  display: none;
}

.dropdown-menu .dd-acc-icon {
  display: none;
}

/* Painel "Destaque" — detalhe do produto sob hover (default = logo r4 Solution) */
.dd-feature-detail {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 14px;
}

.dd-feature-detail .dd-feature-logo {
  height: 30px;
  width: auto;
  max-width: none;
}

.dd-feature-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--on-dark-2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  margin: 5px 0
}

.hero {
  position: relative;
  text-align: center;
  padding: 72px 0 0;
  overflow: hidden;
  height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
}

.hero .wrap {
  position: relative;
  z-index: 2
}

.hero .kicker {
  color: var(--on-dark-2);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.hero .kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff
}

.hero-logo {
  display: block;
  width: auto;
  height: clamp(76px, 9vw, 116px);
  margin: 0 auto 26px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.4vw, 64px);
  max-width: 16ch;
  margin: 0 auto 22px
}

.hero p.lead {
  color: var(--on-dark-2);
  font-size: 19px;
  max-width: 54ch;
  margin: 0 auto 32px
}

.hero-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap
}

.hero-form input {
  flex: 1;
  min-width: 220px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-pill);
  padding: 13px 20px
}

.hero-form input::placeholder {
  color: var(--on-dark-2)
}

.hero-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1)
}

.hero-sub {
  margin-top: 14px;
  font-size: 13px;
  color: var(--on-dark-2)
}

.hero-sub a {
  color: #fff;
  font-weight: 600
}

.siri {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 0
}

.hero > .wrap {
  position: relative;
  z-index: 2
}

#siri-canvas {
  position: absolute;
  inset: 0
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--dark));
  pointer-events: none;
  z-index: 1
}

.marquee {
  padding: 56px 0 64px;
  position: relative
}

.marquee .lbl {
  text-align: center;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--on-dark-2);
  margin-bottom: 36px
}

.marquee-track {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.marquee-row {
  display: flex;
  flex: none;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  animation: scroll 30s linear infinite
}

.marquee-row img {
  height: 48px;
  width: auto;
  opacity: .6;
  transition: opacity .2s
}

.marquee-row img:hover {
  opacity: 1
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-100%)
  }
}

/* ===== SEÇÕES CLARAS ===== */
.section {
  padding: 88px 0
}

.intro {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  text-align: left
}

.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 180px 0
}

.intro h2 {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 20ch;
  margin: 0 0 16px;
  line-height: 1.1;
  color: #fff
}

.intro p {
  font-size: 18px;
  max-width: 44ch;
  margin: 0;
  line-height: 1.6;
  color: var(--on-dark-2)
}

.intro-image {
  display: flex
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  display: block
}

@media(max-width:900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .intro h2,
  .intro p {
    margin-left: auto;
    margin-right: auto
  }
}

.showcase {
  overflow: hidden
}

.feature .wrap {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 64px;
  align-items: center
}

.feature.flip .copy {
  order: 2
}

.feature.flip .shot {
  order: 1
}

.feature .copy .kicker {
  margin-bottom: 16px;
  display: block
}

.feature .copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 16px
}

.feature .copy p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 22px;
  max-width: 46ch
}

.feature .copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px
}

.feature .copy li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2)
}

.feature .copy li svg {
  flex: none;
  color: var(--ink);
  margin-top: 3px
}

.feature .copy .link {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px
}

.feature .copy .link:hover {
  border-color: var(--ink)
}

.stats {
  background: var(--dark);
  color: #fff;
  padding: 64px 0
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center
}

.stats .s b {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 600;
  display: block;
  letter-spacing: -.02em
}

.stats .s span {
  font-size: 14px;
  color: var(--on-dark-2);
  margin-top: 8px;
  display: block
}

.stats .s .money sup,
.stats .s .money .cur {
  color: var(--on-dark-2)
}

.caps {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft)
}

.caps .head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px
}

.caps .head h2 {
  font-size: clamp(28px, 3.4vw, 42px)
}

.caps .head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 17px
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.cap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px
}

.cap .tile {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 16px
}

.cap h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 7px
}

.cap p {
  font-size: 14px;
  color: var(--muted)
}

.final {
  padding: 104px 0;
  border-top: 1px solid var(--border)
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
  text-align: left
}

@media(max-width:900px) {
  .final-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 64px
  }
}

.final-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%
}

.final-content .kicker {
  color: var(--ink-2);
  margin-bottom: 24px;
  display: inline-block;
  letter-spacing: 0.1em;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600
}

.final-content h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  margin: 0 0 20px;
  line-height: 1.05;
  letter-spacing: -0.03em
}

.final-content p.lead {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 44ch
}

.final-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px
}

.final-content .reg {
  font-size: 13px;
  color: var(--faint);
  max-width: 56ch;
  line-height: 1.6;
  margin-bottom: 0
}

@media(max-width:900px) {

  .final-content h2,
  .final-content p.lead,
  .final-content .reg {
    margin-left: auto;
    margin-right: auto
  }

  .final-actions {
    justify-content: center
  }
}

.final-form-box {
  padding-top: 44px
}

@media(max-width:900px) {
  .final-form-box {
    padding-top: 0
  }
}

/* Clean Form */
.clean-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0
}

.clean-form-fields {
  display: flex;
  flex-direction: column;
  gap: 36px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

@media(max-width:560px) {
  .form-row {
    grid-template-columns: 1fr
  }
}

.input-group {
  display: flex;
  flex-direction: column;
  text-align: left
}

.input-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px
}

.input-group input,
.input-group textarea {
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0 0 12px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.2s
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: var(--faint)
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--ink)
}

.input-group textarea {
  resize: vertical;
  min-height: 30px
}

.btn-submit {
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: var(--r-pill);
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
  font-family: var(--font-body);
  transition: background 0.2s;
  width: 240px;
  max-width: 100%
}

.btn-submit:hover {
  background: #014A5C
}

@media(max-width:900px) {
  .btn-submit {
    margin-left: auto;
    margin-right: auto
  }
}

footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 32px;
  font-size: 14px;
  color: var(--on-dark-2)
}

.foot-grid {
  display: grid;
  /* Navegue/Produtos (texto curto) mais estreitas; Contato/Legal (e-mails longos)
     mais largas para os endereços não quebrarem linha. */
  grid-template-columns: 1.6fr 0.7fr 0.9fr 1.5fr 1.45fr;
  gap: 40px;
  padding-bottom: 40px
}

.foot-grid h4 {
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
  margin-bottom: 16px
}

.foot-grid a,
.foot-grid li {
  display: block;
  padding: 4px 0;
  color: var(--on-dark-2);
  list-style: none
}

.foot-grid a:hover {
  color: #fff
}

/* produtos do rodapé sem link por ora: mesmo visual dos links, mas sem clique/hover */
.foot-grid .foot-static {
  display: block;
  padding: 4px 0;
  color: var(--on-dark-2);
  cursor: default
}

.foot-ic-svg {
  width: 15px;
  height: 15px;
  vertical-align: -.2em;
  margin-right: 8px;
  opacity: .65;
  flex-shrink: 0;
}

.foot-grid p {
  max-width: 34ch;
  color: var(--on-dark-2)
}

.foot-brand img {
  height: 28px;
  margin-bottom: 16px;
  filter: none
}

.foot-reg {
  border-top: 1px solid var(--dark-border);
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--faint);
  line-height: 1.6
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--faint)
}

@media(max-width:1000px) {
  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px
  }

  .cap-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:860px) {
  .nav-menu {
    display: none
  }

  .burger {
    display: block
  }

  .nav-right .pill {
    display: none
  }

  .feature .wrap {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .feature.flip .copy {
    order: 1
  }

  .feature.flip .shot {
    order: 2
  }

  .section {
    padding: 64px 0
  }

  .topbar .hide-m {
    display: none
  }

  .siri {
    height: 180px
  }
}

@media(max-width:560px) {
  .cap-grid {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats .wrap {
    grid-template-columns: 1fr 1fr
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    transition: none !important
  }

  .marquee-row {
    animation: none !important
  }
}

/* ============================================================
   SHOWCASE — uma seção (abas + carrossel) p/ as telas do painel
   ============================================================ */
.showcase {
  text-align: center
}

.show-head {
  max-width: 620px;
  margin: 0 auto 28px
}

.show-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 14px
}

.show-head p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 14px
}

.show-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg-soft);
  margin-bottom: 26px;
  flex-wrap: wrap;
  justify-content: center
}

.show-tab {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: .18s
}

.show-tab:hover {
  color: var(--ink)
}

.show-tab.is-active {
  background: var(--ink);
  color: var(--bg)
}

.show-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto
}

.show-frame {
  flex: 1;
  min-width: 0
}

.show-imgs {
  position: relative;
  width: 100%;
  aspect-ratio: 1320/825;
  background: #fff
}

.show-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity .5s ease
}

.show-img.is-active {
  opacity: 1
}

.show-arrow {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: .18s;
  display: flex;
  align-items: center;
  justify-content: center
}

.show-arrow:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink)
}

.show-cap {
  color: var(--muted);
  font-size: 15px;
  max-width: 52ch;
  margin: 22px auto 0;
  min-height: 44px
}

.show-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px
}

.show-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: .2s
}

.show-dots .dot.is-active {
  background: var(--ink);
  transform: scale(1.15)
}

/* ============================================================
   PLATAFORMA — grid isométrico com hover
   ============================================================ */
.plataforma {
  text-align: center;
  overflow: hidden
}

.plataforma .head {
  max-width: 640px;
  margin: 0 auto
}

.plataforma .head h2 {
  font-size: clamp(28px, 3.4vw, 42px)
}

.plataforma .head p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 14px
}

.iso {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 60px auto -64px;
  aspect-ratio: 1920/1080
}

.iso .gridbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.iso .gridbg line {
  stroke: var(--grid);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke
}

.node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 0;
  height: 0;
  outline: none
}

.node .tile {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 186px;
  transform: translate(-50%, -50%) scale(.82);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: var(--node-color, var(--ink));
  opacity: 0;
  transition: opacity .28s ease, transform .28s cubic-bezier(.2, .8, .25, 1);
  box-shadow: 0 30px 52px rgba(10, 10, 12, .26)
}

.node .ico {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  max-width: none;
  transform: translate(-50%, -56%);
  transition: filter .25s ease, transform .28s cubic-bezier(.2, .8, .25, 1);
  pointer-events: none;
  z-index: 1;
  overflow: visible
}

.node .connector {
  position: absolute;
  left: 50%;
  bottom: 103px;
  width: 1.5px;
  height: 0;
  background: var(--node-color, var(--ink));
  transform: translateX(-50%);
  transform-origin: bottom;
  transition: height .28s ease .04s;
  opacity: .9
}

.node .label {
  position: absolute;
  left: 50%;
  bottom: 140px;
  transform: translateX(-50%) translateY(8px);
  width: 280px;
  text-align: left;
  opacity: 0;
  transition: opacity .26s ease, transform .26s ease;
  pointer-events: none;
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(10, 10, 12, .08);
  z-index: 10;
}

.node .label b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px
}

.node .label span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5
}

.node:hover,
.node:focus-visible {
  z-index: 5
}

.node:hover .tile,
.node:focus-visible .tile {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1)
}

.node:hover .ico,
.node:focus-visible .ico {
  filter: none;
  transform: translate(-50%, -59%)
}

.node:hover .connector,
.node:focus-visible .connector {
  height: 64px
}

.node:hover .label,
.node:focus-visible .label {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

.node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 186px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  cursor: pointer
}

@media(max-width:760px) {
  .show-stage {
    gap: 6px
  }

  .show-arrow {
    width: 38px;
    height: 38px;
    font-size: 19px
  }

  .iso {
    aspect-ratio: auto;
    max-width: 560px;
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left
  }

  .iso .gridbg {
    display: none
  }

  .node {
    position: relative;
    transform: none;
    left: auto !important;
    top: auto !important;
    width: auto;
    height: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 3px solid var(--node-color, var(--ink));
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 1px 2px rgba(10, 10, 12, .04)
  }

  .node .tile,
  .node .ico,
  .node .connector {
    display: none
  }

  .node .label {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    width: auto;
    left: auto;
    bottom: auto;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none
  }

  .node .label > div {
    margin-bottom: 11px !important
  }

  .node .label img {
    height: 30px !important
  }

  .node .label span {
    font-size: 14.5px;
    line-height: 1.55
  }

  .node::after {
    display: none
  }
}

/* ============================================================
   ANIMAÇÕES (estilo eloqwnt) — reveal no scroll + entrada do hero
   ============================================================ */
/* ---- reveals no scroll: entradas variadas, fluidas, SEM blur ---- */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, opacity
}

.reveal.r-left {
  transform: translateX(-48px)
}

.reveal.r-right {
  transform: translateX(48px)
}

.reveal.r-scale {
  transform: translateY(18px) scale(.94)
}

.reveal.r-fade {
  transform: none
}

.reveal.is-in {
  opacity: 1;
  transform: none
}

/* filhos revelados em cascata (um após o outro) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--si, 0) * 90ms);
  will-change: transform, opacity
}

.reveal-stagger.is-in > * {
  opacity: 1;
  transform: none
}

/* entrada do hero no carregamento (sobe com fade, escalonado) */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ----- headline revelado palavra a palavra (estilo eloqwnt) ----- */
.reveal-words .rw {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: .14em;   /* folga p/ descendentes (g, p, j) dentro do recorte */
  margin-bottom: -.14em    /* mantém o espaçamento de linha original */
}

.reveal-words.done .rw {
  overflow: visible        /* libera após animar: nada é cortado em resize */
}

.reveal-words .rw-i {
  display: inline-block;
  transform: translateY(118%);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
  will-change: transform
}

.reveal-words.go .rw-i {
  transform: none
}

.hero .kicker,
.hero-logo,
.hero h1,
.hero p.lead,
.hero-form,
.hero-sub {
  opacity: 0;
  animation: riseIn .9s cubic-bezier(.16, 1, .3, 1) forwards
}

.hero .kicker {
  animation-delay: .1s
}

.hero-logo {
  animation-delay: .1s
}

.hero h1 {
  animation-delay: .22s
}

.hero p.lead {
  animation-delay: .5s
}

.hero-form {
  animation-delay: .44s
}

.hero-sub {
  animation-delay: .56s
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.siri {
  opacity: 0;
  animation: fadeIn 1.4s ease .5s forwards
}

.marquee {
  opacity: 0;
  animation: fadeIn 1s ease .7s forwards
}

/* logo GIGANTE no rodapé */
.foot-mega {
  margin-top: 54px;
  line-height: 0
}

.foot-mega img {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: block;
  filter: invert(1) brightness(1.1);
  opacity: 0.15
}

@media(max-width:760px) {
  .foot-mega {
    margin-top: 36px
  }
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none
  }

  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none
  }

  .reveal-words .rw { overflow: visible !important }
  .reveal-words .rw-i { transform: none !important; transition: none !important }

  .hero .kicker,
  .hero h1,
  .hero p.lead,
  .hero-form,
  .hero-sub,
  .siri,
  .marquee {
    opacity: 1 !important;
    animation: none !important
  }
}

/* ============================================================
   WAVE TOOLTIP
   ============================================================ */
.wave-tooltip {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.1s;
  background: rgba(0, 30, 40, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
  color: var(--on-dark-2);
  font-family: var(--font-body);
  font-size: 13px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10;
  min-width: 160px;
  transform: translate(-50%, calc(-100% - 12px));
  text-align: left;
}

.wave-tooltip.is-active {
  opacity: 1;
}

.wave-tooltip .tt-type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.wave-tooltip .tt-amount {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.wave-tooltip .tt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 12px;
}

.wave-tooltip .tt-row span:last-child {
  color: #fff;
  font-weight: 500;
}

/* ===== FAQ / PRIVACY ===== */
.faq {
  padding: 104px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}

@media(max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq-head h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-top: 16px;
  max-width: 14ch;
  line-height: 1.05;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-soft);
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 32px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
}

.faq-toggle .num {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  width: 60px;
  flex: none;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  flex: 1;
  padding-right: 24px;
}

.faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.3s ease, background 0.2s;
  color: var(--ink);
}

.faq-icon svg {
  transition: transform 0.3s ease;
}

.faq-toggle:hover .faq-icon {
  background: var(--border-soft);
}

.faq-item.is-active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-inner p {
  padding-left: 60px;
  padding-bottom: 32px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}
/* ============================================================
   MELHORIAS DE RESPONSIVIDADE (mobile) — adicionado
   ============================================================ */

/* trava de overflow horizontal (não quebra o header sticky) */
body { overflow-x: clip; }

/* trava o scroll do fundo quando o menu mobile está aberto */
body.menu-open { overflow: hidden; }

/* ---------- Burger vira "X" quando aberto ---------- */
.burger span { transition: transform .25s ease, opacity .2s ease; transform-origin: center; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Painel de menu mobile ---------- */
.m-nav {
  position: fixed;
  left: 0; right: 0; top: 64px; bottom: 0;
  z-index: 49;                     /* abaixo do header (50): burger continua clicável */
  background: color-mix(in srgb, var(--dark) 97%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
}
.m-nav.is-open { opacity: 1; visibility: visible; transform: none; }

.m-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px 48px;
  display: flex;
  flex-direction: column;
}
.m-link {
  display: block;
  padding: 17px 6px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--on-dark);
  border-bottom: 1px solid var(--dark-border);
}
.m-link:active { color: #fff; }

.m-section { padding: 6px 0 6px; border-bottom: 1px solid var(--dark-border); }
.m-label {
  display: block;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  padding: 16px 6px 8px;
}
.m-prod {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 6px; border-radius: 10px;
  color: var(--on-dark-2);
}
.m-prod:active { background: rgba(255, 255, 255, .05); }
.m-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.m-prod-text { display: flex; flex-direction: column; line-height: 1.25; }
.m-prod-text b { color: #fff; font-size: 16px; font-weight: 600; }
.m-prod-text em { font-style: normal; font-size: 13px; color: var(--muted); }

/* Produtos accordion no menu mobile */
.m-nav .dd-acc-toggle { padding: 12px 6px; }
.m-nav .dd-acc-toggle b { font-size: 16px; }
.m-nav .dd-acc-toggle .dot { width: 9px; height: 9px; }
.m-nav .dd-acc-inner p { padding: 0 6px 14px 29px; font-size: 14px; }

.m-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.m-cta .pill { width: 100%; justify-content: center; padding: 15px 24px; font-size: 16px; }

/* nunca exibir o painel no desktop */
@media (min-width: 861px) { .m-nav { display: none !important; } }

/* ---------- Ajustes de layout mobile ---------- */
@media (max-width: 860px) {
  header.nav .wrap { height: 64px; }
  .brand img { height: 26px; }
  .m-nav { top: 64px; }

  /* HERO: nada de 100vh (corta atrás da barra do navegador) */
  .hero {
    height: auto;
    min-height: calc(100vh - 64px);   /* fallback */
    min-height: calc(100svh - 64px);  /* usa altura visível real */
    padding: 36px 0 0;
  }
  .hero-logo { margin-bottom: 18px; }
  .hero h1 { margin-bottom: 16px; }
  .hero p.lead { font-size: 16.5px; margin-bottom: 24px; }
  .siri { position: absolute; inset: 0; height: auto; margin: 0; }

  /* INTRO: tira o vazio gigante (era padding 180px) */
  .intro-content { padding: 72px 0 28px; }
  .intro-image { justify-content: center; align-items: center; }
  .intro-image img { height: auto; max-height: 340px; width: auto; object-position: center; }
}

@media (max-width: 560px) {
  .intro-content { padding: 52px 0 12px; }
  .intro-image img { max-height: 240px; }
  /* o bullet do kicker fica solto à esquerda quando o texto quebra em 2 linhas */
  .hero .kicker::before { display: none; }
  .hero .kicker { font-size: 12px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .final-content h2 { font-size: clamp(30px, 9vw, 42px); }
  .pill { padding: 12px 20px; font-size: 14.5px; }
}

/* no mobile, slides laterais viram slides verticais (sem movimento horizontal) */
@media (max-width: 760px) {
  .reveal.r-left:not(.is-in),
  .reveal.r-right:not(.is-in) { transform: translateY(40px); }
}

/* ============================================================
   ABERTURA / PRELOADER + micro-interações · adicionado
   ============================================================ */
html.is-loading, html.is-loading body { overflow: hidden !important; height: 100%; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.preloader .pl-bar {
  width: min(220px, 44vw);
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}
.preloader .pl-bar > span {
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}
.preloader.go .pl-bar > span {
  transition: transform 1.05s cubic-bezier(.65, 0, .35, 1);
  transform: scaleX(1);
}
.preloader.done {
  transform: translateY(-100%);
  transition: transform .85s cubic-bezier(.76, 0, .24, 1);
}

/* sublinhado que cresce nos links de texto */
.feature .copy .link {
  position: relative;
}
.feature .copy .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}
.feature .copy .link:hover::after { transform: scaleX(1); }

/* parallax não deve criar barra horizontal */
[data-parallax] { backface-visibility: hidden; }

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none !important; }
}

/* anel branco em volta da bolinha viajante sob o cursor (onda WebGL) */
.wave-node-ring {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255, 255, 255, .7);
  opacity: 0;
  transition: opacity .15s;
  pointer-events: none;
  z-index: 9;
}
.wave-node-ring.is-active { opacity: 1; }

/* scrim do hero: escurece levemente o topo (texto nítido) e libera a onda embaixo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0, 45, 58, .85) 0%,
    rgba(0, 45, 58, .6) 30%,
    rgba(0, 45, 58, .4) 48%,
    rgba(0, 45, 58, .12) 60%,
    rgba(0, 45, 58, 0) 72%);
}
.hero p.lead { text-shadow: 0 1px 14px rgba(0, 0, 0, .55); }
