/* =============================================
   DELTA CREATORS — UpDelta Landing Page
   style.css
   ============================================= */

:root {
  --purple:      #392947;
  --purple-deep: #1a0f26;
  --white:       #ffffff;
  --grad:   linear-gradient(135deg, #fd2f32, #ff8500, #faca3a, #03cd7b, #211bf7, #dc37dc);
  --grad-h: linear-gradient(90deg,  #fd2f32 0%, #ff8500 20%, #faca3a 40%, #03cd7b 60%, #211bf7 80%, #dc37dc 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--purple-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--purple-deep); }
::-webkit-scrollbar-thumb        { background: var(--grad); border-radius: 3px; }

/* ── Grad text helper ──────────────────────── */
.g {
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(26, 15, 38, .90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav-logo {
  height: 42px;
  width: auto;
}

.nav-cta {
  background: var(--grad);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}

/* Blobs */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.blob-1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(220,55,220,.55), rgba(33,27,247,.3));  top: -12%; right: -6%; animation-delay: 0s; opacity: .4; }
.blob-2 { width: 440px; height: 440px; background: radial-gradient(circle, rgba(253,47,50,.5),  rgba(255,133,0,.4));    bottom: -18%; left: -6%; animation-delay: -5s; opacity: .38; }
.blob-3 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(3,205,123,.4),  rgba(250,202,58,.3));  top: 30%; left: 8%; animation-delay: -9s; opacity: .22; }

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(28px, -22px) scale(1.06); }
  66%  { transform: translate(-18px, 26px) scale(.94); }
  100% { transform: translate(12px, -8px) scale(1.03); }
}

/* Asterisco deco */
.hero-deco {
  position: absolute; right: -90px; top: 50%;
  transform: translateY(-50%);
  width: 560px; height: 560px;
  opacity: .14;
  animation: spinSlow 70s linear infinite;
  pointer-events: none;
}
.hero-deco img { width: 100%; height: 100%; object-fit: contain; }

@keyframes spinSlow { to { transform: translateY(-50%) rotate(360deg); } }

/* Conteúdo */
.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 8px 18px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 26px;
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.hero-badge.in { opacity: 1; transform: translateY(0); }

.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #03cd7b; box-shadow: 0 0 8px #03cd7b;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.025em;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s .15s, transform .8s .15s;
}
.hero-title.in { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: clamp(.98rem, 1.9vw, 1.18rem);
  font-weight: 300; line-height: 1.68;
  color: rgba(255,255,255,.68);
  max-width: 560px; margin-bottom: 42px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s .3s, transform .8s .3s;
}
.hero-sub.in { opacity: 1; transform: translateY(0); }

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s .45s, transform .8s .45s;
}
.hero-btns.in { opacity: 1; transform: translateY(0); }

.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff;
  font-family: 'Barlow', sans-serif; font-weight: 800;
  font-size: 1rem; letter-spacing: .04em;
  padding: 16px 38px; border: none; border-radius: 100px;
  cursor: pointer; text-decoration: none;
  transition: transform .22s, box-shadow .22s;
  box-shadow: 0 8px 32px rgba(253,47,50,.28);
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(253,47,50,.38); }
.btn-main:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,.78);
  font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 100px; cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   PROOF STRIP
───────────────────────────────────────────── */
.proof-strip {
  background: rgba(255,255,255,.035);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 18px 0; overflow: hidden;
}
.proof-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 32s linear infinite;
  white-space: nowrap; width: max-content;
}
.proof-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
}
.proof-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────────
   PILLARS / CARDS
───────────────────────────────────────────── */
.pillars {
  padding: 100px 48px;
  max-width: 1160px; margin: 0 auto;
}

.section-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.12; letter-spacing: -.022em;
  margin-bottom: 58px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.card {
  background: rgba(255,255,255,.042);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 22px; padding: 38px 32px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, background .3s;
}
.card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0;
  border-radius: 22px; transition: opacity .3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.18); }
.card:hover::after { opacity: .055; }

