@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ============ Base ============ */
.mejer {
  background: #0a0d0b;
  color: #fff;
  font-family: Tahoma, system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
.mejer * { box-sizing: border-box; }
.mejer p { margin: 0 0 16px; line-height: 1.7; }
.mejer h1, .mejer h2, .mejer h3, .mejer h4, .mejer h5 {
  font-family: Tahoma, system-ui, sans-serif;
  margin: 0 0 16px;
  line-height: 1.15;
}
.mejer a { color: inherit; text-decoration: none; }

.mejer .container {
  max-width: 1189px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* ============ Hero gradient (reutilizado) ============ */
.hero {
  background:
    radial-gradient(circle at 80% -10%, rgba(34, 197, 94, 0.10), transparent 50%),
    linear-gradient(180deg, #0a0d0b 0%, #121814 100%);
}
#hero {
  background:
    radial-gradient(circle at 80% -10%, rgba(34, 197, 94, 0.10), transparent 50%),
    linear-gradient(180deg, #0a0d0b 0%, #121814 100%);
  min-height: 100vh;
}
#hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  #hero .container { grid-template-columns: 1fr; }
}

/* ============ Tipografia helpers ============ */
.mejer .h-big      { font-size: 3.8vw; font-weight: 400; color: #fff; }
.mejer .h-accent   { font-size: 3.6vw; font-weight: 800; font-style: italic;
                     color: #22C55E;
                     text-shadow: 0 0 10px rgba(58,158,105,.3); }
.mejer .h-section  { font-size: 3vw; font-weight: 600; color: #fff;
                     text-align: center; }
@media (max-width: 768px) {
  .mejer .h-big     { font-size: 7.5vw; margin-top: 44px; }
  .mejer .h-accent  { font-size: 6.7vw; }
  .mejer .h-section { font-size: 7vw; }
  .mejer .container { padding: 60px 20px; }
}

.mejer p, .mejer .body-text {
  color: #fff;
  font-size: 1.6vw;
  line-height: 28px;
}
@media (max-width: 768px) {
  .mejer p, .mejer .body-text { font-size: 3.8vw; line-height: 1.6; }
}

.mejer .micro { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 12px; }
.mejer .micro s { opacity: .55; }
.mejer .micro strong { color: #22C55E; }

.mejer .subhead { font-size: 16px; color: rgba(255,255,255,.75); }
.mejer .subhead.center { text-align: center; }

.mejer .disclaimer { font-size: 12px; color: rgba(255,255,255,.45); text-align: center; line-height: 1.6; }

/* ============ CTA Button ============ */
.mejer .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22C55E;
  color: #0b1320;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  text-transform: none;
  box-shadow: 0 8px 24px rgba(34,197,94,.25);
}
.mejer .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(34,197,94,.35);
}

.mejer .pill {
  display: inline-block;
  background: rgba(34,197,94,.12);
  color: #22C55E;
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

/* ============ Icon list ============ */
.mejer .icon-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.mejer .icon-list li { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.8); }
.mejer .icon-list svg { color: #22C55E; flex-shrink: 0; }

/* ============ Phone frame (video) ============ */
.phone-frame {
  display: flex;
  justify-content: center;
}
.phone-frame .wrap {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 19.5;
  border: 12px solid #111;
  border-radius: 42px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 3px #2d2d2d, 0 20px 60px rgba(0,0,0,.45);
}
.phone-frame .wrap::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
}
.phone-frame iframe { width: 100%; height: 100%; border: none; }

/* ============ Steps (3 cards: empresa / banco / rating) ============ */
.flow-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.flow-3 .step {
  background: #141c2c;
  border: 1px solid #233045;
  border-radius: 12px;
  padding: 32px 24px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}
.flow-3 .step strong { color: #22C55E; }
.flow-3 + p { color: rgba(255,255,255,.7); text-align: center; max-width: 820px; margin: 28px auto 0; font-size: 14px; line-height: 1.7; }
@media (max-width: 768px) { .flow-3 { grid-template-columns: 1fr; } }

/* ============ "Travas" cards (6 numeradas) ============ */
.travas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.travas .card {
  background: #141c2c;
  border: 1px solid #233045;
  border-radius: 12px;
  padding: 28px 24px;
}
.travas .card h5 { color: #22C55E; font-size: 16px; margin-bottom: 10px; font-weight: 700; }
.travas .card p  { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .travas { grid-template-columns: 1fr; } }

/* ============ Blockquote (cenário recorrente) ============ */
.mejer blockquote {
  background: #07110d;
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid #22C55E;
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0 0;
}
.mejer blockquote h3 { color: #22C55E; font-size: 20px; margin-bottom: 8px; }
.mejer blockquote .meta { color: rgba(255,255,255,.6); font-size: 13px; letter-spacing: .5px; margin-bottom: 18px; }
.mejer blockquote p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.85); }
.mejer blockquote p.reveal { background: rgba(34,197,94,.05); border-radius: 8px; padding: 16px; }

/* ============ Price table ============ */
.price-card {
  max-width: 520px;
  margin: 32px auto 0;
  background: #1B2C21;
  border: 1px solid #CFCFCF6B;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
.price-card .ribbon {
  position: absolute;
  top: 14px; right: -32px;
  background: #22C55E;
  color: #0b1320;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 40px;
  transform: rotate(35deg);
}
.price-card .head { background: #1B2C21; padding: 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.price-card .head h3 { font-size: 17px; margin: 0; }
.price-card .body { padding: 44px; text-align: center; }
.price-card .price { font-size: 117px; font-weight: 700; line-height: 1; letter-spacing: -3px; }
.price-card .price .cur { font-size: 28px; vertical-align: middle; margin-right: 6px; }
.price-card .original { color: rgba(255,255,255,.7); text-decoration: line-through; margin-top: 8px; font-size: 16px; }
.price-card .period { color: #fff; opacity: .8; font-size: 14px; margin-top: 6px; }
.price-card ul { list-style: none; padding: 24px 32px; margin: 0; border-top: 1px solid rgba(34,197,94,.4); }
.price-card ul li { font-size: 14px; line-height: 22px; padding: 8px 0; display: flex; gap: 10px; }
.price-card ul li svg { color: #22C55E; flex-shrink: 0; margin-top: 4px; }
.price-card .foot { padding: 0 32px 32px; text-align: center; }
.price-card .foot a { display: block; background: #22C55E; color: #191515; font-weight: 800; padding: 18px; border-radius: 12px; font-size: 18px; }
.price-card .foot .info { margin-top: 14px; font-size: 12px; color: #fff; opacity: .75; white-space: pre-line; }
@media (max-width: 768px) {
  .price-card .body { padding: 28px; }
  .price-card .price { font-size: 56px; }
  .price-card ul { padding: 18px 22px; }
  .price-card .foot { padding: 0 22px 26px; }
}

/* ============ Testimonial ============ */
.testimonial {
  margin-top: 22px;
  background: #1B2C21;
  border: 1px solid #BABABA;
  border-radius: 22px;
  padding: 22px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.testimonial .row { display: flex; gap: 14px; align-items: center; margin-top: 14px; }
.testimonial img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial .content { font-size: 18px; line-height: 1.5; }
.testimonial .name { font-weight: 700; }
.testimonial .job { opacity: .8; font-size: 13px; }

/* ============ Carousel ============ */
.embla { overflow: hidden; }
.embla__container { display: flex; gap: 16px; align-items: center; justify-content: flex-start; }
.embla__slide { flex: 0 0 auto; width: 280px; display: flex; align-items: center; justify-content: center; }
.embla__slide img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* Single-slide variant: one image at a time with standardized size */
.embla-single .embla__container { gap: 0; }
.embla-single .embla__slide { flex: 0 0 100%; width: 100%; }
.embla-single .embla__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}
.embla-nav { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.embla-nav button {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.embla-nav button:hover { background: rgba(34,197,94,.2); border-color: #22C55E; }

/* YouTube facade: lightweight placeholder before user clicks play */
.yt-facade {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  padding: 0; border: 0; cursor: pointer;
  background: #000;
  display: block;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-facade .yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 999px;
  background: rgba(0,0,0,.7);
  color: #fff; font-size: 24px; line-height: 64px; text-align: center;
  padding-left: 6px;
}
.yt-facade:hover .yt-play { background: #22C55E; }

/* ============ "Como funciona" steps section (HTML bloco) ============ */
.cs-steps-section {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 20px 0 !important;
  box-sizing: border-box !important;
}
.cs-steps-title {
  text-align: center !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  margin-bottom: 40px !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
}
.cs-steps-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  flex-wrap: nowrap !important;
}
.cs-step-card {
  background-color: #141c2c !important;
  border: 1px solid #233045 !important;
  border-radius: 12px !important;
  padding: 40px 30px !important;
  text-align: center !important;
  flex: 1 !important;
  max-width: 400px !important;
  min-height: 240px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}
.cs-step-card:hover { transform: translateY(-4px) !important; border-color: #31425c !important; }
.cs-step-badge {
  width: 48px !important; height: 48px !important;
  background-color: #1ccb5d !important; color: #0b1320 !important;
  font-size: 20px !important; font-weight: 700 !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  margin-bottom: 24px !important;
}
.cs-step-heading { font-size: 20px !important; font-weight: 600 !important; color: #fff !important; margin: 0 0 12px 0 !important; letter-spacing: -0.3px !important; }
.cs-step-text { font-size: 14px !important; color: #94a3b8 !important; line-height: 1.6 !important; margin: 0 !important; }
.cs-step-arrow { display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; }
@media (max-width: 768px) {
  .cs-steps-container { flex-direction: column !important; gap: 15px !important; }
  .cs-step-card { width: 100% !important; max-width: 100% !important; min-height: auto !important; padding: 30px 20px !important; }
  .cs-step-arrow { transform: rotate(90deg) !important; margin: 10px 0 !important; }
  .cs-steps-title { font-size: 26px !important; margin-bottom: 30px !important; }
}

/* ============ Tabela de taxas ============ */
.tabela-wrapper { width: 100%; margin-top: 32px; }
.tabela-taxas { width: 100%; border-collapse: separate; border-spacing: 0; background: #07110d; border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; overflow: hidden; }
.tabela-taxas thead th { text-align: left; padding: 24px 34px; font-size: 13px; letter-spacing: 1px; color: rgba(255,255,255,0.92); font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tabela-taxas tbody td { padding: 28px 34px; color: rgba(255,255,255,0.86); font-size: 15px; line-height: 1.7; border-bottom: 1px solid rgba(255,255,255,0.06); vertical-align: top; }
.tabela-taxas tbody tr:last-child td { border-bottom: none; }
.tabela-taxas tbody tr.destaque { background: linear-gradient(90deg, rgba(34,197,94,0.18) 0%, rgba(34,197,94,0.10) 100%); }
.tabela-taxas tbody tr.destaque td:first-child { color: #22c55e; }
.obs { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
@media (max-width: 768px) {
  .tabela-taxas, .tabela-taxas thead, .tabela-taxas tbody, .tabela-taxas th, .tabela-taxas td, .tabela-taxas tr { display: block; width: 100%; }
  .tabela-taxas { background: transparent; border: none; }
  .tabela-taxas thead { display: none; }
  .tabela-taxas tbody tr { background: #07110d; border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; margin-bottom: 16px; overflow: hidden; }
  .tabela-taxas tbody tr.destaque { background: linear-gradient(180deg, rgba(34,197,94,0.18) 0%, rgba(34,197,94,0.08) 100%); }
  .tabela-taxas tbody td { border: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 16px 18px; font-size: 14px; display: flex; flex-direction: column; gap: 6px; }
  .tabela-taxas tbody td:last-child { border-bottom: none; }
  .tabela-taxas tbody td:nth-child(1)::before { content: "CAMINHO"; }
  .tabela-taxas tbody td:nth-child(2)::before { content: "O QUE ENTREGA"; }
  .tabela-taxas tbody td:nth-child(3)::before { content: "INVESTIMENTO"; }
  .tabela-taxas tbody td::before { font-size: 11px; letter-spacing: 1px; font-weight: 700; color: rgba(255,255,255,0.45); }
}

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 32px auto 0; }
.faq details {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  color: #fff;
}
.faq details[open] { border-color: rgba(34,197,94,.4); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: #22C55E; font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq .ans { margin-top: 14px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.78); }
.faq .ans p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.78); }

/* ============ SBT section ============ */
.sbt-row { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.sbt-row img.sbt-logo { width: 110px; height: auto; }

/* ============ Background painted section ============ */
.bg-paint {
  background-image: url('./assets/mejercred/economy-and-finance-background-financial-business-statistics-with-candlesticks-and-bar-chart-vector.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(7,17,13,.85);
}
.bg-paint .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .bg-paint .container { grid-template-columns: 1fr; } }

/* ============ Lone image (SBT logo) ============ */
.lone-img { display: flex; justify-content: center; padding: 40px 0; }
.lone-img img { max-width: 140px; height: auto; opacity: .9; }