:root {
  --bg: #030405;
  --bg-2: #07090d;
  --card: rgba(8, 11, 18, 0.9);

  --text: #f4f5f7;
  --muted: #b6bfcb;
  --muted-2: #8f97a5;

  --red: #f10f1f;
  --red-deep: #b00611;
  --gold: #d6aa35;
  --gold-2: #efc756;

  --line: rgba(255, 255, 255, 0.08);
  --red-line: rgba(241, 15, 31, 0.42);
  --gold-line: rgba(214, 170, 53, 0.28);

  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;

  --shadow-red: 0 30px 90px rgba(241, 15, 31, 0.14);
  --shadow-gold: 0 24px 80px rgba(214, 170, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(241, 15, 31, 0.1), transparent 22%),
    radial-gradient(circle at 100% 12%, rgba(214, 170, 53, 0.06), transparent 26%),
    linear-gradient(180deg, #020304 0%, #05070b 48%, #020304 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 3, 4, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-content {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 112px;
  max-height: 40px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(244, 245, 247, 0.84);
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch,
.mobile-langs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.lang {
  min-width: 42px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(244, 245, 247, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.lang.active {
  background: linear-gradient(135deg, #d2a32d, #efc756);
  color: #151106;
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(241, 15, 31, 0.22);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-panel {
  display: none;
  padding: 0 22px 22px;
  border-top: 1px solid var(--line);
  background: rgba(2, 3, 4, 0.96);
}

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding-top: 18px;
}

.mobile-nav a {
  color: rgba(244, 245, 247, 0.88);
  font-weight: 500;
}

/* GLOBAL */

.section {
  padding: 92px 0;
}

.section-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 0%, rgba(241, 15, 31, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.01);
}

.section-kicker {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker.red {
  color: var(--red);
}

.section-kicker.gold {
  color: var(--gold);
}

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

.kicker-logo img {
  width: 78px;
  object-fit: contain;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

h1 {
  font-weight: 700;
  line-height: 0.98;
}

h2 {
  font-weight: 600;
  line-height: 1.04;
}

h3 {
  font-weight: 600;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.72;
  font-weight: 400;
}

.hero-description,
.mini-feature p,
.about-copy h2,
.product-description,
.founders-contact-copy p,
.footer-center p {
  word-spacing: 0.22em;
}

.text-red {
  color: var(--red);
}

.text-gold {
  color: var(--gold);
}

/* HERO */

.hero-home {
  padding: 34px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 36px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  letter-spacing: -0.05em;
}

.hero-description {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: 1.07rem;
  line-height: 1.8;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.mini-feature {
  min-width: 0;
  min-height: 218px;
  padding: 22px 20px 20px;
  border: 1px solid var(--red-line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent),
    rgba(7, 10, 15, 0.84);
}

.mini-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--red);
  border: 1px solid rgba(241, 15, 31, 0.55);
  background:
    radial-gradient(circle at 50% 18%, rgba(241, 15, 31, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(241, 15, 31, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 0 22px rgba(241, 15, 31, 0.16),
    inset 0 0 18px rgba(241, 15, 31, 0.08);
}

.mini-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-feature h3 {
  margin-bottom: 10px;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.mini-feature p {
  margin: 0;
  font-size: clamp(0.8rem, 0.86vw, 0.92rem);
  line-height: 1.7;
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}

.signature-icon {
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
}

.signature-line {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
}

.signature-text {
  color: var(--muted);
  font-size: 1rem;
}

.signature-text strong {
  color: var(--red);
  font-weight: 700;
}

.hero-art {
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--red-line);
  border-radius: var(--radius-xl);
  background: rgba(6, 8, 12, 0.95);
  box-shadow: var(--shadow-red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.hero-banner-image {
  width: 100%;
  max-width: 540px;
  max-height: 92%;
  object-fit: contain;
  object-position: center;
}

/* SOBRE */

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.about-copy {
  min-width: 0;
}

.about-kicker {
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--red);
}

.about-kicker span {
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--red);
}

.about-copy h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  white-space: normal;
  text-wrap: balance;
}

.about-image-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* PRODUTO PRINCIPAL */

.products-section {
  padding-top: 44px;
  background:
    linear-gradient(180deg, transparent, rgba(214, 170, 53, 0.025)),
    transparent;
}

.product-highlight {
  display: grid;
  grid-template-columns: 0.9fr 1.14fr 1.06fr;
  gap: 42px;
  align-items: center;
  min-height: 390px;
  padding: 48px 58px;
  border: 1px solid rgba(214, 170, 53, 0.42);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 48% 50%, rgba(214, 170, 53, 0.16), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(214, 170, 53, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(8, 11, 18, 0.98), rgba(4, 10, 20, 0.98));
  box-shadow:
    0 0 0 1px rgba(214, 170, 53, 0.08),
    0 34px 100px rgba(214, 170, 53, 0.14),
    inset 0 0 70px rgba(214, 170, 53, 0.035);
  position: relative;
  overflow: hidden;
}

.product-highlight::before {
  content: "";
  position: absolute;
  inset: auto -10% -70px -10%;
  height: 180px;
  background: radial-gradient(circle, rgba(214, 170, 53, 0.11), transparent 62%);
  pointer-events: none;
}

.product-column {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.product-column-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 22px;
}

.product-column-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-column-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 560px;
  padding-left: 32px;
  padding-right: 0;
}

.product-brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.launch-badge-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}

.launch-badge {
  position: relative;
  z-index: 2;
  color: var(--gold-2);
  font-size: clamp(1.18rem, 1.75vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(239, 199, 86, 0.58),
    0 0 38px rgba(239, 199, 86, 0.28);
}

.launch-glow {
  width: 100%;
  height: 3px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  box-shadow:
    0 0 14px rgba(239, 199, 86, 0.72),
    0 0 34px rgba(239, 199, 86, 0.35);
}

.product-logo {
  width: clamp(265px, 21vw, 365px);
  max-height: none;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(214, 170, 53, 0.25))
    drop-shadow(0 20px 36px rgba(0, 0, 0, 0.38));
}

.product-devices-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: -16px;
}

.product-devices-wrap::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(239, 199, 86, 0.62),
      rgba(214, 170, 53, 0.27) 34%,
      transparent 72%
    );
  filter: blur(52px);
  z-index: 0;
}

.product-devices-wrap::after {
  content: "";
  position: absolute;
  inset: 2% -6%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255, 232, 150, 0.46),
      rgba(214, 170, 53, 0.16) 40%,
      transparent 74%
    );
  filter: blur(34px);
  z-index: 0;
}

.product-devices-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: clamp(480px, 38vw, 640px);
  object-fit: contain;
  filter:
    brightness(1.24)
    contrast(1.1)
    saturate(1.12)
    drop-shadow(0 0 30px rgba(239, 199, 86, 0.68))
    drop-shadow(0 0 82px rgba(214, 170, 53, 0.46))
    drop-shadow(0 28px 48px rgba(0, 0, 0, 0.52));
  transform: scale(1.15);
}

.product-description {
  width: 100%;
  max-width: 560px;
  margin: 0 0 46px;
  color: #dce2ee;
  font-size: clamp(1.08rem, 1.24vw, 1.25rem);
  line-height: 1.82;
  letter-spacing: 0.025em;
  word-spacing: 0.12em;
  text-align: left;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.primary-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.gold-button,
.primary-button.gold-button,
a.gold-button,
.product-cta.gold-button {
  background: linear-gradient(135deg, #c99620 0%, #efc756 52%, #b98518 100%);
  color: #151106;
  box-shadow:
    0 0 18px rgba(239, 199, 86, 0.34),
    0 18px 38px rgba(214, 170, 53, 0.22);
}

.product-cta {
  min-width: 170px;
  max-width: 170px;
  min-height: 48px;
  padding: 0 24px;
  margin-top: 24px;
  align-self: flex-start;
  font-size: 0.96rem;
  border-radius: 999px;
}

/* FOUNDERS / CONTATO */

.founders-contact-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 15, 31, 0.14), transparent 24%),
    #030405;
}

.founders-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 28px;
  align-items: center;
}

.founders-contact-copy {
  min-width: 0;
}

.founders-contact-copy h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  white-space: normal;
  text-wrap: balance;
  word-spacing: normal;
}

.founders-contact-copy p {
  max-width: 500px;
  font-size: 1.04rem;
  line-height: 1.8;
}

.founders-contact-form {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(241, 15, 31, 0.12), transparent 25%),
    linear-gradient(90deg, rgba(7, 10, 15, 0.96), rgba(8, 14, 24, 0.96));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.25);
}

.founders-contact-form h3 {
  margin-bottom: 16px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.form-field {
  margin-bottom: 16px;
}

.form-field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.form-field option {
  color: #111111;
  background: #ffffff;
}

.whatsapp-button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #ff1a27);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(241, 15, 31, 0.2);
}

.whatsapp-logo {
  width: 23px;
  height: 23px;
  display: block;
  flex: 0 0 23px;
  fill: currentColor;
  transform: translateY(0) rotate(0deg);
}

/* FOOTER */

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #020304;
}

.footer-content {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: 112px;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-center {
  text-align: center;
}

.footer-center p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.94rem;
}

.footer-center p + p {
  margin-top: 6px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  transition: 0.2s ease;
}

