/* =========================================================
   MENEZES & MENEZES ADVOGADOS
   LANDING PAGE SALÁRIO-MATERNIDADE — V2
========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {
  --mm2-brown: #2b1d18;
  --mm2-brown-light: #5a4338;
  --mm2-brown-soft: #755d51;
  --mm2-brown-dark: #1d1310;

  --mm2-gold: #c5a15b;
  --mm2-gold-dark: #9b7939;
  --mm2-gold-light: #e7d3a2;
  --mm2-gold-soft: #f1e7d2;

  --mm2-cream: #f8f2e8;
  --mm2-cream-light: #fdfaf5;
  --mm2-beige: #eee1d6;
  --mm2-rose: #f2e7de;
  --mm2-rose-light: #faf3ee;

  --mm2-white: #ffffff;
  --mm2-text: #342a25;
  --mm2-gray: #746b66;
  --mm2-gray-light: #f0ece8;
  --mm2-border: #e1d9d2;

  --mm2-green: #218a5a;
  --mm2-green-dark: #176d46;
  --mm2-danger: #b04141;

  --mm2-font-title: "Playfair Display", serif;
  --mm2-font-body: "DM Sans", sans-serif;

  --mm2-radius-sm: 12px;
  --mm2-radius-md: 22px;
  --mm2-radius-lg: 38px;
  --mm2-radius-pill: 100px;

  --mm2-shadow-sm: 0 12px 35px rgba(43, 29, 24, 0.07);
  --mm2-shadow-md: 0 20px 55px rgba(43, 29, 24, 0.12);
  --mm2-shadow-lg: 0 30px 90px rgba(43, 29, 24, 0.17);

  --mm2-transition: 0.3s ease;
}


/* =========================================================
   RESET E CONFIGURAÇÕES GERAIS
========================================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--mm2-white);
  color: var(--mm2-text);
  font-family: var(--mm2-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--mm2-font-body);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--mm2-transition);
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--mm2-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--mm2-brown);
  font-family: var(--mm2-font-title);
  font-weight: 700;
  line-height: 1.12;
}

h1 strong,
h2 strong,
h3 strong {
  color: var(--mm2-gold-dark);
}

::selection {
  background: var(--mm2-gold-soft);
  color: var(--mm2-brown);
}

.mm2-page {
  overflow: hidden;
}

.mm2-section {
  position: relative;
  padding: 105px 0;
}

.mm2-section h2 {
  margin-bottom: 24px;
  font-size: clamp(39px, 4.4vw, 58px);
}

.mm2-section-description {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 17px;
}

.mm2-section-content {
  max-width: 650px;
}

.mm2-section-content > p {
  font-size: 16px;
}

.mm2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  color: var(--mm2-gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.3;
  text-transform: uppercase;
}

.mm2-eyebrow::before {
  width: 31px;
  height: 1px;
  background: var(--mm2-gold);
  content: "";
}

.text-center .mm2-eyebrow::after {
  width: 31px;
  height: 1px;
  background: var(--mm2-gold);
  content: "";
}


/* =========================================================
   BOTÕES
========================================================= */

.mm2-btn {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 27px;
  border: 1px solid transparent;
  border-radius: var(--mm2-radius-pill);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform var(--mm2-transition),
    background-color var(--mm2-transition),
    border-color var(--mm2-transition),
    color var(--mm2-transition),
    box-shadow var(--mm2-transition);
}

.mm2-btn:hover {
  transform: translateY(-3px);
}

.mm2-btn-primary {
  border-color: var(--mm2-gold);
  background: var(--mm2-gold);
  box-shadow: 0 14px 34px rgba(197, 161, 91, 0.25);
  color: var(--mm2-brown-dark);
}

.mm2-btn-primary:hover,
.mm2-btn-primary:focus {
  border-color: var(--mm2-brown);
  background: var(--mm2-brown);
  color: var(--mm2-white);
}

.mm2-btn-dark {
  border-color: var(--mm2-brown);
  background: var(--mm2-brown);
  box-shadow: 0 14px 35px rgba(43, 29, 24, 0.2);
  color: var(--mm2-white);
}

.mm2-btn-dark:hover,
.mm2-btn-dark:focus {
  border-color: var(--mm2-gold);
  background: var(--mm2-gold);
  color: var(--mm2-brown-dark);
}

.mm2-btn-light {
  border-color: var(--mm2-white);
  background: var(--mm2-white);
  color: var(--mm2-brown);
}

.mm2-btn-light:hover,
.mm2-btn-light:focus {
  border-color: var(--mm2-gold-light);
  background: var(--mm2-gold-light);
  color: var(--mm2-brown);
}

.mm2-btn-outline {
  border-color: var(--mm2-gold);
  background: transparent;
  color: var(--mm2-brown);
}

.mm2-btn-outline:hover,
.mm2-btn-outline:focus {
  background: var(--mm2-gold-soft);
  color: var(--mm2-brown);
}


/* =========================================================
   HEADER
========================================================= */

.mm2-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(43, 29, 24, 0.07);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 7px 30px rgba(43, 29, 24, 0.04);
  backdrop-filter: blur(18px);
}

.mm2-header .navbar {
  min-height: 88px;
  padding: 10px 0;
}

.mm2-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.mm2-logo img {
  width: auto;
  max-width: 240px;
  max-height: 68px;
  object-fit: contain;
}

.mm2-header .navbar-nav {
  gap: 3px;
}

.mm2-header .nav-link {
  position: relative;
  padding: 12px 11px !important;
  color: var(--mm2-brown);
  font-size: 13px;
  font-weight: 600;
}

.mm2-header .nav-link::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 1px;
  background: var(--mm2-gold);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--mm2-transition);
}

.mm2-header .nav-link:hover {
  color: var(--mm2-gold-dark);
}

.mm2-header .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.mm2-btn-header {
  min-height: 45px;
  padding: 11px 21px;
  border-color: var(--mm2-brown);
  background: var(--mm2-brown);
  color: var(--mm2-white);
}

.mm2-btn-header:hover {
  border-color: var(--mm2-gold);
  background: var(--mm2-gold);
  color: var(--mm2-brown);
}

.mm2-header .navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--mm2-border);
  border-radius: 14px;
  box-shadow: none !important;
}

.mm2-header .navbar-toggler-icon {
  width: 23px;
  height: 23px;
}


/* =========================================================
   HERO
========================================================= */

