/* JSB Smart Services — aplicação oficial da marca
   Versão: 2026-07-19-02 */

:root {
  --brand-navy: #002b5b;
  --brand-cyan: #00e5ff;
  --brand-charcoal: #1a1a1a;
  --brand-white: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--brand-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.brand__name,
.footer-brand__name {
  display: grid;
  line-height: 1.05;
  color: var(--brand-white);
}

.brand__name strong,
.footer-brand__name strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand__name span,
.footer-brand__name span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-card {
  display: grid;
  place-items: center;
}

.hero-brand-icon {
  position: relative;
  z-index: 2;
  width: min(64%, 260px);
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 43, 91, 0.2);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 902 / 1600;
  overflow: hidden;
  background: transparent;
  border-radius: 22px;
  margin-bottom: 1.35rem;
  box-shadow: 0 18px 46px rgba(0, 43, 91, 0.16);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  margin: 0;
  object-fit: contain;
  border-radius: 18px;
}

@media (max-width: 1040px) {
  .brand__name {
    display: none;
  }
}

@media (max-width: 760px) {
  .brand__logo {
    width: 48px;
    height: 48px;
  }

  .hero-brand-icon {
    width: min(60%, 220px);
  }

}