.social-links a:hover {
  color: #fff;
  border-color: var(--red-line);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* RESPONSIVO */

@media (max-width: 1180px) {
  .hero-grid,
  .split-section,
  .founders-contact-grid {
    grid-template-columns: 1fr;
  }

  .product-highlight {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
    padding: 42px 34px;
  }

  .product-column-left,
  .product-column-center,
  .product-column-right {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .product-brand,
  .launch-badge-wrap {
    align-items: center;
  }

  .launch-badge-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .product-description {
    text-align: center;
    word-spacing: 0.16em;
    margin-bottom: 40px;
  }

  .product-cta {
    align-self: center;
  }

  .product-logo {
    width: clamp(220px, 42vw, 300px);
  }

  .product-devices-image {
    max-width: clamp(320px, 58vw, 460px);
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-center {
    text-align: center;
  }

  .hero-art {
    min-height: 440px;
  }

  .about-copy h2,
  .founders-contact-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .header-content {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: flex;
  }

  .about-copy h2 {
    font-size: clamp(1.9rem, 5.6vw, 3rem);
    line-height: 1.12;
  }

  .founders-contact-copy h2 {
    font-size: clamp(1.9rem, 5.4vw, 3rem);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .hero-home {
    padding-top: 24px;
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .about-copy h2,
  .founders-contact-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.65rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .about-kicker,
  .about-kicker span {
    font-size: 0.92rem;
  }

  .hero-description,
  .mini-feature p,
  .about-copy h2,
  .product-description,
  .founders-contact-copy p,
  .footer-center p {
    word-spacing: 0.08em;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
  }

  .mini-feature {
    min-height: auto;
  }

  .hero-art {
    min-height: 320px;
    padding: 16px;
  }

  .hero-banner-image {
    max-width: 90%;
  }

  .product-highlight {
    padding: 34px 24px;
  }

  .launch-badge {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
  }

  .product-logo {
    width: min(275px, 88vw);
  }

  .product-devices-image {
    max-width: min(330px, 86vw);
    transform: scale(1.02);
  }

  .product-description {
    font-size: 1rem;
    line-height: 1.72;
    word-spacing: 0.08em;
  }

  .product-cta,
  .primary-button {
    width: 100%;
    max-width: none;
  }

  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== AJUSTE LIMPO - MBROKER ===== */

.product-brand {
  width: clamp(265px, 21vw, 365px);
  align-items: center;
  margin: 0 auto;
}

.launch-badge-wrap {
  width: 100%;
  align-items: center;
  text-align: center;
  margin-bottom: 18px;
}

.launch-badge {
  width: 100%;
  display: block;
  text-align: center;
  letter-spacing: 0.26em;
}

.launch-glow {
  width: 78%;
  margin-left: auto;
  margin-right: auto;
}

.product-cta {
  min-width: 170px;
  max-width: 170px;
  min-height: 48px;
  padding: 0 24px;
  margin-top: 24px;
  align-self: flex-start;
  font-size: 0.96rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c99620 0%, #efc756 52%, #b98518 100%);
  color: #151106;
  box-shadow:
    0 0 18px rgba(239, 199, 86, 0.34),
    0 18px 38px rgba(214, 170, 53, 0.22);
}

@media (max-width: 1180px) {
  .launch-badge-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(50px); /* Aumente este valor se precisar mais para a direita */
  margin-bottom: 18px;
}

  .product-description {
    width: 100%;
    max-width: 560px;
    text-align: center;
  }
  
  .product-cta {
    align-self: center;
  }
}

/* ========================================= */
/* AJUSTES FINAIS - ALINHAMENTOS E POSIÇÕES  */
/* ========================================= */

/* 1. Mover o "LANÇAMENTO" para a direita */
.launch-badge-wrap {
  transform: translateX(10px) !important; /* Aumente este número (ex: 45px, 50px) para ir mais pra direita */
}

/* 2. Empurrar toda a coluna de texto/botão bastante para a direita */
.product-column-right {
  padding-left: 0px !important; /* Aumente este número se quiser o bloco ainda mais pra direita */
  align-items: center !important; /* Isso é o que garante que o botão fique centralizado */
}

/* 3. Manter o texto à esquerda, mas deixá-lo mais compacto para o botão centralizar bonito embaixo */
.product-description {
  max-width: 550px !important; 
  text-align: left !important;
  margin-bottom: 50px !important; /* Espaço entre o texto e o botão */
}

/* 4. Cravar o botão no centro do bloco de texto */
.product-cta {
  align-self: center !important;
  margin-top: 0 !important;
}/* CORREÇÃO FINAL DO TEXTO MBROKER */

.product-description {
  max-width: 590px !important;
  text-align: left !important;
  word-spacing: normal !important;
  letter-spacing: 0.025em !important;
  line-height: 1.82 !important;
  margin-bottom: 50px !important;
}

.product-cta {
  align-self: center !important;
  margin-top: 0 !important;
}/* ================================================= */
/* CORREÇÃO FINAL - ESPAÇAMENTO DOS TEXTOS DA HOME   */
/* ================================================= */

/* HERO / PRIMEIRA DOBRA */
.hero-copy h1 {
  letter-spacing: -0.025em !important;
  word-spacing: normal !important;
}

.hero-description {
  letter-spacing: 0.015em !important;
  word-spacing: 0.12em !important;
  line-height: 1.85 !important;
}

/* CARDS DA PRIMEIRA DOBRA */
.mini-feature h3 {
  letter-spacing: 0 !important;
  word-spacing: normal !important;
  line-height: 1.25 !important;
}

.mini-feature p {
  letter-spacing: 0.01em !important;
  word-spacing: 0.08em !important;
  line-height: 1.75 !important;
}

/* FOUNDERS / CONTATO */
.founders-contact-copy h2 {
  letter-spacing: -0.02em !important;
  word-spacing: normal !important;
  line-height: 1.12 !important;
}

.founders-contact-copy p {
  letter-spacing: 0.01em !important;
  word-spacing: 0.10em !important;
  line-height: 1.85 !important;
}

.founders-contact-form h3,
.founders-contact-form select,
.whatsapp-button {
  letter-spacing: 0.01em !important;
  word-spacing: normal !important;
}

/* RODAPÉ */
.footer-center p {
  letter-spacing: 0.01em !important;
  word-spacing: 0.08em !important;
}/* ================================================= */
/* ASSISTENTE WELLER - DCS                           */
/* ================================================= */

.weller-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.weller-toggle {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(214, 170, 53, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #f10f1f, #b00611);
  box-shadow:
    0 0 0 6px rgba(241, 15, 31, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.45),
    0 0 34px rgba(241, 15, 31, 0.28);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.weller-toggle:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
}

.weller-toggle-image {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.weller-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 170, 53, 0.28), transparent 62%);
  animation: wellerPulse 2.4s ease-in-out infinite;
  z-index: 1;
}

@keyframes wellerPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.25;
  }

  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
}

.weller-panel {
  position: absolute;
  right: 0;
  bottom: 94px;
  width: min(360px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(214, 170, 53, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(241, 15, 31, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(214, 170, 53, 0.14), transparent 34%),
    rgba(6, 8, 12, 0.97);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.weller-assistant[data-open="true"] .weller-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.weller-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 245, 247, 0.86);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.weller-panel-header {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding-right: 26px;
  margin-bottom: 16px;
}

.weller-avatar-card {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(214, 170, 53, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

.weller-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.weller-kicker {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.weller-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.weller-message {
  margin: 0 0 18px;
  color: rgba(244, 245, 247, 0.78);
  font-size: 0.96rem;
  line-height: 1.72;
  word-spacing: normal;
}

.weller-actions {
  display: grid;
  gap: 10px;
}

.weller-primary,
.weller-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.weller-primary {
  background: linear-gradient(135deg, #f10f1f, #b00611);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(241, 15, 31, 0.2);
}

.weller-secondary {
  border: 1px solid rgba(214, 170, 53, 0.34);
  background: rgba(255, 255, 255, 0.03);
  color: #efc756;
}

.weller-primary:hover,
.weller-secondary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (max-width: 680px) {
  .weller-assistant {
    right: 16px;
    bottom: 16px;
  }

  .weller-toggle {
    width: 68px;
    height: 68px;
  }

  .weller-toggle-image {
    width: 62px;
    height: 62px;
  }

  .weller-panel {
    right: -2px;
    bottom: 82px;
    padding: 20px;
  }
}/* ================================================= */
/* MBROKER PAGE - CORREÇÕES VISUAIS                  */
/* ================================================= */

.mbroker-header-content {
  grid-template-columns: auto 1fr auto auto;
}

.mbroker-desktop-nav {
  justify-content: center;
  gap: 22px;
}

.mbroker-top-brand,
.mbroker-mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(214, 170, 53, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.mbroker-top-brand img,
.mbroker-mobile-brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.mbroker-top-brand span,
.mbroker-mobile-brand span {
  color: #f4f5f7;
  font-size: 0.95rem;
  font-weight: 700;
}

.mbroker-mobile-brand {
  margin-top: 16px;
}

.mbroker-page-hero {
  padding: 82px 0 88px;
  border-bottom: 1px solid var(--line);
}

.mbroker-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 40px;
  align-items: center;
}

.mbroker-copy {
  min-width: 0;
}

.mbroker-logo {
  width: clamp(160px, 16vw, 220px);
  margin-bottom: 22px;
}

.light-title {
  color: #ffffff;
}

.mbroker-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mbroker-copy p {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: 1.02rem;
  line-height: 1.82;
}

.mbroker-page-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border: 1px solid rgba(214, 170, 53, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 53, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.mbroker-page-image img {
  width: 100%;
  max-width: 470px;
  object-fit: contain;
  filter:
    brightness(1.02)
    contrast(1.03)
    saturate(1.03)
    drop-shadow(0 24px 44px rgba(0, 0, 0, 0.34));
}

.mbroker-flag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.flag-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(214, 170, 53, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #f4f5f7;
  font-size: 0.92rem;
  font-weight: 600;
}

.flag-chip img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
}

.mbroker-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mbroker-meta-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(214, 170, 53, 0.08);
  color: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-heading.center {
  text-align: center;
}

.mbroker-heading {
  margin-bottom: 28px;
}

.mbroker-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mbroker-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.mbroker-image-grid {
  display: grid;
  gap: 28px;
}

.image-feature-card {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(214, 170, 53, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 53, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.image-feature-card img {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 22px;
  object-fit: contain;
  display: block;
}

.image-feature-content {
  display: none;
}

.mbroker-segments-section {
  border-top: 1px solid var(--line);
}

.segment-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 30px;
}

.segment-showcase-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.segment-showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(214, 170, 53, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.025);
}

.segment-showcase-visual img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
}

.segment-grid-pretty {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.segment-card {
  min-height: 200px;
  padding: 20px;
  border: 1px solid rgba(214, 170, 53, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 53, 0.08), transparent 28%),
    rgba(8, 11, 18, 0.9);
}

.segment-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(214, 170, 53, 0.1);
  font-size: 1.5rem;
}

.segment-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.08rem;
}

.segment-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.68;
}

.founder-program-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 30px;
  text-align: center;
  border: 1px solid rgba(214, 170, 53, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 53, 0.12), transparent 28%),
    radial-gradient(circle at top left, rgba(241, 15, 31, 0.1), transparent 26%),
    rgba(8, 11, 18, 0.94);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.26);
}

.founder-program-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.founder-program-card p {
  margin-bottom: 22px;
  font-size: 1.02rem;
}

.founder-gold-button {
  background: linear-gradient(135deg, #c99620 0%, #efc756 52%, #b98518 100%);
  color: #151106;
  box-shadow:
    0 0 18px rgba(239, 199, 86, 0.34),
    0 18px 38px rgba(214, 170, 53, 0.22);
}

@media (max-width: 1180px) {
  .mbroker-page-grid,
  .segment-showcase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .mbroker-desktop-nav,
  .mbroker-top-brand {
    display: none;
  }

  .mbroker-header-content {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 680px) {
  .mbroker-page-hero {
    padding: 64px 0 68px;
  }

  .segment-grid-pretty {
    grid-template-columns: 1fr;
  }

  .flag-chip {
    width: 100%;
    justify-content: center;
  }

  .mbroker-meta-strip span {
    width: 100%;
    justify-content: center;
  }

  .founder-program-card {
    padding: 28px 20px;
  }
}

/* ================================================= */
/* WELLER V2                                         */
/* ================================================= */

.weller-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.weller-assistant[data-mode="minimized"] .weller-toggle,
.weller-assistant[data-mode="minimized"] .weller-panel {
  display: none !important;
}

.weller-assistant[data-mode="floating"] .weller-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
}

.weller-assistant[data-mode="open"] .weller-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.weller-toggle {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(214, 170, 53, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #f10f1f, #b00611);
  box-shadow:
    0 0 0 6px rgba(241, 15, 31, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.45),
    0 0 34px rgba(241, 15, 31, 0.28);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.weller-toggle:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
}

.weller-toggle-image {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.weller-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 170, 53, 0.28), transparent 62%);
  animation: wellerPulse 2.4s ease-in-out infinite;
  z-index: 1;
}

@keyframes wellerPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.25;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
}