.mm2-hero {
  position: relative;
  min-height: 770px;
  display: flex;
  align-items: center;
  padding: 95px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(231, 211, 162, 0.28),
      transparent 31%
    ),
    linear-gradient(
      115deg,
      var(--mm2-cream-light) 0%,
      var(--mm2-rose-light) 54%,
      var(--mm2-rose) 100%
    );
}

.mm2-hero::before {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(197, 161, 91, 0.16);
  border-radius: 50%;
  content: "";
}

.mm2-hero::after {
  position: absolute;
  right: -210px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(197, 161, 91, 0.18);
  border-radius: 50%;
  content: "";
}

.mm2-hero .container {
  position: relative;
  z-index: 2;
}

.mm2-hero-content {
  max-width: 690px;
}

.mm2-hero h1 {
  margin-bottom: 25px;
  font-size: clamp(48px, 5vw, 60px);
  line-height: 1.03;
}

.mm2-hero h1 strong {
  margin: 6px 0;
  color: var(--mm2-gold-dark);
  white-space: nowrap;
}

.mm2-hero-subtitle {
  max-width: 650px;
  margin-bottom: 15px;
  color: var(--mm2-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.mm2-hero-text {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 15px;
}

.mm2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.mm2-hero-actions .mm2-btn {
  min-height: 59px;
  padding: 16px 30px;
}

.mm2-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 31px;
}

.mm2-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mm2-brown);
  font-size: 12px;
  font-weight: 600;
}

.mm2-hero-feature i {
  color: var(--mm2-gold-dark);
}

.mm2-hero-disclaimer {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--mm2-gray);
  font-size: 10px;
  line-height: 1.55;
}


/* IMAGEM DO HERO */

.mm2-hero-visual {
  position: relative;
  max-width: 570px;
  margin-left: auto;
  padding: 30px 10px 35px 42px;
}

.mm2-hero-shape {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 83%;
  height: 92%;
  border-radius: 150px 38px 150px 38px;
  background:
    linear-gradient(
      145deg,
      var(--mm2-gold-light),
      var(--mm2-gold)
    );
  opacity: 0.63;
  transform: rotate(3deg);
}

.mm2-hero-image {
  position: relative;
  z-index: 1;
  height: 610px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 150px 32px 150px 32px;
  background: var(--mm2-beige);
  box-shadow: var(--mm2-shadow-lg);
}

.mm2-hero-image picture,
.mm2-hero-image img {
  width: 100%;
  height: 100%;
}

.mm2-hero-image img {
  object-fit: cover;
  object-position: center;
}

.mm2-floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(197, 161, 91, 0.23);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--mm2-shadow-md);
  backdrop-filter: blur(12px);
}

.mm2-floating-badge > i {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mm2-gold-soft);
  color: var(--mm2-gold-dark);
  font-size: 18px;
}

.mm2-floating-badge strong,
.mm2-floating-badge span {
  display: block;
}

.mm2-floating-badge strong {
  margin-bottom: 2px;
  color: var(--mm2-brown);
  font-size: 12px;
}

.mm2-floating-badge span {
  color: var(--mm2-gray);
  font-size: 10px;
}

.mm2-floating-badge-top {
  top: 95px;
  left: -8px;
}

.mm2-floating-badge-bottom {
  right: -10px;
  bottom: 80px;
}


/* =========================================================
   AVISO LEGAL
========================================================= */

.mm2-legal-strip {
  position: relative;
  z-index: 3;
  padding: 20px 0;
  border-top: 1px solid rgba(197, 161, 91, 0.2);
  border-bottom: 1px solid rgba(197, 161, 91, 0.2);
  background: var(--mm2-gold-soft);
}

.mm2-legal-strip-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 13px;
}

.mm2-legal-strip-content i {
  margin-top: 4px;
  color: var(--mm2-gold-dark);
}

.mm2-legal-strip-content p {
  max-width: 1050px;
  margin: 0;
  color: var(--mm2-brown);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}


/* =========================================================
   PRÉ-ANÁLISE
========================================================= */

.mm2-analysis {
  position: relative;
  padding: 95px 0;
  background:
    linear-gradient(
      180deg,
      var(--mm2-white) 0%,
      var(--mm2-cream-light) 100%
    );
}

.mm2-analysis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid rgba(43, 29, 24, 0.08);
  border-radius: 35px;
  background: var(--mm2-white);
  box-shadow: var(--mm2-shadow-lg);
}

.mm2-analysis-intro {
  position: relative;
  padding: 55px 42px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 5%,
      rgba(231, 211, 162, 0.16),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      var(--mm2-brown-dark),
      var(--mm2-brown-light)
    );
}

.mm2-analysis-intro::after {
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(231, 211, 162, 0.18);
  border-radius: 50%;
  content: "";
}

.mm2-analysis-intro .mm2-eyebrow {
  color: var(--mm2-gold-light);
}

.mm2-analysis-intro h2 {
  margin-bottom: 21px;
  color: var(--mm2-white);
  font-size: clamp(36px, 3.7vw, 50px);
}