/* Card icon — SVG area */
.card-icon {
  width: 48px; height: 48px;
  display: block; margin-bottom: 22px;
  position: relative; z-index: 1;
}

.card-title { font-size: 1.22rem; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
.card-desc  { font-size: .93rem; font-weight: 300; line-height: 1.62; color: rgba(255,255,255,.62); position: relative; z-index: 1; }
.card-tag {
  display: inline-block; margin-top: 22px;
  background: rgba(255,255,255,.07); border-radius: 100px;
  padding: 5px 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.45); position: relative; z-index: 1;
}

/* ─────────────────────────────────────────────
   FORM SECTION
───────────────────────────────────────────── */
.form-section {
  padding: 100px 48px;
  position: relative; overflow: hidden;
}
.form-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(57,41,71,.5), transparent 70%);
  pointer-events: none;
}

.form-deco {
  position: absolute; left: -140px; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px; opacity: .07;
  animation: spinSlow 90s linear infinite reverse;
  pointer-events: none;
}
.form-deco img { width: 100%; height: 100%; object-fit: contain; }

.form-inner {
  position: relative; z-index: 2;
  max-width: 600px; margin: 0 auto;
}
.form-section .section-heading { margin-bottom: 10px; }

.form-sub-text {
  font-size: .98rem; font-weight: 300;
  color: rgba(255,255,255,.58); line-height: 1.65;
  margin-bottom: 46px;
}

/* Checkboxes */
.checks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 11px; margin-bottom: 30px;
}

.chk-wrap { position: relative; }
.chk-wrap input { position: absolute; opacity: 0; width: 0; height: 0; }

.chk-lbl {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.09);
  cursor: pointer; font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: border-color .2s, background .2s;
  user-select: none;
}
.chk-lbl:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }

.chk-box {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; background: transparent;
  font-size: .7rem; font-weight: 900; color: #fff;
}

.chk-wrap input:checked ~ .chk-lbl {
  border-color: rgba(253,47,50,.5);
  background: rgba(253,47,50,.09);
}
.chk-wrap input:checked ~ .chk-lbl .chk-box {
  background: var(--grad); border-color: transparent;
}
.chk-wrap input:checked ~ .chk-lbl .chk-box::after { content: '✓'; }

/* Fields */
.fields { display: flex; flex-direction: column; gap: 15px; margin-bottom: 26px; }

.fg { position: relative; }
.fg input {
  width: 100%; padding: 16px 20px;
  background: rgba(255,255,255,.058);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: 14px; color: #fff;
  font-family: 'Barlow', sans-serif; font-size: .98rem;
  outline: none;
  transition: border-color .25s, background .25s;
}
.fg input::placeholder { color: rgba(255,255,255,.32); }
.fg input:focus { border-color: rgba(253,47,50,.45); background: rgba(255,255,255,.08); }
.fg input:focus ~ .fl { width: 100%; }

.fl {
  position: absolute; bottom: -1px; left: 0;
  height: 2px; width: 0;
  background: var(--grad); border-radius: 1px;
  transition: width .4s; pointer-events: none;
}

.fg-err { font-size: .78rem; color: #fd2f32; margin-top: 5px; padding-left: 4px; display: none; }
.fg.error input { border-color: rgba(253,47,50,.5); }
.fg.error .fg-err { display: block; }

/* Submit */
.form-foot { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.btn-submit {
  width: 100%; padding: 18px;
  background: var(--grad); border: none; border-radius: 100px;
  color: #fff; font-family: 'Barlow', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: .04em;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  box-shadow: 0 8px 30px rgba(33,27,247,.22);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(33,27,247,.32); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.form-note { font-size: .78rem; color: rgba(255,255,255,.28); text-align: center; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  padding: 44px 48px; text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  height: auto; max-width: 200px; width: 100%;
  opacity: .5; margin: 0 auto 14px; display: block;
}
footer p { font-size: .76rem; color: rgba(255,255,255,.22); }

/* ─────────────────────────────────────────────
   THANK YOU OVERLAY
───────────────────────────────────────────── */
.typ {
  position: fixed; inset: 0; z-index: 300;
  background: var(--purple-deep);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .6s;
  overflow: hidden;
}
.typ.show { opacity: 1; pointer-events: all; }

.typ-blobs { position: absolute; inset: 0; pointer-events: none; }
.typ-blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.typ-blob-1 { width: 600px; height: 600px; background: radial-gradient(circle,rgba(220,55,220,.35),transparent 70%); top:-20%;right:-20%; }
.typ-blob-2 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(33,27,247,.28),transparent 70%); bottom:-20%;left:-20%; animation-delay:-6s; }

