:root {
  --font-montserrat-alternates: "Montserrat Alternates";
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.mr-sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

.elementor-element {display: none !important;}

/* =========================================================
   RESET / BASE
========================================================= */
.mr-landing {
  font-family:
    var(--font-montserrat-alternates),
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #1b1b1f;
}

.mr-landing *,
.mr-landing *::before,
.mr-landing *::after {
  box-sizing: border-box;
}

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

.mr-center { display: flex; justify-content: center; margin-top: 20px; }
.mr-mt { margin-top: 18px; }

/* =========================================================
   BUTTONS
========================================================= */
.mr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.mr-btn--primary::after {
  content: "›";
  font-size: 18px;
  margin-left: 8px;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
}

.mr-btn--primary { background: #ff7a18; color: #fff; }

.mr-btn--primary:hover {
  transition: all .2s ease;
  box-shadow: 0 3px 6px 0 hsl(265 60% 48% / .12), 0 2px 4px 0 hsl(0 0% 0% / .16);
}
.mr-btn--orange { 
  background: #ff7a18; 
  color: #fff; 
    font-family:
    var(--font-montserrat-alternates),
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* ghost padrão (para uso fora do header) */
.mr-btn--ghost {
  background: #fff;
  color: #4b2aa6;
  border-color: rgba(75, 42, 166, .18);
}

/* =========================================================
   TYPO / SECTIONS
========================================================= */
.mr-kicker {
  font-size: 11px;
  letter-spacing: .14em;
  color: #ff7a18;
  font-weight: 700;
  text-transform: uppercase;
}

.mr-kicker--light { color: rgba(255, 255, 255, .8); }

.mr-section { padding: 64px 0; background: #fff; }
.mr-section--light { background: #f6f4fb; }

.mr-section__title { text-align: center; margin-bottom: 22px; }
.mr-section__title h2 { margin: 8px 0 10px; font-size: 30px; line-height: 1.2; }
.mr-section__title p { margin: 0; color: #6b6b78; line-height: 1.6; }

/* =========================================================
   HEADER (igual ao print: transparente sobre o hero)
========================================================= */
.mr-header {
  position: absolute;
  top:0; left:0; right:0;
  z-index: 50;
  background: transparent;
}

/* 3 colunas (logo | nav | botão) sem quebrar */
.mr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap; /* não quebra */
  padding: 18px 0;
}

/* Logo */
.mr-brand { flex: 0 0 auto; display: flex; align-items: center; }
.mr-brand__link { display: inline-flex; align-items: center; }
.mr-brand__logo { height: 32px; width: auto; display: block; }

.mr-logo--dark{ display: none !important; }

.mr-logo-white{
  filter: none !important;
  opacity: 1;
}

.mr-header.is-scrolled .mr-logo--white{ display:none !important; }
.mr-header.is-scrolled .mr-logo--dark{ display:block !important; }

/* Nav */
/* CONTAINER NAV */
.mr-nav{
  flex: 1 1 auto;
  min-width: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;

  position: static; /* não precisa relative aqui */
}

/* LINK */
.mr-nav a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding-top: 10px;
  white-space: nowrap;

  position: relative;          /* ✅ ancora o ::after no próprio link */
  display: inline-block;       /* ✅ largura do texto */
  padding-bottom: 8px;         /* espaço pro underline */
}

.mr-nav a:hover{ color: #fff; }

/* underline por item */
.mr-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width .28s ease;
}

.mr-nav a:hover::after{
  width: 100%;
}


/* Botão do topo (ghost no header) */
.mr-header .mr-btn--ghost {
  padding: 8px 16px;                 /* menor que o CTA principal */
  font-size: 13px;
  font-weight: 400;

  background: #ffffff;
  color: #5c22c8;                    /* roxo elegante */
  border: 1px solid rgba(92,34,200,.25);

  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);

  transition: all .2s ease;
}

.mr-header .mr-btn--ghost:hover {
  background: #ffffffe6
}

/* =========================================================
   HEADER - SCROLLED (opcional, quando JS adiciona .is-scrolled)
========================================================= */
.mr-header.is-scrolled {
  position: fixed;
  top:0; left:0; right:0;
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Quando o header fica branco, menu e botões mudam */
.mr-header.is-scrolled .mr-nav a { color: #5a4a80 !important; }
.mr-header.is-scrolled .mr-brand__name{ color:#2b1365 !important; }
.mr-header.is-scrolled .mr-nav a:hover { color: #2b1365; }

.mr-header.is-scrolled .mr-btn--ghost {
  background: #fff !important;
  border-color: rgba(75, 42, 166, .18) !important;
  color: #4b2aa6 !important;
}

/* =========================================================
   HERO
========================================================= */
.mr-hero {
  padding: 140px 0 100px; /* espaço para o header absolute */
  background:
    linear-gradient(180deg, #6b2bd9 0%, #7c40de 35%, #efeafc 100%);
}

.mr-hero__inner { display: flex; justify-content: flex-start; }
.mr-hero__content { max-width: 740px; }
.mr-hero__content p { font-size: 21px !important;}

.mr-hero h1 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.05;
  color: #fff;
}

.mr-hero p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.6;
}

.mr-hero__actions { margin-top: 8px; }

/* =========================================================
   GRIDS / CARDS
========================================================= */
.mr-grid { display: grid; gap: 16px; }
.mr-grid--6 { grid-template-columns: repeat(3, 1fr); }
.mr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mr-grid--2 { grid-template-columns: repeat(2, 1fr); }

.mr-card, .mr-step, .mr-faq-card, .mr-metric, .mr-aside-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(16, 10, 40, .04);
}

.mr-faq-card:hover {
  transition: all .3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.mr-card__icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #efe9fb; /* lilás claro */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mr-card__icon svg{
  width: 20px;
  height: 20px;
  stroke: #6b2bd9;      /* roxo */
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.mr-card h3 { margin: 4px 0 6px; font-size: 15px; }
.mr-card p { margin: 0; color: #6b6b78; font-size: 13px; line-height: 1.5; }
.mr-card:hover{
  transition: all .3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
/* =========================================================
   SPLIT SECTION
========================================================= */
.mr-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
}

.mr-media-placeholder {
  height: 280px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 24, .25), rgba(107, 43, 217, .25));
  border: 1px solid rgba(0, 0, 0, .06);
}

.mr-split__content h2 { margin: 6px 0 10px; font-size: 30px; line-height: 1.2; }
.mr-split__content p { margin: 0 0 10px; color: #6b6b78; line-height: 1.7; }

/* =========================================================
   STEPS
========================================================= */
.mr-step { position: relative; }
.mr-step__num {
  position: absolute;
  right: 14px;
  top: 14px;
  font-weight: 800;
  color: rgba(107, 43, 217, .20);
}

.mr-step h3 { margin: 0 0 8px; font-size: 16px; }
.mr-step p { margin: 0; color: #6b6b78; font-size: 13px; line-height: 1.6; }
.mr-step:hover{
  transition: all .3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

/* =========================================================
   PURPLE STRIP
========================================================= */
/* ============================
   STRIP - Acompanhamento Especializado (igual ao print)
============================ */
.mr-strip--special .mr-strip__left h2{
  color: #ffffff;
  font-weight: 800;
}

.mr-strip--special{
  position: relative;
  overflow: hidden;
  padding: 84px 0; /* mais alto como no print */
  background:
    radial-gradient(600px 300px at 75% 30%, rgba(255,122,24,.18), transparent 55%),
    radial-gradient(700px 380px at 70% 60%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(180deg, #5c22c8 0%, #6b2bd9 100%);
}

/* layout da seção (esquerda + direita) */
.mr-strip--special .mr-strip__inner{
  display: grid; /* garante grid mesmo que algo tenha sobrescrito */
  grid-template-columns: 1.25fr .75fr;
  align-items: center;   /* centraliza os dois blocos no eixo vertical */
  gap: 40px;
  min-height: 520px;     /* dá “corpo” pra centralização funcionar */
}

.mr-strip--special .mr-glass-card{
  margin: 0 !important;
  align-self: center !important;
  justify-self: end;
  transform: translateY(0); /* base */
}

/* Títulos e texto */
.mr-strip--special .mr-strip__left h2{
  margin: 10px 0 14px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.mr-strip--special .mr-strip__left p{
  max-width: 720px;
  font-size: 16px;
  color: rgba(255,255,255,.86);
}

/* Lista com check laranja */
.mr-checklist{
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mr-checklist li{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}

.mr-checklist li::before{
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff7a18;       /* laranja */
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  flex: 0 0 auto;
}

/* Botão dentro da faixa roxa */
.mr-btn--strip{
  padding: 12px 22px;
  border-radius: 12px;  /* no print é mais quadradinho */
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

/* Card "glass" da direita */
.mr-glass-card{
  align-self: center;            /* ← ESSENCIAL */
  justify-self: end;

  width: min(360px, 100%);
  padding: 78px 26px;
  border-radius: 22px;
  height: 350px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);

  text-align: center;
  box-shadow: 0 26px 60px rgba(0,0,0,.20);
  position: relative;
}

/* glow roxo/laranja suave no fundo do card */
.mr-glass-card::after{
  content:"";
  position:absolute;
  inset:-40px -40px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,122,24,.20), transparent 60%);
  filter: blur(8px);
  pointer-events:none;
}

/* Ícone circular do card */
.mr-glass-card__icon{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin: 0 auto 16px;

  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);

  display: flex;
  align-items: center;
  justify-content: center;
}

.mr-glass-card__icon svg{
  width: 28px;
  height: 28px;
  stroke: #ff7a18;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mr-glass-card h3{
  margin: 6px 0 8px;
  font-size: 22px;
  color: #fff;
}

.mr-glass-card p{
  margin: 0;
  color: rgba(255,255,255,.80);
  line-height: 1.5;
}

/* responsivo */
@media (max-width: 980px){
  .mr-strip--special{
    padding: 70px 0;
  }
  .mr-strip--special .mr-strip__inner{
    grid-template-columns: 1fr;
  }
  .mr-glass-card{
    justify-self: start;
  }
  .mr-strip--special .mr-strip__left h2{
    font-size: 34px;
  }
}


/* =========================================================
   METRICS
========================================================= */
.mr-metric h3 { margin: 0 0 6px; font-size: 26px; color: #2b1365; }
.mr-metric p { margin: 0; color: #6b6b78; line-height: 1.6; }
.mr-metric--bad h3 { color: #d43b3b; }
.mr-metric:hover {
  transition: all .3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

/* =========================================================
   ACCORDION
========================================================= */
.mr-accordion {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mr-acc-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 12px;
  overflow: hidden;
}

.mr-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  font-size: 18px;
}

.mr-acc-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg); /* seta para baixo */
    transition: transform 0.3s ease;
    margin-left: 10px;
}

/* accordion aberto */
.mr-acc-btn[aria-expanded="true"] .mr-acc-icon {
    transform: rotate(-135deg); /* seta para cima */
}

.mr-acc-icon { font-weight: 900; color: #6b2bd9; transition: transform 0.3s ease; }

.mr-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 16px;
}

.mr-acc-panel p { margin: 0 0 14px; color: #6b6b78; line-height: 1.7; }
.mr-acc-item.is-open .mr-acc-panel { max-height: 220px; }

/* =========================================================
   CONTACT
========================================================= */
.mr-contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.mr-form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(16, 10, 40, .04);
}

.mr-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.mr-field label {
  display: block;
  font-size: 12px;
  color: #3a3a44;
  margin-bottom: 6px;
  font-weight: 700;
}

.mr-field input, .mr-field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .10);
  outline: none;
}

.mr-field input:focus, .mr-field textarea:focus {
  border-color: rgba(107, 43, 217, .45);
  box-shadow: 0 0 0 3px rgba(107, 43, 217, .12);
}

.mr-form__hint { font-size: 12px; color: #6b6b78; margin-top: 10px; }

.mr-contact__aside { display: flex; flex-direction: column; gap: 12px; }

/* =========================================================
   CTA + FOOTER
========================================================= */
.mr-cta {
  position: relative;
  padding: 64px 0;
  height: 404px;
  background:
    radial-gradient(
      1200px 400px at 50% -100px,
      rgba(255,255,255,0.12),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #6B2BD9 0%,
      #7A45E5 45%,
      #6B2BD9 100%
    );
  color: #fff;
}
.mr-cta::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.12),
    transparent 50%,
    transparent 15%,
    rgba(0,0,0,.18)
  );
  pointer-events: none;
}
.mr-cta__inner { text-align: center; }
.mr-cta h2 { margin: 0 0 10px; font-size: 1.7rem; padding-bottom: 10px;}
.mr-cta p { margin: 0 0 16px; color: rgba(255, 255, 255, .88); font-size: 1.255rem; line-height: 1.75rem; margin-bottom: 2rem}

.mr-footer { background: #251D30; color: rgba(255, 255, 255, .85); padding: 20px 0; }
.mr-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mr-footer small { font-size: 12px; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .mr-nav { gap: 14px; }
  .mr-nav a { font-size: 12px; }
  .mr-brand__logo { height: 24px; }
}

@media (max-width: 980px) {
  .mr-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .mr-split { grid-template-columns: 1fr; }
  .mr-strip__inner { grid-template-columns: 1fr; }
  .mr-contact { grid-template-columns: 1fr; }

  /* Em telas menores, some o menu (para não quebrar) */
  .mr-nav { display: none; }

  .mr-hero h1 { font-size: 36px; }
}

@media (max-width: 560px) {
  .mr-grid--6, .mr-grid--3, .mr-grid--2 { grid-template-columns: 1fr; }
  .mr-form__row { grid-template-columns: 1fr; }
  .mr-hero h1 { font-size: 30px; }
}

.mr-split__media{
  position: relative;
  width: 100%;
  height: 390px;
  border-radius: 18px;
  overflow: hidden;
}

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

.mr-faq-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mr-faq-card__icon svg {
    display: block;
}

.mr-faq-card__icon--purple {
    background: #EFE9FF;
    color: #6B4EFF;
}

.mr-faq-card__icon--orange {
    background: #FFF1E6;
    color: #FF7A18;
}


/* Fundo suave como o print (opcional) */
.mr-section--light {
  background: linear-gradient(180deg, #efe7ff 0%, #f7f2ff 35%, #ffffff 100%);
}

/* Título centralizado */
.mr-section__title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

/* "Indicadores Positivos" / "Desafios..." com barrinha */
.mr-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 18px;
}

.mr-group-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 999px;
}

.mr-group-title--good::before { background: #6B4EFF; }
.mr-group-title--bad::before  { background: #EF4444; }

.mr-group-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Cards */
.mr-metric {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

/* ícone no topo */
.mr-metric__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.mr-metric__icon svg { display: block; }

/* Cores */
.mr-metric__icon--good { background: #EFE9FF; color: #7030c2; }
.mr-metric__icon--bad  { background: #FFECEC; color: #EF4444; }

.mr-metric--good .mr-metric__value { color: #7030c2; }
.mr-metric--bad  .mr-metric__value { color: #EF4444; }

/* Número grande */
.mr-metric__value {
  margin: 0 0 10px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Descrição */
.mr-metric__desc {
  margin: 0 0 14px;
  color: #6B7280;
  line-height: 1.5;
  font-size: 14px;
}

/* Pill Fonte */
.mr-metric__source {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #6B7280;
  background: #F3F4F6;
}

/* espaçamento (se já tiver mr-mt, ignore) */
.mr-mt { margin-top: 28px; }

/* Responsivo */
@media (max-width: 1024px) {
  .mr-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mr-grid--3 { grid-template-columns: 1fr; }
  .mr-metric__value { font-size: 40px; }
}

/* ============================
   CONTATO - layout igual ao print
============================ */
.mr-section--contact{
  background:
    radial-gradient(700px 380px at 95% 20%, rgba(255,122,24,.10), transparent 60%),
    radial-gradient(900px 420px at 10% 80%, rgba(107,43,217,.08), transparent 60%),
    #f6f4fb;
}

.mr-section--contact .mr-section__title h2{
  font-size: 44px;
  margin: 10px 0 8px;
}

.mr-section--contact .mr-section__title p{
  max-width: 760px;
  margin: 0 auto;
}

/* grid principal */
.mr-contact-grid{
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}

/* form (card alto) */
.mr-contact-form{
  padding: 26px;
  min-height:640px; /* dá o “corpo” do print */
}

.mr-contact-form .mr-field label{
  text-transform: lowercase;
  letter-spacing: .02em;
}

/* inputs com fundo bem clarinho */
.mr-contact-form .mr-field input,
.mr-contact-form .mr-field textarea{
  background: #f4f2f8;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  padding: 12px 14px;
}

.mr-contact-form .mr-field input:focus,
.mr-contact-form .mr-field textarea:focus{
  background: #fff;
}

/* botão full width laranja */
.mr-btn--block{
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  margin-top: 18px;
}

.mr-btn--send span{
  margin-left: 8px;
  font-size: 14px;
  transform: translateY(-1px);
}

/* direita: mapa + info */
.mr-contact-side{
  display: grid;
  gap: 16px;
}

/* mapa grande */
.mr-map{
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.mr-map__placeholder{
  height: 360px;
  background: rgba(0,0,0,.06);
  display: grid;
  place-items: center;
  text-align: center;
}

.mr-map__pin{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 10px;
}

.mr-map__pin svg{
  width: 26px;
  height: 26px;
  stroke: #6b2bd9;
  fill: none;
  stroke-width: 2;
}

.mr-map__text{
  color: rgba(0,0,0,.45);
  font-weight: 600;
}

/* card infos */
.mr-contact-info{
  padding: 18px;
  border-radius: 16px;
}

.mr-contact-info h3{
  margin: 2px 0 14px !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.mr-info-item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 6px;
}

.mr-info-item strong{
  display:block;
  margin-bottom: 2px;
  font-weight: 500 !important;

}

.mr-info-item div{
  color: #6b6b78;
}

.mr-info-ico{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #efe9fb;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mr-info-ico svg{
  width: 20px;
  height: 20px;
  stroke: #6b2bd9;
  fill: none;
  stroke-width: 2;
}

/* responsivo */
@media (max-width: 980px){
  .mr-contact-grid{
    grid-template-columns: 1fr;
  }
  .mr-map__placeholder{
    height: 280px;
  }
  .mr-section--contact .mr-section__title h2{
    font-size: 34px;
  }
}
.mr-btn__icon{
  display: inline-flex;
  margin-left: 10px;
}

.mr-btn__icon svg{
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mr-alert{
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 13px;
}

.mr-alert--success{
  background: rgba(46, 204, 113, .12);
  border: 1px solid rgba(46, 204, 113, .25);
}

.mr-alert--error{
  background: rgba(231, 76, 60, .12);
  border: 1px solid rgba(231, 76, 60, .25);
}

/** MOBILE MENU **/

/* botão hamburger */
.mr-burger{
  display:none !important;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;

  /* força empilhar */
  display:flex;
  flex-direction:column !important;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.mr-burger span{
  width:22px;
  height:2px;
  border-radius:999px;
  background:rgba(255,255,255,.92);

  /* garante que não vira inline e não sofre flex global */
  display:block !important;
  flex:0 0 auto !important;
  margin:0 !important;
}

@media (max-width: 980px){
  .mr-burger{
    display: flex !important;
  }

  .mr-nav{
    display: none !important;
  }

  /* opcional: se você quiser o botão "Conhecer solução" só dentro do drawer */
  .mr-header .mr-btn--ghost{
    display: none !important;
  }
}

/* container do menu mobile (overlay + painel) */
.mr-mobile{
  position: fixed;
  inset: 0;
  z-index: 99999 !important;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

.mr-mobile.is-open{
  pointer-events: auto;
  opacity: 1;
}

/* overlay escuro à esquerda */
.mr-mobile__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
}

/* painel roxo vindo da direita */
.mr-mobile__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100dvh;
  height: 100vh;
  width: min(78vw, 340px);

  /* COR + TRANSLUCIDEZ */
  background: linear-gradient(
    180deg,
    rgba(107, 43, 217, 0.88) 0%,
    rgba(92, 34, 200, 0.88) 100%
  );

  /* BLUR */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: -24px 0 60px rgba(0,0,0,.35);

  padding: 22px 22px 26px;
  transform: translateX(100%);
  transition: transform .22s ease;

  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mr-mobile.is-open .mr-mobile__panel{
  transform: translateX(0);
}

/* botão X no topo direito */
.mr-mobile__close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* links grandes e espaçados */
.mr-mobile__nav{
  margin-top: 70px; /* empurra para parecer com o print */
  display:flex;
  flex-direction: column;
  gap: 26px;
}
.mr-mobile__nav a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

/* CTA fixo embaixo */
.mr-mobile__cta{
  margin-top: auto;
  padding-top: 22px;
  display:flex;
  justify-content:center;
}
.mr-btn--mobile-cta{
  background:#fff;
  color:#5c22c8;
  border: 0;
  padding: 14px 22px;
  border-radius: 14px;
  width: 100%;
  max-width: 260px;
  justify-content:center;
  font-weight: 700;
}

/* mostrar hamburger e esconder menu desktop no mobile */
@media (max-width: 980px){
  .mr-burger{ display:inline-flex; align-items:center; justify-content:center; }
  .mr-nav{ display:none !important; }
  .mr-btn--ghost{ display:none !important; }
}

/** cor do hamburger quando o header ficar branco no scroll **/
.mr-header.is-scrolled .mr-burger span{
  background: #2b1365 !important;
}