:root {
  --primary: #f26222
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #0c0c0cdb;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  position: relative;
  background: transparent
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('background.webp') center/cover no-repeat fixed;
  filter: blur(6px) brightness(.9) saturate(.9);
  transform: scale(1.06);
  will-change: filter, transform
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.hero {
  text-align: center;
  padding: 120px 0 84px
}

.hero .logo {
  max-width: 250px;
  margin-bottom: 36px;
  filter: drop-shadow(0 4px 22px rgba(242, 98, 34, .25))
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0 0 22px;
  line-height: 1.15
}

.hero p.text-white-300 {
  font-size: 1.12rem;
  max-width: 760px;
  margin: 0 auto 26px;
  color: #d1d5db;
  line-height: 1.65
}

.hero .mb-4 .pill.spots {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .9rem;
  border-radius: 9999px;
  margin: 10px 0 22px !important
}

.hero .mb-8 {
  margin-top: 8px !important;
  margin-bottom: 48px !important
}

.hero .mb-8>.mb-3 {
  margin-bottom: 20px !important
}

.hero .mb-8 .rounded-full {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 18px
}

.hero .text-white-400.text-lg {
  margin-top: 16px;
  margin-bottom: 6px;
  line-height: 1.6
}

.hero .text-white-300.text-sm.mt-1 {
  margin-top: 12px !important;
  line-height: 1.55
}

.hero .flex.justify-center.gap-4.mb-4 {
  margin-top: 18px !important;
  margin-bottom: 26px !important;
  gap: 18px !important;
  flex-wrap: wrap
}

.hero p.text-white-400.text-sm.mt-4 {
  margin-top: 18px !important;
  line-height: 1.55
}

.hero .flex.justify-center.items-center.space-x-6.mt-8 {
  margin-top: 34px !important
}

.benefit-card {
  transition: transform .3s ease
}

.benefit-card:hover {
  transform: translateY(-5px)
}

#faq {
  padding: 80px 0 20px;
  max-width: 1200px;
  margin: 0 auto
}

#faq .faq-item {
  background: rgba(242, 98, 34, .10);
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(242, 98, 34, .22);
  overflow: hidden
}

#faq .faq-question {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 220ms
}

#faq .faq-question:hover {
  background: rgba(255, 255, 255, .04)
}

#faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 420ms ease, padding 280ms ease
}

#faq .faq-answer p {
  padding: 12px 0 20px;
  color: #d1d5db;
  margin: 0
}

#faq .faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 20px
}

#faq .faq-question .icon {
  transition: transform 220ms
}

#faq .faq-item.active .faq-question .icon {
  transform: rotate(180deg)
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.show {
  opacity: 1;
  transform: none
}

.btn-primary {
  --g1: #ff7a3d;
  --g2: #f26222;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: #fff;
  font-weight: 800;
  padding: 1rem 2.1rem;
  border-radius: 14px;
  display: inline-block;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: 0 10px 20px rgba(242, 98, 34, .28), inset 0 1px 0 rgba(255, 255, 255, .15);
  border: 0;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(242, 98, 34, .36), inset 0 1px 0 rgba(255, 255, 255, .2)
}

.btn-primary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .25);
  outline-offset: 2px;
  filter: saturate(1.05)
}

.btn-complete {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 14px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 6px 14px rgba(242, 98, 34, .18);
  transition: all .3s ease;
}

.btn-complete::after {
  content: "";
  position: absolute;
  inset: -40% -80% auto;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: translateX(-120%) rotate(12deg);
  pointer-events: none;
}

.btn-complete:hover {
  background: #992f00;
  color: #fff;
  box-shadow: 0 10px 22px rgba(153, 47, 0, .45);
  transform: translateY(-2px);
}

.btn-complete:hover::after {
  transform: translateX(120%) rotate(12deg);
  transition: transform .8s ease;
}