.typ-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 520px; padding: 40px 32px;
}

.typ-icon {
  width: 84px; height: 84px; margin: 0 auto 32px;
  transform: scale(0);
  transition: transform .55s .2s cubic-bezier(.34,1.56,.64,1);
}
.typ.show .typ-icon { transform: scale(1); }
.typ-icon img { width: 100%; height: 100%; object-fit: contain; animation: spinSlow 9s linear infinite; }

.typ-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -.022em; line-height: 1.12;
  margin-bottom: 16px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s .45s, transform .6s .45s;
}
.typ.show .typ-title { opacity: 1; transform: translateY(0); }

.typ-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,.65); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s .6s, transform .6s .6s;
}
.typ.show .typ-sub { opacity: 1; transform: translateY(0); }

.typ-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 24px 28px;
  font-size: .9rem; line-height: 1.6;
  color: rgba(255,255,255,.7); text-align: left;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s .78s, transform .6s .78s;
}
.typ.show .typ-box { opacity: 1; transform: translateY(0); }

/* Confetti */
.confetti-wrap { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cp { position: absolute; animation: cffall linear forwards; }
@keyframes cffall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(800deg); opacity: 0; }
}

/* ─────────────────────────────────────────────
   REVEAL ON SCROLL
───────────────────────────────────────────── */
.rv {
  opacity: 0; transform: translateY(44px);
  transition: opacity .72s ease, transform .72s ease;
}
.rv.in { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 780px) {
  nav              { padding: 0 20px; height: 60px; }
  .nav-logo        { height: 36px; width: auto; max-width: unset; }
  .nav-cta         { font-size: .76rem; padding: 9px 16px; }

  .hero            { padding: 96px 24px 60px; text-align: center; }
  .hero-content    { display: flex; flex-direction: column; align-items: center; }
  .hero-sub        { text-align: center; }
  .hero-btns       { justify-content: center; }
  .hero-deco       { display: none; }

  .pillars         { padding: 64px 24px; }
  .form-section    { padding: 64px 24px; }
  .form-deco       { display: none; }
  footer           { padding: 32px 24px; }

  .proof-track     { gap: 36px; }
  .proof-item      { font-size: .72rem; }
}

@media (max-width: 480px) {
  nav              { height: 56px; padding: 0 16px; }
  .nav-logo        { height: 30px; }
  .nav-cta         { font-size: .7rem; padding: 8px 12px; letter-spacing: .03em; }

  .hero-title      { font-size: 2.1rem; }
  .hero-btns       { flex-direction: column; align-items: center; width: 100%; }
  .btn-main,
  .btn-ghost       { width: 100%; justify-content: center; padding: 14px 20px; font-size: .92rem; }
  .card-grid       { grid-template-columns: 1fr; }

  .proof-track     { gap: 28px; }
  .proof-item      { font-size: .68rem; }
}

/* ─────────────────────────────────────────────
   RD STATION FORM OVERRIDES
───────────────────────────────────────────── */

/* Limpa fundo do container */
#rd-section-mlz7gvu3 {
  background-color: transparent !important;
}
#rd-column-mlz7gvu9 > div {
  background-color: transparent !important;
  padding: 0 !important;
  align-items: stretch !important;
}
#rd-form-mlz7gvua {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: 100% !important;
}

/* Labels de campo */
#rd-form-mlz7gvua .bricks-form__label {
  color: rgba(255,255,255,.5) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

