/* ============ CONFIGURAÇÃO BÁSICA ============ */

:root {
  --bg: #030250;
  --bg-alt: #05091f;
  --text: #f9fafb;
  --muted: #9ca3af;
  --accent: #028cc9;
  --accent-soft: rgba(2, 140, 201, 0.14);
  --card: rgba(3, 2, 80, 0.92);
  --border: rgba(148, 163, 184, 0.35);

  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070c23;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

section,
header,
footer,
.container {
  background-color: #070c23 !important;
}

/* links sem sublinhado padrão */
a {
  color: inherit;
  text-decoration: none;
}

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

.contact-info {
  font-size: 0.9rem;   /* menor */
  line-height: 1.4;
}

.contact-info a {
  color: #ffffff;      /* mantém cor original */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ============ LAYOUT BASE ============ */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER / NAV ============ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background:  #070c23;
  border-bottom: 1px solid var(--border);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

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

/* bolinha simulando logo; troque por imagem depois */
.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:  #070c23;
  box-shadow:
    0 0 0 1px rgba(2, 140, 201, 0.6),
    0 0 28px rgba(2, 140, 201, 0.7);
}

.logo__title {
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.logo__subtitle {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.86rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-bottom: 3px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.18s ease-out;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

/* botão do header */
.header__cta {
  font-size: 0.8rem;
}

/* ============ BOTÕES ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.1s ease-out,
    box-shadow 0.1s ease-out,
    background 0.15s ease-out,
    border-color 0.15s ease-out;
}

.btn--primary {
  background: linear-gradient(135deg, #028cc9, #19a8e6);
  color: #020617;
  font-weight: 500;
  box-shadow: 0 18px 40px rgba(2, 140, 201, 0.75);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(2, 140, 201, 0.9);
}

.btn--ghost {
  background: rgba(3, 2, 80, 0.95);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(3, 2, 80, 1);
  border-color: rgba(148, 163, 184, 0.9);
  transform: translateY(-1px);
}

.btn--outline {
  background: radial-gradient(circle at top left, rgba(2, 140, 201, 0.2), transparent 55%);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text);
}

/* ============ HERO ============ */

.hero {
  padding: 30px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero__title {
  font-size: clamp(2.1rem, 3vw + 1rem, 3.1rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero__title span {
  background: linear-gradient(to right, #ffffff, #028cc9);
  background-clip: text;              /* padrão */
  -webkit-background-clip: text;      /* WebKit */
  color: transparent;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 36rem;
  margin-bottom: 10px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.78rem;
}

.badge {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(3, 2, 80, 0.95);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero__disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
}

/* card da direita */
.hero__card {
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px 18px;
  background:
    radial-gradient(circle at top left, rgba(2, 140, 201, 0.2), transparent 55%),
    radial-gradient(circle at bottom, rgba(3, 2, 80, 1), rgba(3, 2, 80, 0.95));
  box-shadow: var(--shadow-soft);
}

.hero__card-kicker {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.hero__card-title {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.hero__card-sub {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.metric {
  padding: 10px;
  border-radius: 14px;
  background: rgba(3, 2, 80, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.8rem;
}

.metric__label {
  font-size: 0.74rem;
  color: var(--muted);
}

.metric__value {
  font-size: 1.02rem;
  font-weight: 600;
}

.metric__tag {
  font-size: 0.7rem;
  margin-top: 4px;
  color: #22c55e;
}

.hero__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero__chip {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(3, 2, 80, 0.95);
}

/* ============ SEÇÕES GENÉRICAS ============ */

.section {
  padding: 60px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  max-width: 640px;
  margin-bottom: 22px;
}

.section__title {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.section__subtitle {
  font-size: 0.92rem;
  color: var(--muted);
}

/* grid genérico */
.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* cards genéricos */

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 18px 16px;
  background: var(--card);
  font-size: 0.88rem;
}

.card h3 {
  font-size: 0.96rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
}

/* lista com bullets simples */
.list {
  list-style: disc;
  padding-left: 18px;
  margin-top: 8px;
  color: var(--muted);
}

/* cards de estratégia */
.card--strategy .tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 4px;
}

.card--strategy h3 {
  margin-bottom: 6px;
}

.card__footer {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* cards de time */
.card--team .avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #ffffff, #028cc9);
  margin-bottom: 10px;
}

.card__role {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

/* governança */
.pill-row {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(3, 2, 80, 0.98);
  color: var(--muted);
}

/* contato */

.contato__grid {
  align-items: flex-start;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

label {
  font-size: 0.8rem;
  color: var(--muted);
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  background:  #070c23;
  padding: 8px 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(2, 140, 201, 0.4);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form__button {
  margin-top: 4px;
  border: none;
}

.form__note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
}

.contato__info p {
  margin-bottom: 8px;
}

.contato__legal {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============ FOOTER ============ */

footer.footer {
  background: #070c23;
  padding: 40px 0;
  color: #d0d6e1;    /* texto cinza claro */
  font-size: 12px;
  line-height: 1.6;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer__left {
  flex: 4;
  text-align: justify;     /* texto justificado */
}

.footer__left h4 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.footer__rights {
  margin-top: 16px;
  text-align: left;
  font-size: 12px;
  color: #d0d6e1;
}

.footer__right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.footer__anbima {
  height: 90px;   /* ajusta a altura do selo */
  width: auto;
  display: block;
  border-radius: 4px;
}

/* ============ RESPONSIVO ============ */

@media (max-width: 960px) {
  .nav {
    display: none; /* some o menu grande no mobile */
  }

  .hero__grid,
  .grid--2,
  .grid--3,
  .contato__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__grid {
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .section,
  .hero {
    padding: 46px 0;
  }

  .hero__title {
    font-size: 2rem;
  }
}