.btn-complete:active {
  transform: translateY(0) scale(.98);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #e8eaee;
  padding: 1rem 2.1rem;
  border-radius: 14px;
  font-weight: 800;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .22);
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  text-transform: uppercase;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #f26222;
  color: #fff;
  background: rgba(242, 98, 34, .18)
}

.btn-ghost:focus-visible {
  outline: 2px solid rgba(242, 98, 34, .5);
  outline-offset: 2px
}

#open-apply-modal-mobile {
  padding: .6rem;
  line-height: 1.3rem
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .9rem;
  border-radius: 9999px
}

.pill.spots {
  background: rgba(242, 98, 34, .12);
  border: 1px solid rgba(242, 98, 34, .22);
  color: #ffd9c8
}

.footer {
  background: #0c0c0cdb;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 48px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 22px
}

.footer h5 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #fff;
  letter-spacing: .4px
}

.footer p,
.footer li,
.footer a {
  color: #cfcfcf
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.footer li {
  margin: 8px 0
}

.footer a {
  text-decoration: none;
  transition: color 220ms
}

.footer a:hover {
  color: #fff
}

.footer .brand .logo {
  max-width: 12rem;
  margin-bottom: 15px;
}

.footer .meta {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 24px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.mp-wrap {
  --mp-primary: var(--primary);
  --mp-card-bd: rgba(255, 255, 255, .10);
  --mp-card-bg: rgba(17, 17, 17, .65);
  --mp-glass: blur(6px) saturate(140%);
  --mp-shadow: 0 16px 36px rgba(0, 0, 0, .35)
}

.mp-title {
  font-weight: 800;
  letter-spacing: .2px
}

.mp-lead {
  color: #d9d9d9;
  max-width: 960px;
  margin: 0 auto
}

.mp-why .mp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.mp-why .mp-card {
  background: #111a;
  backdrop-filter: blur(6px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease
}

.mp-why .mp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 98, 34, .28);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .45)
}

.mp-why .mp-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: #fff
}

.mp-why .mp-card h3 {
  margin: 0 0 4px;
  font-weight: 700
}

.mp-why .mp-card p {
  margin: 0;
  color: #d1d5db;
  font-size: .95rem
}

.mp-resources {
  --bd: rgba(255, 255, 255, .12);
  --bg: rgba(17, 17, 17, .70);
  --gls: blur(8px) saturate(140%)
}

.mp-resources .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.mp-resources .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 14px;
  backdrop-filter: var(--gls);
  line-height: 1.5
}

.mp-resources .item i {
  color: #f26222;
  min-width: 22px;
  margin-top: 2px
}

.mp-resources .item h4 {
  margin: 0 0 2px;
  font-weight: 700
}

.mp-resources .item p {
  margin: 0;
  color: #d1d5db;
  font-size: .95rem
}

.mp-offer {
  background: linear-gradient(135deg, #f26222d1, #993100d4);
  position: relative;
  overflow: hidden;
  isolation: isolate
}

.mp-offer::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(255, 255, 255, .12), transparent 60%);
  transform: rotate(8deg);
  z-index: 0
}

.mp-offer .mp-inner {
  position: relative;
  z-index: 1;
  text-align: center
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  opacity: .9
}

.logos-grid img {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  display: grid;
  place-items: center
}

.testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.testi .card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 18px
}

.testi .name {
  font-weight: 700
}

.testi .role {
  color: #d1d5db;
  font-size: .92rem;
}

.packages .grid > div {
  display: flex;
  flex-direction: column;
}

.packages .grid ul {
  flex-grow: 1;
}

.packages .grid .go-pricing {
  margin-top: auto;
}

.packages h3 {
    text-align: center;
}

.medal {
  font-size: 24px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6)
}