/* Inputs de texto / email / tel */
#rd-form-mlz7gvua .bricks-form__input {
  background-color: rgba(255,255,255,.058) !important;
  border: 1.5px solid rgba(255,255,255,.09) !important;
  border-radius: 14px !important;
  color: #fff !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: .98rem !important;
  height: 52px !important;
  padding: 0 20px !important;
}
#rd-form-mlz7gvua .bricks-form__input::placeholder {
  color: rgba(255,255,255,.32) !important;
}
#rd-form-mlz7gvua .bricks-form__input:focus {
  border-color: rgba(253,47,50,.45) !important;
  background-color: rgba(255,255,255,.08) !important;
  outline: none !important;
  box-shadow: none !important;
}
#rd-form-mlz7gvua .bricks-form__field {
  margin-bottom: 14px !important;
}

/* Erros de validação */
#rd-form-mlz7gvua label.error {
  color: #fd2f32 !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: .78rem !important;
}

/* ── Checkboxes ──────────────────────────── */

/* Grade 2 colunas para o grupo de checkboxes */
#rd-form-mlz7gvua .bricks-form__field:has(.bricks-form__field__option) {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}
/* Label "Gostaria de conversar sobre o que?" ocupa linha inteira */
#rd-form-mlz7gvua .bricks-form__field > .bricks-form__label.always-visible {
  grid-column: 1 / -1 !important;
}
#rd-form-mlz7gvua .bricks-form__field__option {
  margin-bottom: 0 !important;
}

/* Card-style dos checkboxes */
#rd-form-mlz7gvua .bricks-form__field__option .bricks-form__label {
  background: rgba(255,255,255,.05) !important;
  border: 1.5px solid rgba(255,255,255,.09) !important;
  border-radius: 14px !important;
  color: rgba(255,255,255,.75) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: .86rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  min-height: 52px !important;
  padding: 12px 16px !important;
  text-transform: none !important;
  transition: border-color .2s, background .2s !important;
  user-select: none !important;
  width: 100% !important;
  gap: 12px !important;
}
#rd-form-mlz7gvua .bricks-form__field__option .bricks-form__label:hover {
  border-color: rgba(255,255,255,.22) !important;
  background: rgba(255,255,255,.08) !important;
}
/* Checked state via :has() */
#rd-form-mlz7gvua .bricks-form__field__option .bricks-form__label:has(input:checked) {
  border-color: rgba(253,47,50,.5) !important;
  background: rgba(253,47,50,.09) !important;
}

/* Custom checkbox visual */
#rd-form-mlz7gvua .bricks-form__field__option input[type="checkbox"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  border-radius: 6px !important;
  border: 2px solid rgba(255,255,255,.18) !important;
  background: transparent !important;
  cursor: pointer !important;
  margin: 0 !important;
  position: relative !important;
  transition: all .2s !important;
}
#rd-form-mlz7gvua .bricks-form__field__option input[type="checkbox"]:checked {
  background: linear-gradient(135deg,#fd2f32,#ff8500,#faca3a,#03cd7b,#211bf7,#dc37dc) !important;
  border-color: transparent !important;
}
#rd-form-mlz7gvua .bricks-form__field__option input[type="checkbox"]:checked::after {
  content: '✓' !important;
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: .65rem !important;
  font-weight: 900 !important;
}

/* ── Botão ────────────────────────────────── */
#rd-button-mlz7gvuf.bricks--component-button {
  background: linear-gradient(135deg,#fd2f32,#ff8500,#faca3a,#03cd7b,#211bf7,#dc37dc) !important;
  border: none !important;
  border-radius: 100px !important;
  box-shadow: 0 8px 30px rgba(33,27,247,.22) !important;
  color: #fff !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  height: 58px !important;
  letter-spacing: .04em !important;
  margin-top: 8px !important;
  max-width: 100% !important;
  transition: transform .22s, box-shadow .22s !important;
  width: 100% !important;
}
#rd-button-mlz7gvuf.bricks--component-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 40px rgba(33,27,247,.32) !important;
}