.weller-panel {
  position: absolute;
  right: 0;
  bottom: 94px;
  width: min(390px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(214, 170, 53, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(241, 15, 31, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(214, 170, 53, 0.14), transparent 34%),
    rgba(6, 8, 12, 0.97);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.weller-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 245, 247, 0.86);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.weller-panel-header {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding-right: 26px;
  margin-bottom: 16px;
}

.weller-avatar-card {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(214, 170, 53, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

.weller-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.weller-kicker {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.weller-kicker-brand {
  color: var(--red);
}

.weller-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.weller-message {
  margin: 0 0 16px;
  color: rgba(244, 245, 247, 0.78);
  font-size: 0.96rem;
  line-height: 1.72;
}

.weller-ask-box {
  margin-bottom: 18px;
}

.weller-ask-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(214, 170, 53, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  outline: none;
}

.weller-ask-input::placeholder {
  color: rgba(244, 245, 247, 0.54);
}

.weller-faq-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  max-height: 180px;
  overflow-y: auto;
}

.weller-faq-item {
  width: 100%;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 245, 247, 0.84);
  cursor: pointer;
  transition: 0.2s ease;
}

.weller-faq-item:hover {
  border-color: rgba(214, 170, 53, 0.24);
  background: rgba(214, 170, 53, 0.08);
}

.weller-answer {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(214, 170, 53, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  display: none;
}

.weller-answer.is-visible {
  display: block;
}

.weller-answer strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 0.94rem;
}

.weller-answer p {
  margin: 0;
  color: rgba(244, 245, 247, 0.78);
  font-size: 0.92rem;
  line-height: 1.68;
}

.weller-help-link {
  display: inline-flex;
  margin-top: 12px;
  color: #efc756;
  font-size: 0.9rem;
  font-weight: 700;
}

.weller-actions {
  display: grid;
  gap: 10px;
}

.weller-primary,
.weller-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.weller-primary {
  background: linear-gradient(135deg, #f10f1f, #b00611);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(241, 15, 31, 0.2);
}

.weller-secondary {
  border: 1px solid rgba(214, 170, 53, 0.34);
  background: rgba(255, 255, 255, 0.03);
  color: #efc756;
}

.weller-primary:hover,
.weller-secondary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.weller-footer-mini {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(214, 170, 53, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  overflow: hidden;
}

.weller-footer-mini.is-visible {
  display: grid;
}

.weller-footer-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 680px) {
  .weller-assistant {
    right: 16px;
    bottom: 16px;
  }

  .weller-toggle {
    width: 68px;
    height: 68px;
  }

  .weller-toggle-image {
    width: 62px;
    height: 62px;
  }

  .weller-panel {
    right: -2px;
    bottom: 82px;
    padding: 20px;
  }
}/* ================================================= */
/* CORREÇÕES FINAIS - WELLER                         */
/* ================================================= */

.weller-assistant {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 9999 !important;
}

.weller-assistant[data-mode="minimized"] {
  display: none !important;
}

.weller-assistant[data-mode="floating"] .weller-panel {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(14px) scale(0.96) !important;
}

.weller-assistant[data-mode="open"] .weller-panel {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.weller-panel {
  width: min(380px, calc(100vw - 32px)) !important;
  max-height: calc(100vh - 150px) !important;
  overflow-y: auto !important;
  padding: 22px !important;
}

.weller-panel-header {
  display: grid !important;
  grid-template-columns: 72px 1fr !important;
  gap: 14px !important;
  align-items: center !important;
  margin-bottom: 16px !important;
}

.weller-kicker-brand {
  color: var(--red) !important;
}

.weller-actions,
.weller-primary,
.weller-secondary {
  display: none !important;
}

.weller-faq-list {
  display: none;
  gap: 8px;
  margin-top: 12px;
  max-height: 170px;
  overflow-y: auto;
}

.weller-faq-list.is-visible {
  display: grid;
}

.weller-help-link {
  display: inline-block !important;
  margin-top: 12px !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

.weller-help-link span {
  color: var(--red) !important;
}

.weller-footer-mini {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(241, 15, 31, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  overflow: hidden;
}

.weller-footer-mini.is-visible {
  display: grid !important;
}

.weller-footer-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================= */
/* CORREÇÕES MBROKER - BANDEIRAS                     */
/* ================================================= */

.flag-chip {
  width: 56px !important;
  min-width: 56px !important;
  height: 42px !important;
  min-height: 42px !important;
  justify-content: center !important;
  padding: 0 !important;
  gap: 0 !important;
  font-size: 0 !important;
}

.flag-chip img {
  width: 30px !important;
  height: 21px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
}

/* ================================================= */
/* CORREÇÕES MBROKER - ESPAÇAMENTO DOS TEXTOS        */
/* ================================================= */

.founder-program-card h2 {
  line-height: 1.28 !important;
  letter-spacing: 0.01em !important;
  word-spacing: 0.08em !important;
}

.founder-program-card p {
  line-height: 1.9 !important;
  letter-spacing: 0.01em !important;
  word-spacing: 0.08em !important;
}

.founder-program-card .section-kicker {
  line-height: 1.8 !important;
  letter-spacing: 0.28em !important;
}/* ================================================= */
/* CORREÇÕES MBROKER - TOPO E ESPAÇAMENTO FINAL      */
/* ================================================= */

/* Topo da página Mbroker: aproxima Início/Fale conosco do selo Mbroker */
.mbroker-header-content {
  grid-template-columns: auto 1fr auto auto !important;
  gap: 18px !important;
}

.mbroker-desktop-nav {
  justify-content: flex-end !important;
  justify-self: end !important;
  gap: 22px !important;
  margin-left: auto !important;
  margin-right: 8px !important;
}

.mbroker-desktop-nav a {
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  word-spacing: normal !important;
}

.mbroker-top-brand {
  justify-self: end !important;
  margin-left: 6px !important;
  padding: 11px 18px !important;
  gap: 12px !important;
}

.mbroker-top-brand img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
}

.mbroker-top-brand span {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
}

/* Logo principal do Mbroker na primeira dobra */
.mbroker-copy {
  max-width: 660px !important;
}

.mbroker-logo {
  width: clamp(210px, 18vw, 280px) !important;
  margin: 0 auto 30px !important;
}

/* Textos da página Mbroker com espaçamento mais natural */
.mbroker-copy h1,
.mbroker-heading h2,
.segment-showcase-copy h2,
.founder-program-card h2 {
  word-spacing: 0.02em !important;
  letter-spacing: -0.018em !important;
}

.mbroker-copy p,
.mbroker-heading p,
.segment-showcase-copy p,
.segment-card p,
.founder-program-card p,
.footer-center p {
  word-spacing: 0.03em !important;
  letter-spacing: 0.005em !important;
}

/* Card Founder Partner: reduz espaçamento exagerado */
.founder-program-card .section-kicker {
  letter-spacing: 0.16em !important;
  word-spacing: 0.04em !important;
  line-height: 1.5 !important;
}

.founder-program-card h2 {
  line-height: 1.2 !important;
  word-spacing: 0.02em !important;
  letter-spacing: -0.015em !important;
}

.founder-program-card p {
  line-height: 1.65 !important;
  word-spacing: 0.02em !important;
  letter-spacing: normal !important;
}

/* Responsivo */
@media (max-width: 980px) {
  .mbroker-desktop-nav,
  .mbroker-top-brand {
    display: none !important;
  }

  .mbroker-logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}/* ================================================= */
/* MBROKER - SUBIR PRIMEIRA DOBRA                    */
/* ================================================= */

.mbroker-page-hero {
  padding-top: 34px !important;
  padding-bottom: 70px !important;
}

.mbroker-page-grid {
  align-items: start !important;
  transform: translateY(-34px) !important;
}

.mbroker-copy {
  padding-top: 0 !important;
}

.mbroker-logo {
  margin-top: 0 !important;
  margin-bottom: 22px !important;
}

.mbroker-page-image {
  margin-top: 18px !important;
}

/* Mantém seguro no celular */
@media (max-width: 980px) {
  .mbroker-page-grid {
    transform: translateY(-18px) !important;
  }

  .mbroker-page-hero {
    padding-top: 28px !important;
  }
}/* ================================================= */
/* AJUSTE FINAL MBROKER + WELLER                     */
/* ================================================= */

/* TOPO: empurra Início, Fale conosco e Mbroker mais para a direita */
.container.mbroker-header-content {
  width: calc(100% - 56px) !important;
  max-width: none !important;
  grid-template-columns: auto 1fr auto auto !important;
  gap: 12px !important;
}

.mbroker-desktop-nav {
  justify-self: end !important;
  justify-content: flex-end !important;
  gap: 22px !important;
  margin-left: auto !important;
  margin-right: 10px !important;
}

.mbroker-top-brand {
  justify-self: end !important;
  margin-left: 8px !important;
  padding: 12px 20px !important;
  gap: 13px !important;
}

.mbroker-top-brand img {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain !important;
}

.mbroker-top-brand span {
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

/* PRIMEIRA DOBRA: sobe o texto, sem cortar mais o logo */
.mbroker-logo {
  width: clamp(220px, 19vw, 292px) !important;
  margin-top: 0 !important;
  margin-bottom: 6px !important;
}

.mbroker-copy h1 {
  margin-top: -18px !important;
  margin-bottom: 20px !important;
}

.mbroker-copy p {
  margin-top: 0 !important;
}

/* diminui mais o espaçamento entre palavras */
.mbroker-copy h1,
.mbroker-heading h2,
.segment-showcase-copy h2,
.founder-program-card h2 {
  word-spacing: -0.02em !important;
  letter-spacing: -0.032em !important;
}

.mbroker-copy p,
.mbroker-heading p,
.segment-showcase-copy p,
.segment-card p,
.founder-program-card p,
.footer-center p {
  word-spacing: 0 !important;
  letter-spacing: -0.004em !important;
}

.founder-program-card .section-kicker {
  letter-spacing: 0.1em !important;
  word-spacing: 0 !important;
}

.founder-program-card h2 {
  line-height: 1.15 !important;
}

/* WELLER: deixa o botão pequeno com X visível */
.weller-toggle {
  overflow: visible !important;
  cursor: grab !important;
}

.weller-toggle:active {
  cursor: grabbing !important;
}

.weller-toggle-close {
  position: absolute !important;
  top: -7px !important;
  right: -7px !important;
  z-index: 30 !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 50% !important;
  background: rgba(3, 4, 5, 0.96) !important;
  color: transparent !important;
  cursor: pointer !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45) !important;
}

.weller-toggle-close::before {
  content: "×";
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-1px);
}

/* X do balão grande centralizado de verdade */
.weller-close {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-radius: 50% !important;
  color: transparent !important;
  line-height: 1 !important;
  text-align: center !important;
}

.weller-close::before {
  content: "×";
  color: rgba(244, 245, 247, 0.92);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

/* Logo DCS no título do Weller maior */
.weller-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  white-space: nowrap !important;
}

.weller-kicker-logo {
  width: 44px !important;
  height: auto !important;
  display: inline-block !important;
  object-fit: contain !important;
  transform: translateY(1px) !important;
}

/* Balão do Weller arrastável */
.weller-panel {
  max-height: calc(100vh - 150px) !important;
  overflow-y: auto !important;
}

.weller-panel-header {
  cursor: grab !important;
  user-select: none !important;
}

.weller-panel-header:active {
  cursor: grabbing !important;
}

/* Botão pequeno no rodapé */
.weller-footer-mini {
  width: 42px !important;
  height: 42px !important;
  display: none !important;
  place-items: center !important;
  padding: 0 !important;
  border: 1px solid rgba(241, 15, 31, 0.35) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.03) !important;
  cursor: pointer !important;
  overflow: hidden !important;
}

.weller-footer-mini.is-visible {
  display: grid !important;
}

.weller-footer-mini img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}/* ================================================= */
/* PATCH FINAL - MBROKER HERO + WELLER               */
/* ================================================= */

/* Desce a imagem da direita para alinhar melhor com o texto */
.mbroker-page-image {
  margin-top: 88px !important;
}

/* Ajuste fino do topo */
.container.mbroker-header-content {
  width: calc(100% - 48px) !important;
  max-width: none !important;
}

.mbroker-desktop-nav {
  justify-self: end !important;
  margin-left: auto !important;
  margin-right: 12px !important;
  gap: 24px !important;
}

.mbroker-top-brand {
  justify-self: end !important;
  margin-left: 6px !important;
}

/* Espaçamento dos textos um pouco menor */
.mbroker-copy h1,
.mbroker-heading h2,
.segment-showcase-copy h2,
.founder-program-card h2 {
  word-spacing: -0.035em !important;
  letter-spacing: -0.036em !important;
}

.mbroker-copy p,
.mbroker-heading p,
.segment-showcase-copy p,
.segment-card p,
.founder-program-card p,
.footer-center p {
  word-spacing: -0.01em !important;
  letter-spacing: -0.006em !important;
}

/* Weller: botão com imagem não pode esconder o X */
.weller-toggle {
  overflow: visible !important;
  cursor: grab !important;
  touch-action: none !important;
}

.weller-toggle:active {
  cursor: grabbing !important;
}

/* Remove bolinha do X pequeno e deixa só o X */
.weller-toggle-close {
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  z-index: 50 !important;
  width: 26px !important;
  height: 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.weller-toggle-close::before {
  content: "×" !important;
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85) !important;
}

/* X do balão grande centralizado */
.weller-close {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-radius: 50% !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.weller-close::before {
  content: "×" !important;
  color: rgba(244, 245, 247, 0.92) !important;
  font-size: 23px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

/* Logo da DCS no texto "Assistente da" maior */
.weller-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.weller-kicker-logo {
  width: 58px !important;
  height: auto !important;
  display: inline-block !important;
  object-fit: contain !important;
  transform: translateY(1px) !important;
}

/* Balão grande arrastável pelo topo */
.weller-panel-header {
  cursor: grab !important;
  user-select: none !important;
  touch-action: none !important;
}

.weller-panel-header:active {
  cursor: grabbing !important;
}

@media (max-width: 980px) {
  .mbroker-page-image {
    margin-top: 26px !important;
  }
}/* ================================================= */
/* PATCH FINAL WELLER - X SEM BOLINHA + DCS TEXTO    */
/* ================================================= */

/* Remove a bolinha do X do balão grande */
.weller-close {
  width: 32px !important;
  height: 32px !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  text-align: center !important;
}

/* Remove qualquer X duplicado criado por CSS antigo */
.weller-close::before,
.weller-close::after {
  content: none !important;
  display: none !important;
}

/* Remove a bolinha do X pequeno do botão flutuante */
.weller-toggle-close {
  position: absolute !important;
  top: -10px !important;
  right: -8px !important;
  z-index: 50 !important;
  width: 26px !important;
  height: 26px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 25px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  text-align: center !important;
  cursor: pointer !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85) !important;
}

/* Remove qualquer X duplicado criado por CSS antigo */
.weller-toggle-close::before,
.weller-toggle-close::after {
  content: none !important;
  display: none !important;
}

/* Volta o DCS em texto vermelho no título do Weller */
.weller-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  color: var(--gold) !important;
}

.weller-kicker-brand {
  color: var(--red) !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
}

/* Garante que nenhum logo apareça no lugar do DCS */
.weller-kicker-logo {
  display: none !important;
}/* ================================================= */
/* PATCH FINAL - WELLER SEM BOLINHAS E SEM TÍTULO    */
/* ================================================= */

/* Remove a frase ASSISTENTE DA DCS da tela do Weller */
#wellerKicker,
.weller-kicker {
  display: none !important;
}

/* Remove qualquer logo DCS que tenha sido injetado no título */
.weller-kicker-logo,
.weller-kicker-brand {
  display: none !important;
}

/* X pequeno do botão flutuante: sem bolinha, só o X */
#wellerToggleClose,
.weller-toggle-close {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: absolute !important;
  top: -8px !important;
  right: -6px !important;
  z-index: 99999 !important;

  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;

  padding: 0 !important;
  margin: 0 !important;

  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  color: #ffffff !important;
  font-size: 25px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: center !important;
  cursor: pointer !important;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95) !important;
}

/* Remove X duplicado criado por patches anteriores */
#wellerToggleClose::before,
#wellerToggleClose::after,
.weller-toggle-close::before,
.weller-toggle-close::after {
  content: none !important;
  display: none !important;
}

/* X do balão grande: sem bolinha, só o X */
#wellerClose,
.weller-close {
  appearance: none !important;
  -webkit-appearance: none !important;

  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;

  padding: 0 !important;
  margin: 0 !important;

  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  color: #ffffff !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
  cursor: pointer !important;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95) !important;
}

/* Remove X duplicado do balão grande */
#wellerClose::before,
#wellerClose::after,
.weller-close::before,
.weller-close::after {
  content: none !important;
  display: none !important;
}/* ================================================= */
/* MBROKER - SELETOR DE IDIOMAS NO TOPO              */
/* ================================================= */

.container.mbroker-header-content {
  width: calc(100% - 48px) !important;
  max-width: none !important;
  grid-template-columns: auto 1fr auto auto auto !important;
  gap: 14px !important;
}

.mbroker-desktop-nav {
  justify-self: end !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
  margin-right: 4px !important;
  gap: 24px !important;
}

.mbroker-lang-switch {
  justify-self: end !important;
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.mbroker-top-brand {
  justify-self: end !important;
  margin-left: 4px !important;
}

/* Mobile */
.mbroker-mobile-langs {
  margin-top: 16px !important;
  justify-content: center !important;
}

@media (max-width: 980px) {
  .mbroker-lang-switch {
    display: none !important;
  }

  .container.mbroker-header-content {
    grid-template-columns: auto auto !important;
    width: min(100% - 28px, 1180px) !important;
  }
}.segment-showcase-copy .section-kicker {
  display: none !important;
}/* ================================================= */
/* MBROKER - REMOVER TEXTOS AMARELOS DE APOIO        */
/* ================================================= */

/* Remove o texto amarelo acima do título "Uma plataforma..." */
.mbroker-heading .section-kicker,
.mbroker-heading > .section-kicker,
.mbroker-heading > p.section-kicker.gold {
  display: none !important;
}

/* Remove o texto amarelo acima da seção de segmentos */
.segment-showcase-copy .section-kicker,
.segment-showcase-copy > .section-kicker,
.segment-showcase-copy > p.section-kicker.gold {
  display: none !important;
}/* ================================================= */
/* RODAPÉ - EFEITO HOVER VERMELHO NOS BOTÕES         */
/* ================================================= */

.site-footer .social-links a,
.site-footer .social-links button,
.weller-footer-mini {
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease !important;
}

/* Efeito ao passar o mouse nos ícones do rodapé */
.site-footer .social-links a:hover,
.site-footer .social-links button:hover,
.weller-footer-mini:hover {
  transform: translateY(-5px) scale(1.06) !important;
  border-color: rgba(241, 15, 31, 0.78) !important;
  background: rgba(241, 15, 31, 0.12) !important;
  box-shadow:
    0 0 0 5px rgba(241, 15, 31, 0.08),
    0 14px 32px rgba(241, 15, 31, 0.22) !important;
  filter: brightness(1.08) !important;
}

/* Ícones SVG ficam vermelhos */
.site-footer .social-links a:hover svg,
.site-footer .social-links button:hover svg {
  color: var(--red) !important;
  fill: var(--red) !important;
  stroke: var(--red) !important;
}

/* Imagem do Weller ganha brilho vermelho no hover */
.weller-footer-mini:hover img {
  filter:
    brightness(1.08)
    saturate(1.12)
    drop-shadow(0 0 10px rgba(241, 15, 31, 0.65)) !important;
}

/* Clique: dá sensação de botão pressionado */
.site-footer .social-links a:active,
.site-footer .social-links button:active,
.weller-footer-mini:active {
  transform: translateY(-2px) scale(0.98) !important;
}/* ================================================= */
/* PATCH - WELLER NÃO BLOQUEAR HOVER DO RODAPÉ       */
/* ================================================= */

/* O container geral do Weller não deve bloquear mouse */
.weller-assistant {
  pointer-events: none !important;
}

/* Só os elementos reais do Weller recebem clique/mouse */
.weller-toggle,
.weller-toggle *,
.weller-toggle-close,
.weller-panel,
.weller-panel *,
.weller-footer-mini,
.weller-footer-mini * {
  pointer-events: auto !important;
}

/* Quando o painel está fechado, ele não interfere em nada */
.weller-assistant[data-mode="floating"] .weller-panel {
  pointer-events: none !important;
}

/* Quando o Weller está minimizado no rodapé, só o botão pequeno funciona */
.weller-assistant[data-mode="minimized"] {
  pointer-events: none !important;
}

/* Garante que os botões do rodapé fiquem interativos normalmente */
.site-footer,
.site-footer .footer-content,
.site-footer .social-links,
.site-footer .social-links a,
.site-footer .social-links button {
  pointer-events: auto !important;
}

/* Mantém o hover vermelho funcionando em todos */
.site-footer .social-links a:hover,
.site-footer .social-links button:hover,
.weller-footer-mini:hover {
  transform: translateY(-5px) scale(1.06) !important;
  border-color: rgba(241, 15, 31, 0.78) !important;
  background: rgba(241, 15, 31, 0.12) !important;
  box-shadow:
    0 0 0 5px rgba(241, 15, 31, 0.08),
    0 14px 32px rgba(241, 15, 31, 0.22) !important;
  filter: brightness(1.08) !important;
}/* ================================================= */
/* PATCH - REMOVER FLASH BRANCO AO ROLAR A PÁGINA    */
/* ================================================= */

/* Garante fundo escuro até quando o navegador repinta rápido */
html,
body {
  background: #020305 !important;
  background-color: #020305 !important;
  overscroll-behavior-y: none !important;
}

/* Cria uma camada escura fixa por trás de todo o site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -9999;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 15, 31, 0.08), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(214, 170, 53, 0.06), transparent 28%),
    linear-gradient(180deg, #050608 0%, #020305 52%, #000000 100%) !important;
}

/* Evita que sections revelem branco durante scroll rápido */
main,
section,
.site-header,
.site-footer,
.hero-home,
.section,
.section-soft,
.products-section,
.founders-contact-section,
.mbroker-page-hero,
.mbroker-segments-section {
  background-color: transparent !important;
}

/* Força as áreas principais a manterem fundo escuro */
body,
main {
  min-height: 100vh;
  color: #f4f5f7;
}

/* Evita flash em cards/imagens durante repaint */
img,
.image-feature-card,
.mbroker-page-image,
.segment-showcase-visual,
.founder-program-card,
.product-highlight,
.about-image-card {
  backface-visibility: hidden !important;
  transform: translateZ(0);
}

/* Evita que imagens com carregamento lento mostrem fundo branco */
img {
  background-color: transparent !important;
}

/* Fundo escuro de segurança nos blocos grandes */
.image-feature-card,
.mbroker-page-image,
.segment-showcase-visual,
.founder-program-card,
.segment-card,
.mini-feature,
.founders-contact-form {
  background-color: rgba(5, 7, 12, 0.94) !important;
}

/* Corrige possíveis flashes no Chrome durante rolagem acelerada */
* {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  body {
    will-change: scroll-position;
  }
}/* ================================================= */
/* PATCH - CORRIGIR SCROLL DO MOUSE                  */
/* ================================================= */

html,
body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior-y: auto !important;
  scroll-behavior: auto !important;
}

/* Remove possível travamento causado por otimização de scroll */
body {
  will-change: auto !important;
}

/* Mantém o fundo escuro sem bloquear rolagem */
body::before {
  pointer-events: none !important;
}

/* Garante que o conteúdo principal continue rolável */
main {
  overflow: visible !important;
}

/* Evita que alguma seção capture ou trave o scroll */
section,
.site-header,
.site-footer {
  overflow: visible;
}/* ================================================= */
/* MODAL MATERIAL FOUNDER PARTNER                    */
/* ================================================= */

.founder-download-button {
  margin-top: 14px !important;
  border: 1px solid rgba(239, 199, 86, 0.34) !important;
  cursor: pointer !important;
}

.founder-material-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.founder-material-modal.is-open {
  display: flex;
}

.founder-material-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.founder-material-card {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid rgba(214, 170, 53, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(214, 170, 53, 0.12), transparent 32%),
    radial-gradient(circle at top left, rgba(241, 15, 31, 0.10), transparent 30%),
    rgba(7, 9, 14, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.founder-material-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.founder-material-card h3 {
  margin: 8px 0 12px;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.founder-material-text {
  margin: 0 0 20px;
  color: rgba(244, 245, 247, 0.75);
  line-height: 1.7;
}

.founder-material-form {
  display: grid;
  gap: 14px;
}

.founder-material-form label {
  display: grid;
  gap: 7px;
  color: rgba(244, 245, 247, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.founder-material-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(214, 170, 53, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  font: inherit;
  outline: none;
}

.founder-material-form input:focus {
  border-color: rgba(239, 199, 86, 0.7);
  box-shadow: 0 0 0 4px rgba(239, 199, 86, 0.08);
}

.founder-material-error {
  min-height: 22px;
  margin: 0;
  color: #ff5d69;
  font-size: 0.9rem;
  font-weight: 700;
}

.founder-material-success {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(214, 170, 53, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.founder-material-success strong {
  color: #ffffff;
  display: block;
  margin-bottom: 6px;
}

.founder-material-success p {
  margin: 0 0 16px;
  color: rgba(244, 245, 247, 0.75);
  line-height: 1.6;
}/* ================================================= */
/* PATCH - BOTÕES FOUNDER EM COLUNA + MODAL ROLÁVEL  */
/* ================================================= */

/* Botões do card Founder ficam um embaixo do outro */
.founder-program-card > .founder-gold-button {
  width: min(520px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
}

.founder-program-card > .founder-gold-button + .founder-gold-button,
.founder-program-card > .founder-download-button {
  margin-top: 16px !important;
}

/* Botão de material com mesmo padrão visual */
.founder-download-button {
  border: 0 !important;
  cursor: pointer !important;
}

/* Modal sempre cabendo dentro da tela */
.founder-material-modal {
  align-items: center !important;
  justify-content: center !important;
  overflow-y: auto !important;
  padding: 24px !important;
}

/* Caixa do formulário com rolagem interna quando necessário */
.founder-material-card {
  max-height: calc(100vh - 56px) !important;
  overflow-y: auto !important;
  margin: auto !important;
  scrollbar-width: thin;
}

/* Melhora o espaçamento interno no modal */
.founder-material-form {
  padding-bottom: 4px !important;
}

/* Garante que o botão de liberar fique acessível */
.founder-material-form .founder-gold-button,
.founder-material-success .founder-gold-button {
  width: 100% !important;
  margin-top: 10px !important;
}

/* Em telas menores, reduz altura e padding */
@media (max-height: 760px) {
  .founder-material-card {
    max-height: calc(100vh - 28px) !important;
    padding: 24px !important;
  }

  .founder-material-card h3 {
    font-size: 1.55rem !important;
  }

  .founder-material-text {
    margin-bottom: 14px !important;
  }

  .founder-material-form {
    gap: 10px !important;
  }

  .founder-material-form input {
    min-height: 46px !important;
  }
}/* ================================================= */
/* WELLER - ESCONDER FOTO QUANDO BALÃO ESTIVER ABERTO */
/* ================================================= */

.weller-assistant[data-mode="open"] .weller-toggle {
  display: none !important;
}

.weller-assistant[data-mode="floating"] .weller-toggle {
  display: grid !important;
}

.weller-assistant[data-mode="minimized"] .weller-toggle {
  display: none !important;
}

/* Garante que o balão aberto continue visível */
.weller-assistant[data-mode="open"] .weller-panel {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

/* Garante que o balão fechado não bloqueie nada */
.weller-assistant[data-mode="floating"] .weller-panel {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(14px) scale(0.96) !important;
}.founder-program-card p:not(.section-kicker) {
  display: none !important;
}/* ================================================= */
/* FOUNDER - AUMENTAR DISTÂNCIA ENTRE TEXTO E BOTÕES */
/* ================================================= */

.founder-program-card .founder-gold-button:first-of-type {
  margin-top: 42px !important;
}

/* Mantém o segundo botão abaixo do primeiro */
.founder-program-card .founder-gold-button + .founder-gold-button,
.founder-program-card .founder-download-button {
  margin-top: 16px !important;
}.weller-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.weller-help-logo {
  height: 17px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
  transform: translateY(1px);
}.weller-help-link span {
  display: inline-block !important;
  width: 54px !important;
  height: 18px !important;
  margin-left: 4px !important;

  font-size: 0 !important;
  color: transparent !important;
  line-height: 0 !important;

  background-image: url("../assets/images/dcs-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  vertical-align: middle;
  transform: translateY(2px);
}/* =========================================================
   AJUSTE FINAL MOBILE - DCS / MBROKER
   Somente celular/tablet pequeno
   ========================================================= */

@media (max-width: 768px) {

  /* ---------- Textos principais centralizados ---------- */

  body {
    overflow-x: hidden;
  }

  main,
  section,
  .container,
  .section,
  .hero,
  .hero-content,
  .hero-copy,
  .hero-text,
  .hero-info,
  .about,
  .about-content,
  .about-copy,
  .mbroker-hero,
  .mbroker-hero-content,
  .mbroker-hero-copy,
  .mbroker-copy,
  .founders,
  .founders-content,
  .founders-copy,
  .contact,
  .contact-content,
  .contact-copy,
  .section-header,
  .section-heading {
    text-align: center !important;
  }

  h1,
  h2,
  h3,
  p,
  .eyebrow,
  .section-eyebrow,
  .hero-eyebrow,
  .section-title,
  .section-subtitle,
  .section-lead,
  .hero-title,
  .hero-subtitle,
  .hero-description,
  .mbroker-title,
  .mbroker-subtitle,
  .founders-title,
  .founders-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Corrige textos grandes que ainda ficaram colados à esquerda */
  .hero h1,
  .about h1,
  .mbroker-hero h1,
  .founders h1,
  .section-header h1,
  .section-header h2 {
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero p,
  .about p,
  .mbroker-hero p,
  .founders p,
  .section-header p {
    max-width: 92% !important;
    text-align: center !important;
  }

  /* ---------- Centralizar grupos de botões, bandeiras e tags ---------- */

  .hero-actions,
  .hero-buttons,
  .hero-badges,
  .hero-tags,
  .language-flags,
  .lang-flags,
  .flags,
  .badges,
  .chips,
  .pill-list,
  .founder-actions,
  .contact-actions,
  .cta-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* ---------- Cards com ícones centralizados ---------- */

  .card,
  .feature-card,
  .benefit-card,
  .value-card,
  .module-card,
  .segment-card,
  .solution-card,
  .founder-card,
  .service-card,
  .info-card,
  .glass-card {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .card *,
  .feature-card *,
  .benefit-card *,
  .value-card *,
  .module-card *,
  .segment-card *,
  .solution-card *,
  .founder-card *,
  .service-card *,
  .info-card *,
  .glass-card * {
    text-align: center !important;
  }

  .card-icon,
  .feature-icon,
  .benefit-icon,
  .value-icon,
  .module-icon,
  .segment-icon,
  .solution-icon,
  .service-icon,
  .info-icon,
  .icon-box {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Corrige aqueles cards da página inicial: Alta tecnologia, Preço acessível etc. */
  .feature-card,
  .benefit-card,
  .value-card {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  /* ---------- Página Mbroker mobile ---------- */

  .mbroker-logo,
  .mbroker-brand,
  .mbroker-hero-logo {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .mbroker-logo img,
  .mbroker-brand img,
  .mbroker-hero-logo img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }

  /* ---------- Formulários e bloco Founder ---------- */

  .founder-form,
  .contact-form,
  .lead-form,
  .form-card {
    text-align: center !important;
  }

  .founder-form select,
  .contact-form select,
  .lead-form select,
  .founder-form input,
  .contact-form input,
  .lead-form input,
  .founder-form button,
  .contact-form button,
  .lead-form button {
    text-align: center !important;
  }

  /* ---------- Weller no celular ---------- */

  .weller-assistant {
    position: fixed !important;
    z-index: 999999 !important;
  }

  .weller-fab,
  .weller-toggle,
  .weller-kicker,
  [data-weller-toggle] {
    z-index: 999999 !important;
  }

  .weller-panel,
  .weller-window,
  .weller-card,
  [data-weller-panel] {
    position: fixed !important;

    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;

    width: calc(100vw - 32px) !important;
    max-width: 420px !important;
    max-height: calc(100vh - 130px) !important;

    transform: translate(-50%, -50%) !important;

    overflow-y: auto !important;
    border-radius: 24px !important;
    z-index: 1000000 !important;
  }

  .weller-panel.is-visible,
  .weller-panel.is-open,
  .weller-window.is-visible,
  .weller-window.is-open,
  .weller-card.is-visible,
  .weller-card.is-open,
  .weller-assistant.is-open .weller-panel,
  .weller-assistant.is-open .weller-window,
  .weller-assistant.is-open .weller-card,
  .weller-assistant[data-mode="open"] .weller-panel,
  .weller-assistant[data-mode="open"] .weller-window,
  .weller-assistant[data-mode="open"] .weller-card,
  [data-weller-panel].is-visible,
  [data-weller-panel].is-open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .weller-close,
  [data-weller-close] {
    z-index: 1000001 !important;
  }

  /* Para o botão flutuante não cobrir tanto os cards */
  .weller-fab,
  .weller-toggle,
  .weller-kicker {
    right: 18px !important;
    bottom: 70px !important;
  }
}@media (max-width: 768px) {
  /* Centraliza os cards com ícones da página inicial */
  .feature-card,
  .benefit-card,
  .value-card,
  .service-card,
  .info-card,
  .solution-card,
  .glass-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .feature-card > div,
  .benefit-card > div,
  .value-card > div,
  .service-card > div,
  .info-card > div,
  .solution-card > div,
  .glass-card > div {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .feature-icon,
  .benefit-icon,
  .value-icon,
  .service-icon,
  .info-icon,
  .solution-icon,
  .card-icon,
  .icon-box,
  .icon {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .feature-card svg,
  .benefit-card svg,
  .value-card svg,
  .service-card svg,
  .info-card svg,
  .solution-card svg,
  .glass-card svg {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}@media (max-width: 920px), (pointer: coarse) {
  body.weller-mobile-open .weller-panel,
  body.weller-mobile-open .weller-window,
  body.weller-mobile-open .weller-card,
  body.weller-mobile-open [data-weller-panel],
  .weller-assistant.is-open .weller-panel,
  .weller-assistant.is-open .weller-window,
  .weller-assistant.is-open .weller-card,
  .weller-assistant.is-open [data-weller-panel],
  .weller-assistant[data-mode="open"] .weller-panel,
  .weller-assistant[data-mode="open"] .weller-window,
  .weller-assistant[data-mode="open"] .weller-card,
  .weller-assistant[data-mode="open"] [data-weller-panel] {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;

    width: calc(100vw - 32px) !important;
    max-width: 420px !important;
    max-height: calc(100vh - 130px) !important;

    transform: translate(-50%, -50%) !important;

    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    overflow-y: auto !important;
    z-index: 999999 !important;
    border-radius: 24px !important;
  }

  .weller-assistant {
    z-index: 999998 !important;
  }

  .weller-close,
  [data-weller-close] {
    z-index: 1000000 !important;
  }
}/* =========================================================
   CORREÇÃO FINAL MOBILE
   Ícones index + bandeiras Mbroker + modal Weller
   ========================================================= */

@media (max-width: 768px) {

  /* =========================
     1. CENTRALIZAR ÍCONES DOS CARDS - INDEX
     ========================= */

  .features-grid > *,
  .benefits-grid > *,
  .values-grid > *,
  .services-grid > *,
  .solutions-grid > *,
  .cards-grid > *,
  .about-grid > *,
  .home-grid > *,
  .grid > article,
  article[class*="card"],
  div[class*="card"] {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .features-grid > * > :first-child,
  .benefits-grid > * > :first-child,
  .values-grid > * > :first-child,
  .services-grid > * > :first-child,
  .solutions-grid > * > :first-child,
  .cards-grid > * > :first-child,
  .about-grid > * > :first-child,
  article[class*="card"] > :first-child,
  div[class*="card"] > :first-child,
  [class*="icon"] {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .features-grid svg,
  .benefits-grid svg,
  .values-grid svg,
  .services-grid svg,
  .solutions-grid svg,
  .cards-grid svg,
  .about-grid svg,
  article[class*="card"] svg,
  div[class*="card"] svg {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .feature-icon,
  .benefit-icon,
  .value-icon,
  .service-icon,
  .solution-icon,
  .about-icon,
  .card-icon,
  .icon-box,
  .icon-wrap,
  .icon-holder,
  .glass-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }


  /* =========================
     2. CENTRALIZAR BANDEIRAS NA PÁGINA MBROKER
     ========================= */

  .mbroker-hero .language-flags,
  .mbroker-hero .lang-flags,
  .mbroker-hero .flags,
  .mbroker-hero .hero-flags,
  .mbroker-hero .flag-list,
  .mbroker-hero .language-list,
  .mbroker-hero .hero-badges,
  .mbroker-hero .hero-tags,
  .mbroker-hero [class*="flag"],
  .mbroker-hero [class*="lang"] {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mbroker-hero .language-flags,
  .mbroker-hero .lang-flags,
  .mbroker-hero .flags,
  .mbroker-hero .hero-flags,
  .mbroker-hero .flag-list,
  .mbroker-hero .language-list {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }


  /* =========================
     3. WELLER NO CELULAR - SEM CORTAR NA DIREITA
     ========================= */

  .weller-assistant {
    position: fixed !important;
    right: 18px !important;
    bottom: 70px !important;
    left: auto !important;
    top: auto !important;
    z-index: 999990 !important;
    transform: none !important;
  }

  .weller-panel,
  .weller-window,
  .weller-card,
  [data-weller-panel] {
    position: fixed !important;

    left: 12px !important;
    right: 12px !important;
    top: auto !important;
    bottom: 92px !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    max-height: calc(100vh - 125px) !important;

    transform: none !important;
    translate: none !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    z-index: 1000000 !important;
    border-radius: 24px !important;
    box-sizing: border-box !important;
  }

  body.weller-mobile-open .weller-panel,
  body.weller-mobile-open .weller-window,
  body.weller-mobile-open .weller-card,
  body.weller-mobile-open [data-weller-panel],
  .weller-assistant.is-open .weller-panel,
  .weller-assistant.is-open .weller-window,
  .weller-assistant.is-open .weller-card,
  .weller-assistant.is-open [data-weller-panel],
  .weller-assistant[data-mode="open"] .weller-panel,
  .weller-assistant[data-mode="open"] .weller-window,
  .weller-assistant[data-mode="open"] .weller-card,
  .weller-assistant[data-mode="open"] [data-weller-panel] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    left: 12px !important;
    right: 12px !important;
    top: auto !important;
    bottom: 92px !important;

    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .weller-close,
  [data-weller-close] {
    z-index: 1000001 !important;
  }
}/* Logo Mbroker acima da seção "Uma base preparada..." */
.mbroker-section-mobile-logo {
  display: none;
}

@media (max-width: 768px) {
  .mbroker-section-mobile-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto 22px auto !important;
  }

  .mbroker-section-mobile-logo img {
    display: block !important;
    width: min(100px, 48vw) !important;
    height: auto !important;
    margin: 0 auto !important;
  }
}/* Centralizar bandeiras da página Mbroker no mobile */
@media (max-width: 768px) {
  .mbroker-flag-strip {
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;

    gap: 14px !important;

    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    text-align: center !important;
    justify-self: center !important;
    grid-column: 1 / -1 !important;
  }

  .mbroker-flag-strip .flag-chip {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    flex: 0 0 auto !important;
  }

  .mbroker-flag-strip .flag-chip img {
    display: block !important;
    margin: 0 auto !important;
  }
}/* Centralizar o select "Mbroker Founder" somente no mobile */
@media (max-width: 768px) {
  .founder-select-center,
  .founder-form select,
  .contact-form select,
  .lead-form select,
  .form-card select {
    text-align: center !important;
    text-align-last: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .founder-select-center option,
  .founder-form select option,
  .contact-form select option,
  .lead-form select option,
  .form-card select option {
    text-align: center !important;
  }
}

/* Desktop volta ao normal */
@media (min-width: 769px) {
  .founder-select-center,
  .founder-form select,
  .contact-form select,
  .lead-form select,
  .form-card select {
    text-align: left !important;
    text-align-last: left !important;
  }
}/* Centraliza o select da página inicial somente no mobile */
@media (max-width: 768px) {
  .founder-select-mobile-center {
    text-align: center !important;
    text-align-last: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .founder-select-mobile-center option {
    text-align: center !important;
  }
}/* Coração acima do texto somente no mobile */
@media (max-width: 768px) {
  .hero-signature.heart-mobile-stack {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    text-align: center !important;
  }

  .hero-signature.heart-mobile-stack .signature-line {
    display: none !important;
  }

  .hero-signature.heart-mobile-stack .signature-icon,
  .hero-signature.heart-mobile-stack .heart-mobile-icon {
    margin: 0 auto !important;
  }

  .hero-signature.heart-mobile-stack .signature-text {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 92% !important;
  }
}/* =========================================================
   CORREÇÃO: DESKTOP VOLTA AO NORMAL + ASSINATURA SÓ MOBILE
   ========================================================= */

/* Desktop: mantém imagem grande da DCS à direita */
@media (min-width: 769px) {
  .hero-home .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr) !important;
    align-items: center !important;
    gap: clamp(40px, 6vw, 96px) !important;
  }

  .hero-home .hero-copy {
    grid-column: auto !important;
    text-align: left !important;
  }

  .hero-home .hero-art {
    grid-column: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .hero-home .hero-banner-image {
    display: block !important;
    width: 100% !important;
    max-width: 680px !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .hero-signature.heart-mobile-stack {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    text-align: left !important;
  }

  .hero-signature.heart-mobile-stack .signature-line {
    display: block !important;
  }

  .hero-signature.heart-mobile-stack .signature-text {
    display: block !important;
    text-align: left !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .hero-signature.heart-mobile-stack .signature-text-main,
  .hero-signature.heart-mobile-stack .signature-text-highlight {
    display: inline !important;
    font-size: inherit !important;
    line-height: inherit !important;
  }

  .hero-signature.heart-mobile-stack .signature-text-highlight {
    color: #ff2b3f !important;
    font-weight: 700 !important;
  }

  .hero-signature.heart-mobile-stack .signature-heart-svg {
    width: 24px !important;
    height: 24px !important;
  }
}

/* Mobile: coração em cima, texto branco e vermelho abaixo */
@media (max-width: 768px) {
  .hero-signature.heart-mobile-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px !important;
  }

  .hero-signature.heart-mobile-stack .signature-line {
    display: none !important;
  }

  .hero-signature.heart-mobile-stack .signature-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .hero-signature.heart-mobile-stack .signature-heart-svg {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-signature.heart-mobile-stack .signature-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px !important;
    margin: 0 auto !important;
    max-width: 95% !important;
  }

  .hero-signature.heart-mobile-stack .signature-text-main {
    display: block !important;
    color: #e8e8e8 !important;
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }

  .hero-signature.heart-mobile-stack .signature-text-highlight {
    display: block !important;
    color: #ff2b3f !important;
    font-size: 1.45rem !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    text-align: center !important;
  }
}/* =========================================================
   DESKTOP - RESTAURA HERO DA PÁGINA INICIAL
   ========================================================= */

@media (min-width: 769px) {
  #inicio .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr) !important;
    align-items: center !important;
    gap: clamp(40px, 6vw, 96px) !important;
  }

  #inicio .hero-copy {
    grid-column: 1 !important;
    text-align: left !important;
  }

  #inicio .hero-art {
    grid-column: 2 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  #inicio .hero-art img,
  #inicio .hero-banner-image {
    display: block !important;
    width: 100% !important;
    max-width: 680px !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  #inicio .hero-signature {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  #inicio .signature-line {
    display: block !important;
  }

  #inicio .signature-text {
    display: block !important;
    text-align: left !important;
  }

  #inicio .signature-text-main,
  #inicio .signature-text-highlight {
    display: inline !important;
    font-size: inherit !important;
    line-height: inherit !important;
  }
}/* =========================================================
   RESTAURAÇÃO DEFINITIVA DO HERO NO DESKTOP
   Não afeta o mobile
   ========================================================= */

@media (min-width: 769px) {
  #inicio .hero-grid,
  .hero-home .hero-grid,
  .container.hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr) !important;
    align-items: center !important;
    gap: clamp(40px, 6vw, 96px) !important;
  }

  #inicio .hero-copy,
  .hero-home .hero-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: left !important;
    align-self: center !important;
  }

  #inicio .hero-art,
  .hero-home .hero-art {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    align-self: center !important;
    width: 100% !important;
    margin: 0 !important;
  }

  #inicio .hero-art img,
  .hero-home .hero-art img,
  #inicio .hero-banner-image,
  .hero-home .hero-banner-image {
    display: block !important;
    width: 100% !important;
    max-width: 720px !important;
    height: auto !important;
    margin: 0 0 0 auto !important;
  }

  #inicio .hero-signature,
  .hero-home .hero-signature {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: auto !important;
  }

  #inicio .signature-text,
  .hero-home .signature-text {
    display: block !important;
    text-align: left !important;
  }

  #inicio .signature-text-main,
  #inicio .signature-text-highlight,
  .hero-home .signature-text-main,
  .hero-home .signature-text-highlight {
    display: inline !important;
    font-size: inherit !important;
    line-height: inherit !important;
  }

  #inicio .signature-line,
  .hero-home .signature-line {
    display: block !important;
  }
}/* =========================================================
   DESKTOP - AJUSTE FINO HERO INICIAL
   Mais espaço para cards + imagem DCS menor
   ========================================================= */

@media (min-width: 769px) {
  #inicio .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
    align-items: center !important;
    gap: clamp(32px, 4vw, 72px) !important;
  }

  #inicio .hero-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: left !important;
    width: 100% !important;
    max-width: none !important;
  }

  #inicio .hero-art {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: 100% !important;
  }

  #inicio .hero-art img,
  #inicio .hero-banner-image {
    display: block !important;
    width: 100% !important;
    max-width: 620px !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  /* Dá respiro aos cards da esquerda */
  #inicio .hero-copy article,
  #inicio .hero-copy .card,
  #inicio .hero-copy [class*="card"] {
    min-width: 0 !important;
  }
}/* =========================================================
   MOBILE - Ajuste espaço assinatura + imagem DCS
   Não afeta o computador
   ========================================================= */

@media (max-width: 768px) {
  /* Dá espaço entre "Softwares mais humanos..." e a imagem */
  #inicio .hero-signature.heart-mobile-stack {
    margin-bottom: 10px !important;
  }

  /* Card/imagem da DCS no mobile */
  #inicio .hero-art {
    width: 100% !important;
    max-width: 100% !important;

    margin-top: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;

    padding: 12px !important;

    box-sizing: border-box !important;
  }

  /* Reduz as laterais grandes e deixa a imagem ocupar melhor o espaço */
  #inicio .hero-art img,
  #inicio .hero-banner-image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;

    margin: 0 auto !important;
    border-radius: 18px !important;
  }
}/* =========================================================
   WELLER MOBILE - CORREÇÃO SEGURA
   ========================================================= */

@media (max-width: 920px), (pointer: coarse) {
  body.weller-mobile-open {
    overflow: hidden !important;
  }

  body.weller-mobile-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999998;
  }

  .weller-assistant {
    z-index: 999999 !important;
  }

  .weller-panel {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: 50% !important;
    bottom: auto !important;

    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - 90px) !important;

    transform: translateY(-50%) !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    box-sizing: border-box !important;
    border-radius: 24px !important;

    z-index: 999999 !important;

    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.weller-mobile-open .weller-panel,
  .weller-assistant.is-open .weller-panel,
  .weller-panel.is-open,
  .weller-panel.is-visible {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .weller-close {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;

    width: 46px !important;
    height: 46px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 0 !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #ffffff !important;

    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 500 !important;

    cursor: pointer !important;
    z-index: 1000001 !important;
    touch-action: manipulation !important;
  }
}/* =========================================================
   WELLER - CELULAR DEITADO / TOUCH
   Mantém botão e painel visíveis em landscape
   ========================================================= */

@media (pointer: coarse), (max-width: 920px) {
  .weller-assistant,
  .weller-fab,
  .weller-toggle,
  .weller-kicker,
  .weller-avatar,
  .weller-bubble {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: fixed !important;
    z-index: 999999 !important;
  }

  .weller-assistant {
    right: 16px !important;
    bottom: 68px !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .weller-fab,
  .weller-toggle,
  .weller-kicker,
  .weller-avatar,
  .weller-bubble {
    right: 16px !important;
    bottom: 68px !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }
}

/* Ajuste específico para celular deitado */
@media (pointer: coarse) and (orientation: landscape) {
  .weller-assistant {
    right: 14px !important;
    bottom: 14px !important;
  }

  .weller-fab,
  .weller-toggle,
  .weller-kicker,
  .weller-avatar,
  .weller-bubble {
    right: 14px !important;
    bottom: 14px !important;
  }

  body.weller-mobile-open .weller-panel,
  body.weller-mobile-open .weller-window,
  body.weller-mobile-open .weller-card,
  body.weller-mobile-open [data-weller-panel],
  .weller-assistant.is-open .weller-panel,
  .weller-assistant.is-open .weller-window,
  .weller-assistant.is-open .weller-card,
  .weller-assistant.is-open [data-weller-panel] {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: 50% !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - 32px) !important;
    transform: translateY(-50%) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 1000000 !important;
  }

  .weller-close {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 1000001 !important;
  }
}/* =========================================================
   WELLER - Correção final do texto "Fale com a DCS"
   Sem mexer no layout do site
   ========================================================= */

html body .weller-panel .weller-help-link,
html body .weller-window .weller-help-link,
html body .weller-card .weller-help-link,
html body .weller-assistant .weller-help-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;

  width: 100% !important;
  max-width: 100% !important;

  margin: 12px auto 0 auto !important;
  padding: 0 !important;

  text-align: center !important;
  white-space: nowrap !important;
  line-height: 1.25 !important;
  gap: 6px !important;

  font-size: 15px !important;
}

/* Remove quebra estranha, se tiver */
html body .weller-help-link br {
  display: none !important;
}

/* Caso o DCS esteja como imagem */
html body .weller-help-link .weller-help-logo {
  display: inline-block !important;
  flex: 0 0 auto !important;

  height: 15px !important;
  width: auto !important;
  max-width: 58px !important;

  margin: 0 0 0 2px !important;
  padding: 0 !important;

  object-fit: contain !important;
  vertical-align: middle !important;
  transform: translateY(1px) !important;
}

/* Caso o DCS esteja como span transformado em logo */
html body .weller-help-link span {
  display: inline-block !important;
  flex: 0 0 auto !important;

  width: 54px !important;
  height: 16px !important;

  margin: 0 0 0 2px !important;
  padding: 0 !important;

  font-size: 0 !important;
  color: transparent !important;
  line-height: 0 !important;

  background-image: url("../assets/images/dcs-logo.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;

  vertical-align: middle !important;
  transform: translateY(1px) !important;
}

/* Em telas muito estreitas, deixa quebrar sem bagunçar */
@media (max-width: 420px) {
  html body .weller-panel .weller-help-link,
  html body .weller-window .weller-help-link,
  html body .weller-card .weller-help-link,
  html body .weller-assistant .weller-help-link {
    flex-wrap: wrap !important;
    white-space: normal !important;
    row-gap: 4px !important;
  }
}/* Ajuste fino: mover logo DCS do Weller um pouco para a esquerda */
html body .weller-help-link .weller-help-logo {
  margin-left: 0 !important;
  transform: translate(-3px, 1px) !important;
}

html body .weller-help-link span {
  margin-left: 0 !important;
  transform: translate(-5px, 1px) !important;
}/* =========================================================
   MOBILE - Idiomas sempre visíveis no topo
   ========================================================= */

@media (max-width: 768px) {
  .site-header .header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .site-header .header-actions-top {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: 8px !important;
    gap: 8px !important;
    z-index: 10000 !important;
  }

  .site-header .header-actions-top .lang-switch {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
  }

  .site-header .header-actions-top .header-cta {
    display: none !important;
  }

  .site-header .menu-button {
    display: inline-flex !important;
    flex: 0 0 auto !important;
  }
}

/* =========================================================
   DCS FINAL MOBILE CLEANUP - NÃO ALTERA DESKTOP
   Corrige menu original, idiomas no topo e menu Mbroker mobile.
   ========================================================= */
@media (max-width: 980px) {
  .site-header .header-content,
  .site-header .mbroker-header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .site-header .desktop-nav,
  .site-header .mbroker-desktop-nav {
    display: none !important;
  }

  .site-header .brand {
    flex: 0 0 auto !important;
  }

  .site-header .header-actions,
  .site-header .header-actions-top {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: 8px !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
  }

  .site-header .lang-switch,
  .site-header .mbroker-lang-switch {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: 8px !important;
    position: relative !important;
    z-index: 1000 !important;
  }

  .site-header .header-cta,
  .site-header .mbroker-top-brand {
    display: none !important;
  }

  .site-header .menu-button {
    display: inline-flex !important;
    flex: 0 0 auto !important;
  }

  .site-header .mobile-panel.open {
    display: block !important;
  }

  .site-header .mobile-panel.open .mobile-nav {
    display: grid !important;
    gap: 14px !important;
    margin-bottom: 0 !important;
    padding-top: 18px !important;
  }

  .site-header .mobile-panel .mobile-langs,
  .site-header .mobile-panel .mbroker-mobile-langs,
  .site-header .mobile-panel .mbroker-mobile-brand,
  .site-header .mobile-panel .lang-switch,
  .site-header .mobile-panel .mbroker-lang-switch {
    display: none !important;
  }}

@media (max-width: 480px) {
  .site-header .brand-logo {
    width: 96px !important;
  }

  .site-header .lang {
    min-width: 34px !important;
    height: 32px !important;
    font-size: 12px !important;
  }

  .site-header .lang-switch,
  .site-header .mbroker-lang-switch {
    gap: 2px !important;
    padding: 3px !important;
    margin-right: 6px !important;
  }

  .site-header .menu-button {
    width: 42px !important;
    height: 42px !important;
  }
}

/* =========================================================
   AJUSTE GERAL - Rodapé DCS clicável + Weller DCS logo
   ========================================================= */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.footer-logo-link .footer-logo {
  display: block;
}

html body .weller-help-link .weller-help-logo {
  margin-left: 4px !important;
  transform: translate(-5px, 1px) !important;
}

html body .weller-help-link span {
  margin-left: 4px !important;
  transform: translate(-5px, 1px) !important;
}/* Ajuste fino: mover frase do Weller um pouco para a direita */
html body .weller-panel .weller-help-link,
html body .weller-window .weller-help-link,
html body .weller-card .weller-help-link,
html body .weller-assistant .weller-help-link {
  transform: translateX(4px) !important;
}/* =========================================================
   SITE INTEIRO - Bloquear seleção, arrasto e download de imagens
   ========================================================= */

img,
picture,
svg {
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  -webkit-touch-callout: none !important;
}
/* HOTFIX DCS 2026-05-31 - Weller mobile/title/image */
@media (max-width: 768px) {
  input[placeholder="Perguntar para o Weller"],
  textarea[placeholder="Perguntar para o Weller"],
  .weller-ask-input,
  .weller-input,
  #wellerAskInput,
  #weller-input,
  .weller-chat input,
  .weller-chat textarea,
  .weller-panel input,
  .weller-panel textarea {
    text-align: center !important;
  }

  input[placeholder="Perguntar para o Weller"]::placeholder,
  textarea[placeholder="Perguntar para o Weller"]::placeholder,
  .weller-ask-input::placeholder,
  .weller-input::placeholder,
  #wellerAskInput::placeholder,
  #weller-input::placeholder,
  .weller-chat input::placeholder,
  .weller-chat textarea::placeholder,
  .weller-panel input::placeholder,
  .weller-panel textarea::placeholder {
    text-align: center !important;
    opacity: 1 !important;
  }
}