.modal-card {
  background: rgba(17, 17, 17, .95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  max-width: 720px;
  margin: 3rem auto;
  padding: 1.25rem
}

.mini-show {
  --bd: rgba(255, 255, 255, .12);
  --bg: rgba(17, 17, 17, .70);
  --gls: blur(8px) saturate(140%);
  --sh: 0 18px 44px rgba(0, 0, 0, .40)
}

.mini-show .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.mini-show .card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: var(--gls);
  box-shadow: var(--sh);
  position: relative
}

.mini-show .media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative
}

.mini-show .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0))
}

.mini-show img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.mini-show .caption {
  padding: 12px 14px
}

.mini-show .caption h3 {
  margin: 0 0 6px;
  font-weight: 800
}

.mini-show .caption p {
  margin: 0;
  color: #d1d5db;
  font-size: .95rem
}

.topbar {
  position: fixed;
  top: -80px;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: top .28s ease
}

.topbar.visible {
  top: 0
}

.ps-wrap {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .35));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  isolation: isolate;
  overflow: hidden;
}

.ps-wrap::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  background: radial-gradient(60% 60% at 60% 10%, rgba(255, 255, 255, .10), transparent 60%);
  z-index: 0;
  pointer-events: none;
  transform: rotate(6deg)
}

.ps-inner {
  position: relative;
  z-index: 1
}

.ps-title {
  font-weight: 800;
  letter-spacing: .2px
}

.ps-sub {
  color: #d9d9d9;
  max-width: 880px;
  margin: 6px auto 0
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 22px
}

.ps-card {
  background: rgba(17, 17, 17, .70);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px) saturate(140%);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35)
}

.ps-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, .35);
  box-shadow: 0 26px 58px rgba(0, 0, 0, .5)
}

.ps-meter {
  --size: 120px;
  --track: rgba(255, 255, 255, .10);
  --fill: #22c55e;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  flex: 0 0 var(--size);
  background: conic-gradient(var(--fill) var(--angle, 0deg), var(--track) 0deg)
}

.ps-meter::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .65);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px)
}

.ps-score {
  position: relative;
  font-weight: 800;
  font-size: 2rem
}

.ps-label {
  font-weight: 700;
  margin: 0 0 4px
}

.ps-desc {
  margin: 0;
  color: #d1d5db
}

.ps-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px
}

.ps-badge {
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .35);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85rem;
  color: #d9ffe6
}

.cta-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none
}