/* ── Nota rodapé ──────────────────────────── */
#rd-text-mlz7gvug {
  max-width: 100% !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}
#rd-text-mlz7gvug p {
  color: rgba(255,255,255,.28) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: .78rem !important;
  text-align: center !important;
}

/* ── Telefone com bandeira ────────────────── */
#rd-form-mlz7gvua .select2-container .select2-choice {
  background: rgba(255,255,255,.058) !important;
  border: 1.5px solid rgba(255,255,255,.09) !important;
  border-right: none !important;
  border-radius: 14px 0 0 14px !important;
  color: #fff !important;
  height: 52px !important;
  line-height: 52px !important;
}
#rd-form-mlz7gvua .select2-container .select2-arrow {
  background: none !important;
  border: none !important;
}
#rd-form-mlz7gvua .with-select-flags > .phone-input-group > .phone {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* ── Responsivo checkboxes ───────────────── */
@media (max-width: 600px) {
  #rd-form-mlz7gvua .bricks-form__field:has(.bricks-form__field__option) {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────────────────────────────────────────
   OBRIGADO PAGE
───────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

.typ-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}

/* Blobs de fundo */
.typ-page .blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(220,55,220,.45), rgba(33,27,247,.25));
  top: -15%; right: -10%;
  animation-delay: 0s; opacity: .38;
}
.typ-page .blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(253,47,50,.4), rgba(255,133,0,.35));
  bottom: -18%; left: -10%;
  animation-delay: -5s; opacity: .32;
}
.typ-page .blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(3,205,123,.35), rgba(250,202,58,.25));
  top: 35%; left: 5%;
  animation-delay: -9s; opacity: .2;
}

/* Símbolo deco — grande, ao fundo */
.typ-deco {
  position: absolute;
  width: 580px; height: 580px;
  opacity: .07;
  animation: spinSlow 80s linear infinite;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.typ-deco img { width: 100%; height: 100%; object-fit: contain; }

/* Conteúdo central */
.typ-page .typ-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 580px;
  padding: 0;
  animation: fadeUp .8s ease both;
}

/* Ícone giratório */
.typ-page .typ-icon {
  width: 90px; height: 90px;
  margin: 0 auto 36px;
  transform: none;
  transition: none;
  animation: popIn .6s .1s cubic-bezier(.34,1.56,.64,1) both;
}
.typ-page .typ-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  animation: spinSlow 9s linear infinite;
}

/* Badge */
.typ-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 8px 18px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

/* Título — reseta opacity/transform herdados do overlay .typ */
.typ-page .typ-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
  opacity: 1;
  transform: none;
  transition: none;
}

/* Subtexto — reseta opacity/transform herdados do overlay .typ */
.typ-page .typ-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  font-weight: 300; line-height: 1.68;
  color: rgba(255,255,255,.65);
  margin-bottom: 38px;
  opacity: 1;
  transform: none;
  transition: none;
}

/* Caixa informativa */
.typ-page .typ-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px 32px;
  font-size: .92rem; line-height: 1.65;
  color: rgba(255,255,255,.72);
  text-align: left;
  margin-bottom: 40px;
  animation: fadeUp .8s .3s ease both;
}
.typ-page .typ-box strong { color: #fff; }

/* Botão voltar */
.typ-back {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,.78);
  font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 100px; cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
  animation: fadeUp .8s .5s ease both;
}
.typ-back:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-2px);
}

/* Confetti precisa de posição fixed na página de obrigado */
#confetti.confetti-wrap { position: fixed; z-index: 1; }

/* Nav na página de obrigado — sempre visível */
#main-nav {
  background: rgba(26,15,38,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Responsivo */
@media (max-width: 600px) {
  .typ-page              { padding: 100px 24px 60px; }
  .typ-page .typ-content { width: 100%; }
  .typ-page .typ-box     { padding: 20px; }
  .typ-deco              { width: 320px; height: 320px; }
}

@media (max-width: 480px) {
  .typ-back {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: .92rem;
  }
}