.mm2-analysis-intro > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.mm2-analysis-points {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.mm2-analysis-points > div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.mm2-analysis-points i {
  width: 25px;
  height: 25px;
  display: flex;
  flex: 0 0 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(231, 211, 162, 0.15);
  color: var(--mm2-gold-light);
  font-size: 10px;
}


/* FORMULÁRIO */

.mm2-form {
  min-width: 0;
  background: var(--mm2-white);
}

.mm2-form-progress {
  padding: 25px 33px 21px;
  border-bottom: 1px solid var(--mm2-gray-light);
  background: var(--mm2-cream-light);
}

.mm2-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.mm2-progress-header span,
.mm2-progress-header small {
  display: block;
}

.mm2-progress-header span {
  margin-bottom: 2px;
  color: var(--mm2-brown);
  font-size: 14px;
  font-weight: 700;
}

.mm2-progress-header small {
  color: var(--mm2-gray);
  font-size: 11px;
}

.mm2-progress-header strong {
  color: var(--mm2-gold-dark);
  font-size: 18px;
}

.mm2-progress-track {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 100px;
  background: #e8dfd8;
}

.mm2-progress-fill {
  height: 100%;
  border-radius: 100px;
  background:
    linear-gradient(
      90deg,
      var(--mm2-gold-dark),
      var(--mm2-gold)
    );
  transition: width 0.35s ease;
}

.mm2-form-content {
  min-height: 505px;
  padding: 38px 39px 28px;
}

.mm2-question {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.mm2-question.active {
  animation: mm2QuestionIn 0.3s ease;
}

@keyframes mm2QuestionIn {
  from {
    opacity: 0;
    transform: translateX(13px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mm2-question legend {
  width: 100%;
  margin-bottom: 9px;
  color: var(--mm2-brown);
  font-family: var(--mm2-font-title);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.mm2-question-help {
  margin-bottom: 23px;
  font-size: 13px;
}

.mm2-options {
  display: grid;
  gap: 11px;
}

.mm2-option {
  position: relative;
  display: flex;
  min-height: 61px;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid var(--mm2-border);
  border-radius: 17px;
  background: var(--mm2-white);
  cursor: pointer;
  transition: 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.mm2-option:hover {
  border-color: var(--mm2-gold);
  background: var(--mm2-cream-light);
  transform: translateX(3px);
}

.mm2-option:has(input:checked) {
  border-color: var(--mm2-gold);
  background: var(--mm2-gold-soft);
  box-shadow: 0 9px 25px rgba(197, 161, 91, 0.13);
}

.mm2-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mm2-option-circle {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 2px solid #d9d0c8;
  border-radius: 50%;
  background: var(--mm2-white);
  transition: 0.2s ease;
}

.mm2-option:has(input:checked) .mm2-option-circle {
  border-color: var(--mm2-brown);
  background: var(--mm2-brown);
}

.mm2-option:has(input:checked) .mm2-option-circle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mm2-gold-light);
  content: "";
  transform: translate(-50%, -50%);
}

.mm2-option-text {
  flex: 1;
  color: var(--mm2-brown);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.mm2-option > i {
  color: #b6aaa1;
  font-size: 11px;
  transition: 0.2s ease;
}

.mm2-option:has(input:checked) > i,
.mm2-option:hover > i {
  color: var(--mm2-gold-dark);
  transform: translateX(2px);
}

.mm2-option:focus-within {
  outline: 3px solid rgba(197, 161, 91, 0.23);
  outline-offset: 2px;
}


/* CAMPOS */

.mm2-contact-step {
  max-width: 600px;
  margin: 0 auto;
}

.mm2-field {
  margin-bottom: 18px;
}

.mm2-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--mm2-brown);
  font-size: 13px;
  font-weight: 700;
}

.mm2-field input {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--mm2-border);
  border-radius: 16px;
  background: var(--mm2-white);
  color: var(--mm2-brown);
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
}

.mm2-field input::placeholder {
  color: #a39a93;
}

.mm2-field input:focus {
  border-color: var(--mm2-gold);
  box-shadow: 0 0 0 4px rgba(197, 161, 91, 0.13);
}

.mm2-field.has-error input {
  border-color: var(--mm2-danger);
}

.mm2-field-error {
  display: none;
  margin-top: 6px;
  color: var(--mm2-danger);
  font-size: 11px;
  font-weight: 600;
}

.mm2-field.has-error .mm2-field-error {
  display: block;
}

.mm2-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 7px;
  cursor: pointer;
}

.mm2-consent input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 2px;
  accent-color: var(--mm2-brown);
}

.mm2-consent span {
  color: var(--mm2-gray);
  font-size: 11px;
  line-height: 1.55;
}

.mm2-security {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 17px;
  padding: 13px 15px;
  border-radius: 14px;
  background: #eef7f2;
  color: var(--mm2-green-dark);
  font-size: 11px;
  line-height: 1.5;
}

.mm2-security i {
  margin-top: 3px;
}

.mm2-form-actions {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 32px;
  border-top: 1px solid var(--mm2-gray-light);
  background: var(--mm2-cream-light);
}

.mm2-back,
.mm2-submit {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

.mm2-back {
  border: 1px solid var(--mm2-border);
  background: var(--mm2-white);
  color: var(--mm2-brown);
}

.mm2-back:hover:not(:disabled) {
  border-color: var(--mm2-gold);
  background: var(--mm2-gold-soft);
}

.mm2-back:disabled {
  opacity: 0;
  pointer-events: none;
}

.mm2-submit {
  border: 1px solid var(--mm2-gold);
  background: var(--mm2-gold);
  box-shadow: 0 10px 25px rgba(197, 161, 91, 0.2);
  color: var(--mm2-brown-dark);
}

.mm2-submit:hover {
  border-color: var(--mm2-brown);
  background: var(--mm2-brown);
  color: var(--mm2-white);
}

.mm2-auto-message {
  color: var(--mm2-gray);
  font-size: 11px;
  text-align: center;
}

.mm2-form-disclaimer {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--mm2-gray);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}


/* =========================================================
   ATENDIMENTO
========================================================= */

.mm2-attendance {
  background: var(--mm2-white);
}

.mm2-attendance-image {
  position: relative;
  max-width: 560px;
  padding: 12px;
  border: 1px solid rgba(197, 161, 91, 0.26);
  border-radius: 50px 16px 50px 16px;
  background: var(--mm2-cream);
}

.mm2-attendance-image::before {
  position: absolute;
  z-index: -1;
  top: 30px;
  left: -30px;
  width: 80%;
  height: 90%;
  border-radius: 50px 16px 50px 16px;
  background: var(--mm2-rose);
  content: "";
}

.mm2-attendance-image > img {
  width: 100%;
  min-height: 555px;
  border-radius: 40px 10px 40px 10px;
  object-fit: cover;
}

.mm2-attendance-card {
  position: absolute;
  right: -25px;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 19px;
  border: 1px solid rgba(197, 161, 91, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--mm2-shadow-md);
}

.mm2-attendance-card > i {
  width: 44px;
  height: 44px;
  display: flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mm2-rose);
  color: var(--mm2-gold-dark);
}

.mm2-attendance-card strong,
.mm2-attendance-card span {
  display: block;
}

.mm2-attendance-card strong {
  color: var(--mm2-brown);
  font-size: 12px;
}

.mm2-attendance-card span {
  color: var(--mm2-gray);
  font-size: 10px;
}

.mm2-attendance-items {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 29px 0;
}

.mm2-attendance-items > div {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--mm2-border);
  border-radius: 100px;
  background: var(--mm2-cream-light);
  color: var(--mm2-brown);
  font-size: 12px;
  font-weight: 600;
}

.mm2-attendance-items i {
  color: var(--mm2-gold-dark);
}


/* =========================================================
   FAIXA DE CONFIANÇA
========================================================= */

.mm2-trust {
  padding: 0 0 90px;
  background: var(--mm2-white);
}

.mm2-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(43, 29, 24, 0.08);
  border-radius: 25px;
  background: var(--mm2-cream-light);
  box-shadow: var(--mm2-shadow-sm);
}

