:root {
  --ink: #f7faf8;
  --muted: #c2d0db;
  --muted-strong: #e0e8ee;
  --orange: #f58232;
  --orange-dark: #da671b;
  --blue: #004e84;
  --blue-dark: #073a5f;
  --deep: #081928;
  --panel: #f6f8f7;
  --field: #ffffff;
  --field-line: #d5dfdc;
  --field-ink: #15302d;
  --radius: 8px;
  --shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--deep);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

.bio-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(7, 58, 95, .99) 0%, rgba(8, 25, 40, .99) 100%);
}

.bio-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 460px);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
  padding: 64px 0;
}

.proof-column {
  min-width: 0;
}

.brand-logo {
  width: 164px;
  max-height: 58px;
  margin-bottom: 42px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .22));
}

.eyebrow {
  display: inline-flex;
  color: var(--orange);
  font-family: Manrope, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin: 16px 0 20px;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(2.55rem, 4.4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 500;
}

h1 strong {
  color: var(--orange);
  font-weight: 700;
}

.lead {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.65;
  font-weight: 400;
}

.proof-summary {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.proof-summary strong {
  color: var(--muted-strong);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.proof-summary span {
  color: #9fb2c1;
  font-size: 13px;
  line-height: 1.5;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 570px;
}

.client-logo {
  height: 66px;
  display: grid;
  place-items: center;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .11);
}

.client-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 43px;
  object-fit: contain;
}

.form-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

#trafego-bio-instagram-98236ba53fb945bb6d3e {
  width: 100%;
  min-height: 360px;
}

.form-card .bricks-form,
.form-card .bricks-form__fieldset {
  width: 100%;
}

.form-card .bricks-form__input,
.form-card .bricks-form__select,
.form-card .bricks-form__textarea {
  border-radius: 6px !important;
  font-family: "DM Sans", Arial, sans-serif !important;
}

.form-card .bricks-form__submit .bricks--component-button {
  min-height: 50px;
  border-radius: 6px !important;
  font-family: Manrope, Arial, sans-serif !important;
  font-weight: 700 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s ease, transform .65s ease;
}

@media (max-width: 940px) {
  .bio-shell {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 48px 0;
  }

  .brand-logo {
    margin: 0 auto 28px;
  }

  .proof-column {
    text-align: center;
  }

  .lead,
  h1,
  .client-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .form-card {
    width: min(100%, 520px);
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .bio-shell {
    width: min(100% - 28px, 1080px);
    padding: 30px 0 36px;
  }

  .brand-logo {
    width: 146px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

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

  .client-logo {
    height: 58px;
    padding: 9px 10px;
  }

  .client-logo img {
    max-height: 36px;
  }

  .form-card {
    padding: 24px 20px;
  }
}

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

}