.fixed-cta {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.fixed-cta .section-container {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.fixed-cta .btn-primary {
  border-radius: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.8rem;
}

.price-chip {
  position: relative;
  overflow: hidden
}

.price-chip::after {
  content: "";
  position: absolute;
  inset: -40% -80% auto;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: translateX(-60%) rotate(12deg);
  transition: transform .7s ease;
  pointer-events: none;
}

.price-chip:hover::after {
  transform: translateX(60%) rotate(12deg);
}

#apply {
  overflow-y: auto;
  overscroll-behavior: contain;
}

#apply .modal-card {
  max-height: min(92vh, 720px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
}

.hero p.text-white-300,
.ps-desc,
.testi .role,
.mp-why .mp-card p,
.mp-resources .item p {
  color: #e5e7eb;
}

@media(min-width:1025px) {
  .cta-float {
    display: block
  }
}

@media(max-width:1024px) {
  .mp-why .mp-grid {
    grid-template-columns: 1fr
  }

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

  .logos-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .mini-show .grid {
    grid-template-columns: 1fr
  }

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

  .ps-meter {
    --size: 100px
  }

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

@media (max-width:640px) {
  .hero {
    padding: 72px 0 40px
  }

  .hero h1 {
    font-size: 1.9rem
  }

  .hero p {
    font-size: 1rem
  }

  .hero .mb-8 {
    margin-bottom: 42px !important
  }

  .hero .flex.justify-center.gap-4.mb-4 {
    margin-top: 16px !important;
    margin-bottom: 24px !important;
    gap: 14px !important
  }

  .hero .flex.justify-center.items-center.space-x-6.mt-8 {
    margin-top: 28px !important
  }

  .btn-primary,
  .btn-ghost,
  .btn-complete {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    line-height: 1.4rem;
  }

  .section-container {
    padding: 0 1rem
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .mp-resources .grid {
    grid-template-columns: 1fr
  }

  .topbar .section-container {
    padding: .4rem .75rem
  }

  .topbar .section-container .flex {
    gap: .5rem
  }

  .topbar a.btn-primary,
  .topbar a.btn-ghost {
    padding: 0.8rem 1.25rem;
    font-size: .8rem;
    border-radius: 8px;
    text-align: center;
    line-height: 0.9rem;
  }

  #apply .modal-card {
    margin: 1rem auto;
  }

  .hero .mb-8 .rounded-full {
    line-height: 1.3rem;
  }

  .hero p.text-white-300 {
    margin: 0 auto 10px;
  }

  .hero .mb-4 .pill.spots {
    margin: 10px 0 12px !important;
  }

  .footer {
    padding-bottom: 80px;
  }

  .footer .meta {
    font-size: 0.88rem;
    text-align: center;
  }

  .footer .meta div {
    width: 100%;
  }

  body::before {
    background: url('background-mb.webp') center/cover no-repeat fixed;
    filter: none;
    transform: none;
  }
}

.hero-mini-form {
  max-width: 820px;
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: 2fr 2fr 1.4fr;
  gap: 10px
}

.hero-mini-form input {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  border-radius: 12px;
  padding: .9rem
}

@media(max-width:768px) {
  .hero-mini-form {
    grid-template-columns: 1fr
  }
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

@media (prefers-reduced-data: reduce) {
  body::before {
    background: #0d0d0d;
    filter: none;
    transform: none;
  }
}

.hp {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#apply {
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

#apply.show {
  opacity: 1;
  pointer-events: auto;
}

/* fade do backdrop */
#apply .modal-backdrop {
  opacity: 0;
  transition: opacity .28s ease;
}

#apply.show .modal-backdrop {
  opacity: 1;
}

/* slide+fade do cartão */
#apply .modal-card {
  transform: translateY(14px) scale(.985);
  opacity: 0;
  transition: transform .32s ease, opacity .32s ease;
  will-change: transform, opacity;
}

#apply.show .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Step cards, visual limpo e consistente */
.step-card{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(8px);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  transition:transform .18s ease, box-shadow .18s ease;
  min-height:220px;
}
.step-card:hover{ transform:translateY(-2px); box-shadow:0 14px 34px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06) }

.step-head{ display:flex; align-items:center; gap:12px; margin-bottom:10px }
.step-badge{
  width:44px; height:44px; border-radius:12px;
  display:grid; place-items:center; color:#fff; font-weight:800; font-size:16px
}
.step-title{ font-size:20px; font-weight:800 }
.step-sub{ font-size:13px; opacity:.9 }

.step-list{ margin:10px 0 0 0; padding:0; list-style:none }
.step-list li{ position:relative; padding-left:22px; margin:8px 0 }
.step-list li:before{
  content:""; position:absolute; left:0; top:9px; width:10px; height:10px; border-radius:50%;
  background:#f26222; box-shadow:0 0 0 3px rgba(242,98,34,.18)
}

.step-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px }
.step-tag{
  font-size:11px; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.05)
}

/* Destaque amigável do Gold */
.gold-highlight{
  border:1px solid rgba(242,98,34,.35);
  background:linear-gradient(180deg, rgba(242,98,34,.10), rgba(0,0,0,.12));
  border-radius:18px;
}

/* Barra fixa do Gold */
.gold-sticky{
  position:fixed; bottom:16px; left:50%; transform:translateX(-50%);
  background:rgba(0,0,0,.85); border:1px solid rgba(255,255,255,.15);
  border-radius:999px; padding:8px 12px; display:flex; gap:10px; align-items:center; z-index:40
}

svg {
  display: unset !important;
}