.mm2-trust-item {
  position: relative;
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 25px 20px;
}

.mm2-trust-item::after {
  position: absolute;
  top: 25px;
  right: 0;
  width: 1px;
  height: calc(100% - 50px);
  background: rgba(43, 29, 24, 0.09);
  content: "";
}

.mm2-trust-item:last-child::after {
  display: none;
}

.mm2-trust-item > i {
  width: 47px;
  height: 47px;
  display: flex;
  flex: 0 0 47px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mm2-gold-soft);
  color: var(--mm2-gold-dark);
}

.mm2-trust-item strong,
.mm2-trust-item span {
  display: block;
}

.mm2-trust-item strong {
  margin-bottom: 2px;
  color: var(--mm2-brown);
  font-family: var(--mm2-font-title);
  font-size: 22px;
  line-height: 1.1;
}

.mm2-trust-item span {
  color: var(--mm2-gray);
  font-size: 11px;
}


/* =========================================================
   BENEFÍCIO
========================================================= */

.mm2-benefit {
  background:
    linear-gradient(
      115deg,
      var(--mm2-rose-light) 0%,
      var(--mm2-cream-light) 100%
    );
}

.mm2-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 29px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--mm2-gold);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.8);
}

.mm2-highlight i {
  margin-top: 3px;
  color: var(--mm2-gold-dark);
}

.mm2-highlight p {
  margin: 0;
  color: var(--mm2-brown);
  font-size: 14px;
}

.mm2-benefit-visual {
  position: relative;
  max-width: 570px;
  margin-left: auto;
  padding: 20px 25px 45px 20px;
}

.mm2-benefit-visual::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 92%;
  border-radius: 35px 120px 35px 120px;
  background: var(--mm2-gold-soft);
  content: "";
  transform: rotate(3deg);
}

.mm2-benefit-image {
  position: relative;
  z-index: 1;
  height: 570px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 35px 120px 35px 120px;
  background: var(--mm2-beige);
  box-shadow: var(--mm2-shadow-lg);
}

.mm2-benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mm2-benefit-detail {
  position: absolute;
  z-index: 3;
  right: -5px;
  bottom: 0;
  max-width: 290px;
  padding: 19px 21px;
  border: 1px solid rgba(197, 161, 91, 0.22);
  border-radius: 18px;
  background: var(--mm2-white);
  box-shadow: var(--mm2-shadow-md);
}

.mm2-benefit-detail span,
.mm2-benefit-detail strong {
  display: block;
}

.mm2-benefit-detail span {
  margin-bottom: 5px;
  color: var(--mm2-gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mm2-benefit-detail strong {
  color: var(--mm2-brown);
  font-size: 13px;
  line-height: 1.45;
}


/* =========================================================
   QUEM PODE TER DIREITO
========================================================= */

.mm2-eligibility {
  background: var(--mm2-white);
}

.mm2-eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.mm2-eligibility-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 19px;
  padding: 27px 25px;
  overflow: hidden;
  border: 1px solid rgba(43, 29, 24, 0.08);
  border-radius: 25px;
  background: var(--mm2-cream-light);
  box-shadow: var(--mm2-shadow-sm);
  transition: var(--mm2-transition);
}

.mm2-eligibility-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(197, 161, 91, 0.18);
  border-radius: 50%;
  content: "";
}

.mm2-eligibility-card:hover {
  border-color: rgba(197, 161, 91, 0.42);
  background: var(--mm2-white);
  box-shadow: var(--mm2-shadow-md);
  transform: translateY(-5px);
}

.mm2-card-icon {
  width: 59px;
  height: 59px;
  flex: 0 0 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--mm2-gold-soft);
  color: var(--mm2-gold-dark);
  font-size: 22px;
  transition: var(--mm2-transition);
}

.mm2-eligibility-card:hover .mm2-card-icon {
  border-radius: 50%;
  background: var(--mm2-brown);
  color: var(--mm2-gold-light);
}

.mm2-eligibility-card h3 {
  margin-bottom: 9px;
  font-size: 24px;
}

.mm2-eligibility-card p {
  margin: 0;
  font-size: 13px;
}


/* =========================================================
   SITUAÇÕES
========================================================= */

.mm2-situations {
  background: var(--mm2-rose-light);
}

.mm2-sticky-content {
  position: sticky;
  top: 125px;
  max-width: 480px;
}

.mm2-situation-list {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 55px;
}

.mm2-situation-list::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 23px;
  width: 1px;
  background: rgba(197, 161, 91, 0.45);
  content: "";
}

.mm2-situation-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 27px 26px;
  border: 1px solid rgba(43, 29, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--mm2-shadow-sm);
  transition: var(--mm2-transition);
}

.mm2-situation-item:hover {
  border-color: rgba(197, 161, 91, 0.43);
  box-shadow: var(--mm2-shadow-md);
  transform: translateX(6px);
}

.mm2-situation-item > span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--mm2-brown);
  color: var(--mm2-gold-light);
  font-size: 12px;
  font-weight: 700;
}

.mm2-situation-item h3 {
  margin-bottom: 7px;
  font-size: 24px;
}

.mm2-situation-item p {
  margin: 0;
  font-size: 13px;
}


/* =========================================================
   PROCESSO
========================================================= */

.mm2-process {
  background: var(--mm2-white);
}

.mm2-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.mm2-timeline::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 93px;
  width: 1px;
  background: rgba(197, 161, 91, 0.45);
  content: "";
}

.mm2-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 55px 75px 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}

.mm2-timeline-number {
  color: rgba(197, 161, 91, 0.55);
  font-family: var(--mm2-font-title);
  font-size: 30px;
  font-weight: 700;
}

.mm2-timeline-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border: 5px solid var(--mm2-white);
  border-radius: 50%;
  background: var(--mm2-gold-soft);
  box-shadow: 0 0 0 1px rgba(197, 161, 91, 0.28);
  color: var(--mm2-gold-dark);
}

.mm2-timeline-content {
  padding: 24px 27px;
  border: 1px solid rgba(43, 29, 24, 0.08);
  border-radius: 22px;
  background: var(--mm2-cream-light);
  box-shadow: var(--mm2-shadow-sm);
  transition: var(--mm2-transition);
}

.mm2-timeline-content:hover {
  border-color: rgba(197, 161, 91, 0.4);
  background: var(--mm2-white);
  box-shadow: var(--mm2-shadow-md);
  transform: translateX(5px);
}

.mm2-timeline-content h3 {
  margin-bottom: 7px;
  font-size: 24px;
}

