:root{
  --bg: #070B18;
  --bg-2: #0A1024;

  --text: #F5F7FF;
  --muted: rgba(245,247,255,0.78);
  --muted2: rgba(245,247,255,0.62);

  --gold: #C8A24A;
  --gold-2: #E0C98B;

  --radius: 18px;
  --shadow: 0 24px 70px rgba(0,0,0,0.50);

  --serif: "Playfair Display", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(1200px 600px at 30% 0%, rgba(200,162,74,0.10), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(80,110,255,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
}

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

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.kicker{
  margin: 0 0 10px 0;
  color: var(--gold-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0B0F1F;
  border-color: rgba(255,255,255,0.08);
}
.btn--primary:hover{ opacity: 0.95; }
.btn--ghost{
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
}
.btn--ghost:hover{
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.22);
}
.btn--block{ width: 100%; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7,11,24,0.58);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

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

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand__logo{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.brand__name{
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: none;
}

.nav{ display: none; gap: 18px; }
.nav__link{
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav__link:hover{
  color: var(--text);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

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

.burger{
  width: 44px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}
.burger span{
  width: 18px;
  height: 2px;
  background: rgba(245,247,255,0.85);
  border-radius: 2px;
}

.mobile{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(7,11,24,0.85);
}
.mobile__inner{
  padding: 14px 0 18px 0;
  display: grid;
  gap: 10px;
}
.mobile__link{
  text-decoration: none;
  color: var(--muted);
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.mobile__link:hover{ color: var(--text); }
.mobile__cta{ margin-top: 6px; }

.hero{ padding: 46px 0 28px 0; }
.hero__grid{ display: grid; gap: 26px; }
.hero__title{
  margin: 0 0 10px 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
}
.hero__subtitle{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 54ch;
}
.hero__ctas{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__trust{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.trust__item{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 12px 14px;
  display: grid;
  gap: 3px;
}
.trust__label{
  font-size: 12px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.trust__value{ font-weight: 600; color: var(--text); }

.card-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.card-media__img{
  width: 100%;
  height: clamp(360px, 52vw, 520px);
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}
.card-media__overlay{
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 16px 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(7,11,24,0.84));
  display: grid;
  gap: 10px;
}
.card-media__note{
  margin: 0;
  color: rgba(245,247,255,0.86);
  font-size: 13px;
  line-height: 1.45;
}

.logos{ display: flex; gap: 10px; align-items: center; }
.logos__img{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}

.section{ padding: 56px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section__head{ max-width: 860px; margin-bottom: 22px; }
.section__title{
  margin: 0 0 10px 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: 0.01em;
}
.section__subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.grid-2{ display: grid; gap: 14px; margin-top: 18px; }
.panel{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 18px;
}
.panel__title{ margin: 0 0 8px 0; font-size: 16px; letter-spacing: 0.02em; }
.panel__text{ margin: 0 0 12px 0; color: var(--muted); line-height: 1.7; }

.badges{ display: flex; flex-wrap: wrap; gap: 8px; }
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  color: rgba(245,247,255,0.86);
}

.list{ margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.list li{ margin: 6px 0; }

.pillars{ display: grid; gap: 12px; margin-top: 18px; }
.pillar{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 18px;
}
.pillar__title{ margin: 0 0 8px 0; font-weight: 700; }
.pillar__text{ margin: 0; color: var(--muted); line-height: 1.7; }

.team{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.person{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 18px;
}
.person__top{
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.person__photo{
  width: 68px;
  height: 68px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
}
.person__name{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.person__role{
  margin: 4px 0 0 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.45;
}
.person__bio{
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.7;
}
.person__bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(245,247,255,0.80);
  line-height: 1.7;
}
.person__bullets li{ margin: 6px 0; }

.pricing{ display: grid; gap: 12px; margin-top: 18px; }
.price{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 18px;
  position: relative;
}
.price__top{ margin-bottom: 10px; }
.price__name{ margin: 0 0 4px 0; font-size: 18px; font-weight: 800; }
.price__tag{ margin: 0; color: var(--muted2); font-size: 13px; }
.price--featured{
  border-color: rgba(200,162,74,0.35);
  background: linear-gradient(180deg, rgba(200,162,74,0.10), rgba(255,255,255,0.03));
}
.price__badge{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(200,162,74,0.18);
  border: 1px solid rgba(200,162,74,0.35);
  color: var(--gold-2);
  font-weight: 700;
  font-size: 12px;
}

.contact{ display: grid; gap: 14px; align-items: start; }
.contact__mini{ margin-top: 14px; display: grid; gap: 10px; }
.contact__miniItem{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 12px 14px;
  display: grid;
  gap: 3px;
}
.contact__miniLabel{
  font-size: 12px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.contact__miniValue{ font-weight: 600; }

.form{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 18px;
}
.field{ display: grid; gap: 8px; margin-bottom: 12px; }
.field__label{ color: var(--muted); font-size: 13px; }
.field__input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7,11,24,0.55);
  color: var(--text);
  padding: 12px;
  outline: none;
  font-family: var(--sans);
}
.field__input:focus{
  border-color: rgba(200,162,74,0.45);
  box-shadow: 0 0 0 4px rgba(200,162,74,0.12);
}
.field__input--textarea{ resize: vertical; min-height: 120px; }

.form__fineprint{
  margin: 10px 0 0 0;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}
.form__status{
  margin: 10px 0 0 0;
  font-size: 13px;
  color: rgba(245,247,255,0.86);
  min-height: 18px;
}

.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(7,11,24,0.75);
}
.footer__inner{ display: grid; gap: 16px; align-items: start; }
.footer__logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.14);
}
.footer__text{
  margin: 10px 0 0 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
  font-size: 13px;
}
.footer__right{ display: flex; flex-wrap: wrap; gap: 10px; }
.footer__link{
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 10px 12px;
  border-radius: 999px;
}
.footer__link:hover{ color: var(--text); }

@media (min-width: 860px){
  .brand__name{ display: inline; }
  .nav{ display: flex; }
  .burger{ display: none; }

  .hero__grid{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
  .hero__trust{ grid-template-columns: repeat(3, 1fr); }

  .grid-2{ grid-template-columns: 1fr 1fr; }
  .pillars{ grid-template-columns: repeat(2, 1fr); }
  .team{ grid-template-columns: repeat(3, 1fr); }
  .pricing{ grid-template-columns: repeat(3, 1fr); }

  .contact{ grid-template-columns: 1fr 0.95fr; gap: 22px; }
  .footer__inner{ grid-template-columns: 1fr auto; align-items: center; }
}

/* Seção branca */
.section--white{
  background: #ffffff;
  color: #0B0F1F;
}

.kicker--dark{ color: rgba(11,15,31,0.70); }
.section__title--dark{ color: #0B0F1F; }
.section__subtitle--dark{ color: rgba(11,15,31,0.72); }

/* Conselheiros em linha alternada */
.team-alt{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.advisor-row{
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(11,15,31,0.10);
  background: rgba(11,15,31,0.03);
}

.advisor-row__photo{
  width: 100%;
  height: 240px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(11,15,31,0.10);
}

.advisor-row__name{
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 800;
  color: #0B0F1F;
}

.advisor-row__role{
  margin: 0 0 10px 0;
  color: rgba(11,15,31,0.70);
  font-size: 14px;
  line-height: 1.4;
}

.advisor-row__bio{
  margin: 0 0 10px 0;
  color: rgba(11,15,31,0.78);
  line-height: 1.6;
}

.advisor-row__bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(11,15,31,0.82);
  line-height: 1.6;
}

.advisor-row__bullets li{
  margin: 6px 0;
}

/* Desktop, foto e texto lado a lado */
@media (min-width: 860px){
  .advisor-row{
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .advisor-row--reverse{
    grid-template-columns: 1.1fr 0.9fr;
  }

  .advisor-row--reverse .advisor-row__media{
    order: 2;
  }

  .advisor-row--reverse .advisor-row__content{
    order: 1;
  }

  .advisor-row__photo{
    height: 320px;
  }
}
/* Seções novas */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.step {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 10px;
}

.step__title {
  margin: 0 0 6px 0;
  font-size: 18px;
}

.step__text {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.note-box {
  margin-top: 18px;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.note-box__title {
  margin: 0 0 6px 0;
  font-weight: 700;
}

.note-box__text {
  margin: 0;
  opacity: 0.95;
  line-height: 1.6;
}

/* Depoimentos */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.t-card {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.95);
}

.section--alt .t-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.t-card__text {
  margin: 0 0 10px 0;
  line-height: 1.7;
}

.t-card__meta {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

/* Form */
.form {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.form__field {
  display: grid;
  gap: 6px;
}

.form__label {
  font-size: 13px;
  opacity: 0.9;
}

.form__input {
  width: 100%;
  border-radius: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255,255,255,0.95);
  outline: none;
}

.section--alt .form__input {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: inherit;
}

.form__textarea {
  resize: vertical;
  min-height: 96px;
}

.form__hint {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

/* Util */
.spacer {
  height: 14px;
}

/* Responsivo */
@media (max-width: 980px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .nav.nav--open {
    display: grid;
    gap: 10px;
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255,255,255,0.12);
  }
}