.mm2-timeline-content p {
  margin: 0;
  font-size: 13px;
}


/* =========================================================
   DOCUMENTOS
========================================================= */

.mm2-documents {
  background:
    linear-gradient(
      110deg,
      var(--mm2-cream) 0%,
      var(--mm2-cream-light) 100%
    );
}

.mm2-document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  padding-left: 30px;
}

.mm2-document-list article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 21px;
  border: 1px solid rgba(43, 29, 24, 0.08);
  border-radius: 22px;
  background: var(--mm2-white);
  box-shadow: var(--mm2-shadow-sm);
  transition: var(--mm2-transition);
}

.mm2-document-list article:hover {
  border-color: rgba(197, 161, 91, 0.4);
  box-shadow: var(--mm2-shadow-md);
  transform: translateY(-4px);
}

.mm2-document-list article > i {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--mm2-rose);
  color: var(--mm2-gold-dark);
}

.mm2-document-list h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.mm2-document-list p {
  margin: 0;
  font-size: 12px;
}


/* =========================================================
   EQUIPE
========================================================= */

.mm2-team {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(231, 211, 162, 0.11),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      var(--mm2-brown-dark),
      var(--mm2-brown-light)
    );
}

.mm2-team .mm2-eyebrow {
  color: var(--mm2-gold-light);
}

.mm2-team h2 {
  color: var(--mm2-white);
}

.mm2-team-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.mm2-team-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(231, 211, 162, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: var(--mm2-transition);
}

.mm2-team-card:hover {
  border-color: rgba(231, 211, 162, 0.48);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(-7px);
}

.mm2-team-photo {
  height: 410px;
  overflow: hidden;
  background: var(--mm2-beige);
}

.mm2-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.mm2-team-card:hover .mm2-team-photo img {
  transform: scale(1.04);
}

.mm2-team-content {
  position: relative;
  min-height: 255px;
  padding: 28px 26px 30px;
}

.mm2-team-content::before {
  position: absolute;
  top: 0;
  left: 26px;
  width: 48px;
  height: 3px;
  background: var(--mm2-gold);
  content: "";
}

.mm2-team-content > span {
  display: block;
  margin-bottom: 7px;
  color: var(--mm2-gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.mm2-team-content h3 {
  margin-bottom: 8px;
  color: var(--mm2-white);
  font-size: 28px;
}

.mm2-team-oab {
  margin-bottom: 14px !important;
  color: var(--mm2-gold-light) !important;
  font-size: 11px !important;
  font-weight: 700;
}

.mm2-team-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}


/* =========================================================
   AVALIAÇÕES
========================================================= */

.mm2-reviews {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--mm2-white) 0%,
      var(--mm2-rose-light) 100%
    );
}

.mm2-reviews-slider {
  position: relative;
  padding: 0 55px 52px;
}

.mm2-reviews-slider .splide__track {
  overflow: hidden;
  padding: 10px 0 25px;
}

.mm2-reviews-slider .splide__list {
  align-items: stretch;
}

.mm2-reviews-slider .splide__slide {
  height: auto;
  padding: 0 3px;
}

.mm2-review-card {
  position: relative;
  height: 100%;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 31px 27px;
  overflow: hidden;
  border: 1px solid rgba(43, 29, 24, 0.08);
  border-radius: 25px;
  background: var(--mm2-white);
  box-shadow: var(--mm2-shadow-sm);
  transition: var(--mm2-transition);
}

.mm2-review-card::after {
  position: absolute;
  right: 22px;
  top: 6px;
  color: rgba(197, 161, 91, 0.1);
  font-family: Georgia, serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  content: "“";
  pointer-events: none;
}

.mm2-review-card:hover {
  border-color: rgba(197, 161, 91, 0.42);
  box-shadow: var(--mm2-shadow-md);
  transform: translateY(-5px);
}

.mm2-review-stars {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--mm2-gold);
  font-size: 12px;
}

.mm2-review-card > p {
  position: relative;
  z-index: 2;
  flex: 1;
  margin-bottom: 25px;
  color: var(--mm2-gray);
  font-size: 14px;
  line-height: 1.75;
}

.mm2-review-author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--mm2-gray-light);
}

.mm2-review-avatar {
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mm2-gold-soft);
  color: var(--mm2-gold-dark);
  font-family: var(--mm2-font-title);
  font-size: 17px;
  font-weight: 700;
}

.mm2-review-author h3 {
  margin-bottom: 2px;
  font-family: var(--mm2-font-body);
  font-size: 13px;
  font-weight: 700;
}

.mm2-review-author span {
  display: block;
  color: var(--mm2-gray);
  font-size: 9px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}


/* SETAS */

.mm2-reviews-slider .splide__arrow {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(197, 161, 91, 0.35);
  background: var(--mm2-white);
  box-shadow: 0 10px 27px rgba(43, 29, 24, 0.1);
  opacity: 1;
  transition: 0.22s ease;
}

.mm2-reviews-slider .splide__arrow:hover {
  border-color: var(--mm2-brown);
  background: var(--mm2-brown);
}

.mm2-reviews-slider .splide__arrow svg {
  width: 14px;
  height: 14px;
  fill: var(--mm2-brown);
}

.mm2-reviews-slider .splide__arrow:hover svg {
  fill: var(--mm2-gold-light);
}

.mm2-reviews-slider .splide__arrow--prev {
  left: 0;
}

.mm2-reviews-slider .splide__arrow--next {
  right: 0;
}


/* PAGINAÇÃO */

.mm2-reviews-slider .splide__pagination {
  bottom: 5px;
  gap: 6px;
}

.mm2-reviews-slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 0;
  background: rgba(43, 29, 24, 0.23);
  opacity: 1;
  transition: 0.22s ease;
}

.mm2-reviews-slider .splide__pagination__page.is-active {
  width: 25px;
  border-radius: 100px;
  background: var(--mm2-gold);
  transform: none;
}

.mm2-reviews-warning {
  max-width: 680px;
  margin: 15px auto 0;
  color: var(--mm2-gray);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}


/* =========================================================
   FAQ
========================================================= */

.mm2-faq {
  background: var(--mm2-white);
}

.mm2-faq-intro {
  position: sticky;
  top: 125px;
  max-width: 470px;
}

.mm2-faq-intro > p {
  max-width: 420px;
  margin-bottom: 28px;
}

.mm2-accordion {
  overflow: hidden;
  border: 1px solid var(--mm2-gray-light);
  border-radius: 25px;
  box-shadow: var(--mm2-shadow-sm);
}

.mm2-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--mm2-gray-light);
  background: var(--mm2-white);
}

.mm2-accordion .accordion-item:last-child {
  border-bottom: 0;
}

.mm2-accordion .accordion-button {
  min-height: 75px;
  padding: 21px 25px;
  background: var(--mm2-white);
  color: var(--mm2-brown);
  font-family: var(--mm2-font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: none;
}

.mm2-accordion .accordion-button:not(.collapsed) {
  background: var(--mm2-cream-light);
  color: var(--mm2-gold-dark);
}

.mm2-accordion .accordion-button::after {
  width: 30px;
  height: 30px;
  border: 1px solid var(--mm2-border);
  border-radius: 50%;
  background-color: var(--mm2-white);
  background-position: center;
  background-size: 12px;
}

.mm2-accordion .accordion-button:not(.collapsed)::after {
  border-color: var(--mm2-gold);
  background-color: var(--mm2-gold-soft);
}

.mm2-accordion .accordion-body {
  padding: 3px 25px 23px;
  background: var(--mm2-cream-light);
}

.mm2-accordion .accordion-body p {
  margin: 0;
  font-size: 13px;
}


/* =========================================================
   CTA FINAL
========================================================= */

.mm2-final-cta {
  padding: 0 0 100px;
  background: var(--mm2-white);
}

.mm2-final-cta-box {
  position: relative;
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 55px 60px;
  overflow: hidden;
  border-radius: 35px;
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(231, 211, 162, 0.18),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--mm2-brown-dark),
      var(--mm2-brown-light)
    );
  box-shadow: var(--mm2-shadow-lg);
}

.mm2-final-cta-box::before {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(231, 211, 162, 0.18);
  border-radius: 50%;
  content: "";
}

.mm2-final-cta-box > div {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.mm2-final-cta-box .mm2-eyebrow {
  color: var(--mm2-gold-light);
}

.mm2-final-cta-box h2 {
  margin-bottom: 18px;
  color: var(--mm2-white);
  font-size: clamp(38px, 4.1vw, 56px);
}

.mm2-final-cta-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.mm2-final-cta-box > .mm2-btn {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}


/* =========================================================
   CONTATO
========================================================= */

.mm2-contact {
  background:
    linear-gradient(
      115deg,
      var(--mm2-rose-light) 0%,
      var(--mm2-cream-light) 100%
    );
}

.mm2-contact-list {
  display: grid;
  gap: 19px;
  margin: 30px 0;
}

.mm2-contact-list > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mm2-contact-list > div > i {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--mm2-gold-soft);
  color: var(--mm2-gold-dark);
}

.mm2-contact-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--mm2-brown);
  font-size: 13px;
}

.mm2-contact-list p {
  margin: 0;
  font-size: 13px;
}

.mm2-contact-card {
  position: relative;
  max-width: 530px;
  margin-left: auto;
  padding: 45px 40px;
  overflow: hidden;
  border: 1px solid rgba(231, 211, 162, 0.2);
  border-radius: 35px;
  background: var(--mm2-brown);
  box-shadow: var(--mm2-shadow-lg);
}

.mm2-contact-card::after {
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(231, 211, 162, 0.18);
  border-radius: 50%;
  content: "";
}

.mm2-contact-card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 15px;
  border-radius: 18px;
  background: var(--mm2-white);
}

.mm2-contact-card-logo img {
  width: auto;
  max-width: 215px;
  max-height: 70px;
}

.mm2-contact-card > span {
  display: block;
  margin-bottom: 7px;
  color: var(--mm2-gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.mm2-contact-card h3 {
  margin-bottom: 15px;
  color: var(--mm2-white);
  font-size: 34px;
}

.mm2-contact-card p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
}

.mm2-contact-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mm2-gold-light);
  font-size: 13px;
  font-weight: 600;
}

.mm2-contact-card a:hover {
  color: var(--mm2-white);
}


/* =========================================================
   FOOTER
========================================================= */

.mm2-footer {
  padding: 70px 0 0;
  background: var(--mm2-brown-dark);
  color: var(--mm2-white);
}

.mm2-footer-main {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.mm2-footer-logo {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--mm2-white);
}

.mm2-footer-logo img {
  width: auto;
  max-width: 260px;
  max-height: 85px;
  object-fit: contain;
}

.mm2-footer-main > p {
  max-width: 650px;
  margin: 0 auto 23px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.mm2-footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 23px;
}

.mm2-footer-info span {
  position: relative;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.mm2-footer-info span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mm2-gold);
  content: "";
  transform: translateY(-50%);
}

.mm2-footer-notice {
  margin-top: 42px;
  padding: 24px 27px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.mm2-footer-notice p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.65;
}

.mm2-footer-notice p:last-child {
  margin-bottom: 0;
}

.mm2-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 27px;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mm2-footer-bottom > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.mm2-footer-developed {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.mm2-footer-developed span {
  max-width: 255px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.4;
  text-align: right;
}

.mm2-footer-developed img {
  width: auto;
  max-width: 145px;
  max-height: 38px;
  object-fit: contain;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.mm2-floating-whatsapp {
  position: fixed;
  z-index: 999;
  right: 21px;
  bottom: 21px;
  display: flex;
  min-height: 57px;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: var(--mm2-green);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.21);
  color: var(--mm2-white);
  font-size: 12px;
  font-weight: 700;
}

.mm2-floating-whatsapp i {
  font-size: 23px;
}

.mm2-floating-whatsapp:hover {
  background: var(--mm2-green-dark);
  color: var(--mm2-white);
  transform: translateY(-4px);
}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

.mm2-btn:focus-visible,
.mm2-header a:focus-visible,
.mm2-back:focus-visible,
.mm2-submit:focus-visible,
.mm2-accordion .accordion-button:focus-visible {
  outline: 3px solid rgba(197, 161, 91, 0.45);
  outline-offset: 3px;
}


/* =========================================================
   DESKTOP MÉDIO
========================================================= */

@media (max-width: 1199.98px) {

  .mm2-logo img {
    max-width: 215px;
  }

  .mm2-header .nav-link {
    padding-right: 8px !important;
    padding-left: 8px !important;
    font-size: 12px;
  }

  .mm2-hero-visual {
    padding-left: 25px;
  }

  .mm2-floating-badge-top {
    left: -15px;
  }

  .mm2-floating-badge-bottom {
    right: -15px;
  }

  .mm2-analysis-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  html {
    scroll-padding-top: 78px;
  }

  .mm2-section {
    padding: 82px 0;
  }

  .mm2-header .navbar {
    min-height: 76px;
  }

  .mm2-logo img {
    max-width: 195px;
    max-height: 58px;
  }

  .mm2-header .navbar-collapse {
    margin-top: 11px;
    padding: 18px;
    border: 1px solid var(--mm2-gray-light);
    border-radius: 17px;
    background: var(--mm2-white);
    box-shadow: var(--mm2-shadow-md);
  }

  .mm2-header .navbar-nav {
    align-items: stretch !important;
  }

  .mm2-header .nav-link {
    padding: 11px 7px !important;
    font-size: 14px;
  }

  .mm2-header .nav-link::after {
    display: none;
  }

  .mm2-header .nav-item.ms-lg-3 {
    margin-top: 8px;
  }

  .mm2-btn-header {
    width: 100%;
  }

  .mm2-hero {
    padding: 80px 0 100px;
  }

  .mm2-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .mm2-hero h1 {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .mm2-hero-subtitle,
  .mm2-hero-text,
  .mm2-hero-disclaimer {
    margin-right: auto;
    margin-left: auto;
  }

  .mm2-hero-actions,
  .mm2-hero-features {
    justify-content: center;
  }

  .mm2-hero-visual {
    max-width: 600px;
    margin: 20px auto 0;
    padding-left: 35px;
  }

  .mm2-analysis-layout {
    grid-template-columns: 1fr;
  }

  .mm2-analysis-intro {
    padding: 45px 40px;
    text-align: center;
  }

  .mm2-analysis-points {
    max-width: 380px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .mm2-attendance-image {
    margin: 0 auto;
  }

  .mm2-section-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .mm2-attendance-items {
    justify-content: center;
  }

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

  .mm2-trust-item:nth-child(2)::after,
  .mm2-trust-item:last-child::after {
    display: none;
  }

  .mm2-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(43, 29, 24, 0.08);
  }

  .mm2-benefit-visual {
    margin: 20px auto 0;
  }

  .mm2-sticky-content,
  .mm2-faq-intro {
    position: static;
    max-width: none;
    text-align: center;
  }

  .mm2-situation-list {
    padding-left: 0;
  }

  .mm2-situation-list::before {
    display: none;
  }

  .mm2-document-list {
    padding-left: 0;
  }

  .mm2-final-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .mm2-contact-card {
    margin: 20px auto 0;
  }

  .mm2-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  body {
    font-size: 15px;
  }

  .mm2-section {
    padding: 67px 0;
  }

  .mm2-section h2 {
    font-size: 36px;
  }

  .mm2-eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .mm2-eyebrow::before,
  .text-center .mm2-eyebrow::after {
    width: 22px;
  }

  .mm2-btn {
    min-height: 51px;
    padding: 13px 21px;
    font-size: 12px;
  }


  /* HERO */

  .mm2-hero {
    min-height: auto;
    padding: 65px 0 80px;
  }

  .mm2-hero::before,
  .mm2-hero::after {
    display: none;
  }

  .mm2-hero h1 {
    font-size: 42px;
  }

  .mm2-hero h1 strong {
    white-space: normal;
  }

  .mm2-hero-subtitle {
    font-size: 16px;
  }

  .mm2-hero-text {
    font-size: 14px;
  }

  .mm2-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mm2-hero-actions .mm2-btn {
    width: 100%;
  }

  .mm2-hero-features {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .mm2-hero-visual {
    padding: 22px 15px 30px;
  }

  .mm2-hero-shape {
    right: 5%;
    width: 85%;
    border-radius: 85px 24px 85px 24px;
  }

  .mm2-hero-image {
    height: 490px;
    border-width: 6px;
    border-radius: 85px 22px 85px 22px;
  }

  .mm2-floating-badge {
    min-width: 185px;
    padding: 12px 14px;
  }

  .mm2-floating-badge-top {
    top: 65px;
    left: 0;
  }

  .mm2-floating-badge-bottom {
    right: 0;
    bottom: 55px;
  }


  /* AVISO */

  .mm2-legal-strip-content {
    text-align: left;
  }

  .mm2-legal-strip-content p {
    font-size: 12px;
    text-align: left;
  }


  /* FORMULÁRIO */

  .mm2-analysis {
    padding: 65px 0;
  }

  .mm2-analysis-layout {
    border-radius: 25px;
  }

  .mm2-analysis-intro {
    padding: 37px 24px;
  }

  .mm2-analysis-intro h2 {
    font-size: 35px;
  }

  .mm2-form-progress {
    padding: 21px 20px 18px;
  }

  .mm2-form-content {
    min-height: 450px;
    padding: 30px 20px 24px;
  }

  .mm2-question legend {
    font-size: 27px;
  }

  .mm2-option {
    min-height: 60px;
    padding: 14px 15px;
  }

  .mm2-option:hover {
    transform: none;
  }

  .mm2-form-actions {
    flex-wrap: wrap;
    padding: 15px 19px;
  }

  .mm2-auto-message {
    order: -1;
    width: 100%;
  }

  .mm2-back {
    flex: 1;
  }

  .mm2-submit {
    width: 100%;
  }


  /* ATENDIMENTO */

  .mm2-attendance-image::before {
    display: none;
  }

  .mm2-attendance-image > img {
    min-height: 430px;
  }

  .mm2-attendance-card {
    right: 10px;
    bottom: 24px;
  }


  /* CONFIANÇA */

  .mm2-trust {
    padding-bottom: 65px;
  }

  .mm2-trust-grid {
    grid-template-columns: 1fr;
  }

  .mm2-trust-item {
    min-height: 98px;
    justify-content: flex-start;
    padding: 20px 24px;
  }

  .mm2-trust-item::after {
    display: none;
  }

  .mm2-trust-item:not(:last-child) {
    border-bottom: 1px solid rgba(43, 29, 24, 0.08);
  }


  /* BENEFÍCIO */

  .mm2-benefit-visual {
    padding: 15px 10px 50px;
  }

  .mm2-benefit-visual::before {
    width: 89%;
  }

  .mm2-benefit-image {
    height: 450px;
    border-radius: 25px 80px 25px 80px;
  }

  .mm2-benefit-detail {
    right: 0;
    max-width: 260px;
  }


  /* QUEM PODE */

  .mm2-eligibility-grid {
    grid-template-columns: 1fr;
  }

  .mm2-eligibility-card {
    padding: 23px 20px;
  }


  /* SITUAÇÕES */

  .mm2-situation-item {
    gap: 14px;
    padding: 21px 19px;
  }

  .mm2-situation-item:hover {
    transform: translateY(-3px);
  }


  /* PROCESSO */

  .mm2-timeline::before {
    left: 28px;
  }

  .mm2-timeline-item {
    grid-template-columns: 58px 1fr;
    gap: 13px;
  }

  .mm2-timeline-number {
    display: none;
  }

  .mm2-timeline-icon {
    width: 54px;
    height: 54px;
  }

  .mm2-timeline-content {
    padding: 21px 19px;
  }

  .mm2-timeline-content:hover {
    transform: translateY(-3px);
  }


  /* DOCUMENTOS */

  .mm2-document-list {
    grid-template-columns: 1fr;
  }


  /* EQUIPE */

  .mm2-team {
    text-align: center;
  }

  .mm2-team-intro {
    max-width: 600px;
    margin: 0 auto;
  }

  .mm2-team-photo {
    height: 430px;
  }

  .mm2-team-content {
    text-align: left;
  }


  /* AVALIAÇÕES */

  .mm2-reviews-slider {
    margin-right: -12px;
    margin-left: -12px;
    padding: 0 12px 50px;
  }

  .mm2-reviews-slider .splide__track {
    overflow: visible;
    padding-bottom: 20px;
  }

  .mm2-reviews-slider .splide__arrows {
    display: none;
  }

  .mm2-review-card {
    min-height: 325px;
    padding: 27px 23px;
  }


  /* FAQ */

  .mm2-faq-intro > p {
    margin-right: auto;
    margin-left: auto;
  }

  .mm2-accordion .accordion-button {
    min-height: 69px;
    padding: 18px 19px;
    font-size: 13px;
  }

  .mm2-accordion .accordion-body {
    padding: 2px 19px 21px;
  }


  /* CTA */

  .mm2-final-cta {
    padding-bottom: 70px;
  }

  .mm2-final-cta-box {
    min-height: auto;
    padding: 45px 25px;
    border-radius: 27px;
  }

  .mm2-final-cta-box h2 {
    font-size: 36px;
  }


  /* CONTATO */

  .mm2-contact {
    text-align: center;
  }

  .mm2-contact-list {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .mm2-contact-card {
    padding: 37px 25px;
    text-align: left;
  }

  .mm2-contact-card h3 {
    font-size: 30px;
  }


  /* FOOTER */

  .mm2-footer {
    padding-top: 55px;
  }

  .mm2-footer-info {
    display: grid;
  }

  .mm2-footer-info span::after {
    display: none;
  }

  .mm2-footer-notice {
    margin-top: 34px;
    padding: 20px 18px;
    text-align: left;
  }

  .mm2-footer-developed {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .mm2-footer-developed span {
    max-width: 290px;
    text-align: center;
  }

  .mm2-footer-developed img {
    max-width: 115px;
  }


  /* WHATSAPP */

  .mm2-floating-whatsapp {
    width: 57px;
    height: 57px;
    right: 15px;
    bottom: 15px;
    justify-content: center;
    padding: 0;
  }

  .mm2-floating-whatsapp span {
    display: none;
  }

  .mm2-floating-whatsapp i {
    font-size: 25px;
  }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {

  .mm2-logo img {
    max-width: 165px;
  }

  .mm2-hero {
    padding: 58px 0 68px;
  }

  .mm2-hero h1 {
    font-size: 37px;
  }

  .mm2-section h2,
  .mm2-analysis-intro h2 {
    font-size: 32px;
  }

  .mm2-hero-image {
    height: 430px;
  }

  .mm2-floating-badge {
    min-width: 165px;
  }

  .mm2-floating-badge > i {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .mm2-floating-badge strong {
    font-size: 10px;
  }

  .mm2-floating-badge span {
    font-size: 9px;
  }

  .mm2-analysis-intro {
    padding: 33px 20px;
  }

  .mm2-form-content {
    min-height: 440px;
  }

  .mm2-question legend {
    font-size: 24px;
  }

  .mm2-option-text {
    font-size: 13px;
  }

  .mm2-attendance-image > img {
    min-height: 390px;
  }

  .mm2-attendance-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
  }

  .mm2-benefit-image {
    height: 400px;
  }

  .mm2-benefit-detail {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 15px;
  }

  .mm2-eligibility-card {
    flex-direction: column;
  }

  .mm2-team-photo {
    height: 390px;
  }

  .mm2-team-content h3 {
    font-size: 26px;
  }

  .mm2-final-cta-box h2 {
    font-size: 32px;
  }

}



@media (max-width: 384px) {
    .mm2-hero h1 {
        font-size: 33px;
    }

    .mm2-section h2, .mm2-analysis-intro h2 {
        font-size: 28px;
    }
}

/* =========================================================
   SOBRE O ESCRITÓRIO
========================================================= */

.mm2-about {
  overflow: hidden;
  background: var(--mm2-white);
}

.mm2-about-visual {
  position: relative;
  max-width: 520px;
}

.mm2-about-image {
  height: 590px;
  overflow: hidden;
  border-radius: 32px 120px 32px 120px;
  background: var(--mm2-beige);
  box-shadow: var(--mm2-shadow-lg);
}

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

.mm2-about-experience {
  position: absolute;
  right: -28px;
  bottom: 42px;
  width: 185px;
  padding: 22px;
  border: 6px solid var(--mm2-white);
  border-radius: 24px;
  background: var(--mm2-gold);
  color: var(--mm2-dark);
  box-shadow: 0 18px 45px rgba(43, 29, 24, 0.18);
}

.mm2-about-experience strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
}

.mm2-about-experience span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.mm2-about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 26px 0 30px;
  padding: 20px;
  border-left: 4px solid var(--mm2-gold);
  border-radius: 0 16px 16px 0;
  background: var(--mm2-cream);
}

.mm2-about-highlight i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--mm2-gold);
  font-size: 22px;
}

.mm2-about-highlight p {
  margin: 0;
}


/* MOBILE */

@media (max-width: 991.98px) {

  .mm2-about-visual {
    margin: 0 auto;
  }

  .mm2-about-experience {
    right: 18px;
  }

}

@media (max-width: 767.98px) {

  .mm2-about-image {
    height: 430px;
    border-radius: 24px 70px 24px 70px;
  }

  .mm2-about-experience {
    right: 12px;
    bottom: 18px;
    width: 165px;
    padding: 18px;
  }

  .mm2-about-experience strong {
    font-size: 32px;
  }

}