/* ============================================================
   Movibe Sports — Home Styles (Hero & Cabeçalho)
   ============================================================ */

.mv-hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  background: var(--white);
}

/* ---- Splashes de Tinta Decorativos (SVGs Absolutos) ----------------- */

.mv-splash {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  mix-blend-mode: multiply;
  transition: transform var(--slow), opacity var(--slow);
}

.mv-splash--hero-mid {
  top: 25%;
  left: 0;
  width: min(240px, 20vw);
  height: auto;
  transform: rotate(15deg);
  opacity: 0.55;
}

/* ---- Hero Layout ----------------------------------------------- */

.mv-hero-section .mv-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 46fr 54fr;
  align-items: center;
}

.mv-hero-copy {
  /* ocupa apenas a coluna esquerda, alinhado ao grid */
}

.mv-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(233, 94, 155, 0.08);
  border: 1px solid rgba(233, 94, 155, 0.2);
  border-radius: var(--pill);
  padding: 6px 14px;
  margin-bottom: 20px;
}

/* Headline estilizada */
.mv-hero-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}

.mv-hero-title .cursive {
  font-family: "Caveat", cursive;
  font-size: 1.15em;
  color: var(--pink);
  font-weight: 700;
  display: inline-block;
  transform: rotate(-2deg) translateY(4px);
  margin: 0 4px;
}

.mv-hero-title .highlight {
  color: var(--green);
}

/* Subheadline */
.mv-hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  color: var(--body);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 420px;
}

.mv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Prova Social (Avatares + Estrelas) */
.mv-hero-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mv-avatar-group {
  display: flex;
  align-items: center;
}

.mv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 4px 10px rgba(30, 30, 36, 0.1);
  transition: transform var(--fast);
}

.mv-avatar:first-child {
  margin-left: 0;
}

.mv-avatar:hover {
  transform: translateY(-4px) scale(1.05);
  z-index: 10;
}

.mv-social-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mv-stars {
  display: flex;
  gap: 2px;
  color: #ffb800; /* Dourado */
  margin-bottom: 4px;
}

.mv-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.mv-social-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--body);
  letter-spacing: -0.01em;
}

/* ---- Imagem Full-Bleed da Hero --------------------------------------- */

.mv-hero-img-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  z-index: 1;
  overflow: hidden;
}

.mv-hero-img-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 30%);
  z-index: 2;
  pointer-events: none;
}

.mv-hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- Grid de Cards de Benefícios (Inferior) ----------------------- */

.mv-benefits-section {
  position: relative;
  padding-bottom: 48px;
  background: var(--white);
  z-index: 5;
}

.mv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: -60px; /* Sobreposição da Hero */
  position: relative;
  z-index: 10;
}

.mv-benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  min-width: 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(30, 30, 36, 0.03);
  transition: transform var(--slow), box-shadow var(--slow), border-color var(--slow);
}

.mv-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(30, 30, 36, 0.1);
  border-color: rgba(30, 30, 36, 0.08);
}

.mv-benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform var(--fast);
}

.mv-benefit-card:hover .mv-benefit-icon-wrapper {
  transform: scale(1.1) rotate(-4deg);
}

.mv-benefit-icon-wrapper i {
  font-size: 24px;
  line-height: 1;
  display: block;
}

/* Variações de Cores dos Ícones dos Benefícios */
.mv-benefit-card--green .mv-benefit-icon-wrapper {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(66, 209, 74, 0.35);
}
.mv-benefit-card--blue .mv-benefit-icon-wrapper {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(91, 174, 223, 0.35);
}
.mv-benefit-card--pink .mv-benefit-icon-wrapper {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(233, 94, 155, 0.35);
}
.mv-benefit-card--orange .mv-benefit-icon-wrapper {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(209, 122, 76, 0.35);
}

.mv-benefit-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mv-benefit-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  overflow-wrap: break-word;
}

.mv-benefit-desc {
  font-size: 0.8rem;
  color: var(--body);
  margin-top: 4px;
  font-weight: 500;
}

/* ---- Responsivo Geral ----------------------------------------------- */

@media (max-width: 980px) {
  .mv-hero-section {
    padding: 90px 0 40px;
  }

  .mv-hero-section .mv-container {
    grid-template-columns: 1fr;
  }

  .mv-hero-img-container {
    opacity: 0.12;
    width: 100%;
  }

  .mv-hero-img-container::before {
    background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0.5) 70%, transparent 100%);
  }

  .mv-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mv-hero-sub {
    margin-bottom: 20px;
  }

  .mv-hero-actions {
    justify-content: center;
  }

  .mv-hero-social {
    justify-content: center;
  }

  .mv-benefits-grid {
    margin-top: -20px;
    padding: 0 10px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mv-services-section,
  .mv-how-section,
  .mv-practice-section {
    padding: 36px 0;
  }

  .mv-stats-section {
    padding: 24px 0;
  }

  .mv-section-header {
    margin-bottom: 28px;
  }
}

@media (max-width: 580px) {
  .mv-hero-section {
    padding: 82px 0 28px;
  }

  .mv-hero-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .mv-services-section,
  .mv-how-section,
  .mv-practice-section {
    padding: 24px 0;
  }

  .mv-stats-section {
    padding: 20px 0;
  }

  .mv-section-header {
    margin-bottom: 20px;
  }

  /* Oculta splashes em telas muito pequenas para evitar overflow lateral */
  .mv-splash {
    display: none;
  }

  /* Compacta o copy da seção prática */
  .mv-practice-copy .mv-eyebrow {
    margin-bottom: 6px;
  }

  .mv-practice-title {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
    margin-bottom: 14px;
  }

  /* Testimonial padding menor no mobile */
  .mv-testimonial-card {
    padding: 20px;
  }

  /* Benefícios: ícone menor em tela muito pequena */
  .mv-benefit-icon-wrapper {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .mv-benefit-icon-wrapper i {
    font-size: 20px;
  }

  .mv-benefit-card {
    padding: 16px;
    gap: 12px;
  }

  .mv-benefit-title {
    font-size: 0.82rem;
  }

  .mv-benefit-desc {
    font-size: 0.72rem;
  }
}

/* ============================================================
   Nossas Aulas e Serviços Section (#servicos)
   ============================================================ */
.mv-services-section {
  padding: 64px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.mv-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.mv-section-eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--pink);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.mv-section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.mv-section-title .cursive {
  font-family: "Caveat", cursive;
  font-size: 1.15em;
  color: var(--pink);
  font-weight: 700;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.mv-section-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--body);
  font-weight: 400;
}

.mv-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.mv-service-card {
  background: var(--white);
  border-radius: 24px;
  overflow: visible;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(30, 30, 36, 0.03);
  transition: transform var(--slow), box-shadow var(--slow), border-color var(--slow);
  display: flex;
  flex-direction: column;
}

.mv-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(30, 30, 36, 0.08);
  border-color: rgba(30, 30, 36, 0.06);
}

.mv-service-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: var(--wash);
}

.mv-service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.mv-service-card:hover .mv-service-img-wrapper img {
  transform: scale(1.06);
}

.mv-service-content {
  padding: 36px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  position: relative;
  text-align: center;
}

.mv-service-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(30, 30, 36, 0.18);
  transition: transform var(--fast), box-shadow var(--fast);
}

.mv-service-card:hover .mv-service-badge {
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 6px 20px rgba(30, 30, 36, 0.22);
}

.mv-service-badge i {
  font-size: 20px;
  line-height: 1;
  color: var(--white);
}

.mv-service-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.mv-service-badge--pink  { background: var(--pink); }
.mv-service-badge--blue  { background: var(--blue); }
.mv-service-badge--green { background: var(--green); }
.mv-service-badge--orange { background: var(--orange); }

.mv-service-desc {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 900px) {
  .mv-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .mv-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ============================================================
   Como Funciona Section (#como-funciona)
   ============================================================ */
.mv-how-section {
  padding: 64px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.mv-how-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}

.mv-how-copy {
  max-width: 460px;
}

.mv-how-copy .mv-eyebrow {
  color: var(--blue);
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mv-how-title {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.12;
}

.mv-how-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.02rem);
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 36px;
}

.mv-how-steps {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.mv-how-steps::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 30px; /* Center of the 60px circle badge */
  height: 2px;
  border-top: 2px dashed rgba(30, 30, 36, 0.1);
  z-index: 1;
}

.mv-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  gap: 12px;
  transition: transform var(--slow);
}

.mv-step-item:hover {
  transform: translateY(-6px);
}

.mv-step-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid currentColor;
  box-shadow: 0 8px 24px rgba(30, 30, 36, 0.05);
  transition: transform var(--fast), box-shadow var(--fast);
}

.mv-step-badge svg {
  width: 26px;
  height: 26px;
}

/* Step Badge Colors mapping */
.mv-step-badge--green {
  background: rgba(66, 209, 74, 0.06);
  color: var(--green);
  border-color: rgba(66, 209, 74, 0.18);
  box-shadow: 0 8px 20px rgba(66, 209, 74, 0.12);
}
.mv-step-badge--blue {
  background: rgba(91, 174, 223, 0.06);
  color: var(--blue);
  border-color: rgba(91, 174, 223, 0.18);
  box-shadow: 0 8px 20px rgba(91, 174, 223, 0.12);
}
.mv-step-badge--orange {
  background: rgba(209, 122, 76, 0.06);
  color: var(--orange);
  border-color: rgba(209, 122, 76, 0.18);
  box-shadow: 0 8px 20px rgba(209, 122, 76, 0.12);
}
.mv-step-badge--pink {
  background: rgba(233, 94, 155, 0.06);
  color: var(--pink);
  border-color: rgba(233, 94, 155, 0.18);
  box-shadow: 0 8px 20px rgba(233, 94, 155, 0.12);
}

.mv-step-item:hover .mv-step-badge {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(30, 30, 36, 0.12);
}

/* Círculo azul sequencial posicionado abaixo do medalhão */
.mv-step-seq {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(91, 174, 223, 0.25);
  z-index: 3;
}

/* Botão contorno personalizado da seção */
.mv-how-copy .mv-btn--outline {
  border: 1.5px solid #d0d0d8;
  color: var(--ink);
  background: var(--white);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(30, 30, 36, 0.02);
}

.mv-how-copy .mv-btn--outline:hover {
  border-color: var(--ink);
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 30, 36, 0.06);
}

.mv-step-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  max-width: 160px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .mv-how-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mv-how-copy {
    max-width: 100%;
    text-align: center;
  }

  .mv-how-sub {
    margin-bottom: 24px;
  }

  .mv-how-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    align-items: start;
  }

  .mv-how-steps::before {
    display: none;
  }

  .mv-step-item {
    flex-direction: column;
    width: 100%;
  }
}

/* ============================================================
   Movibe na Prática Section (#condominios) — Gallery Grid
   ============================================================ */
.mv-practice-section {
  padding: 64px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Splashes seção Serviços */
.mv-splash--services-left {
  top: 20%; left: 0;
  width: min(240px, 19vw); height: auto;
  opacity: 0.5;
  transform: rotate(0deg);
}
.mv-splash--services-right {
  top: 65%; right: 0;
  width: min(300px, 24vw); height: auto;
  opacity: 0.5;
  transform: rotate(135deg);
}

/* Splashes seção Como Funciona */
.mv-splash--how-right {
  top: 10%; right: 0;
  width: min(220px, 18vw); height: auto;
  opacity: 0.5;
  transform: rotate(-90deg);
}

/* Splashes seção Prática */
.mv-splash--practice-green {
  top: 30%; left: 0;
  width: min(300px, 24vw); height: auto;
  opacity: 0.5;
  transform: rotate(200deg);
}

.mv-practice-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

.mv-practice-copy {
  max-width: 320px;
}

.mv-practice-copy .mv-eyebrow {
  color: var(--pink);
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  display: block;
}

.mv-practice-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.15;
}

.mv-practice-title .cursive {
  font-family: "Caveat", cursive;
  font-size: 1.2em;
  color: var(--pink);
  font-weight: 700;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ---- Esteira Infinita (Conveyor Belt) ---- */
.mv-practice-carousel-wrapper {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mv-conveyor-wrapper {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  /* fade nas bordas */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.mv-conveyor-wrapper:hover .mv-conveyor-track {
  animation-play-state: paused;
}

.mv-conveyor-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: mv-conveyor 36s linear infinite;
}

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

/* ---- Imagem individual da esteira ---- */
.mv-gallery-img {
  flex-shrink: 0;
  width: 160px;
  height: 213px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--wash);
}

.mv-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.mv-conveyor-wrapper:hover .mv-gallery-img img {
  transform: scale(1.04);
}

/* ---- Card de Depoimento (fluxo normal) ---- */
.mv-testimonial-card {
  background: var(--pink);
  color: var(--white);
  padding: 28px 30px 24px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(233, 94, 155, 0.25);
  transition: transform var(--slow), box-shadow var(--slow);
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.mv-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(233, 94, 155, 0.35);
}

.mv-testimonial-quote-icon {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 0.6;
  display: block;
  margin-bottom: 10px;
  opacity: 0.6;
  font-weight: 700;
  color: var(--white);
}

.mv-testimonial-quote {
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mv-testimonial-author {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.mv-testimonial-author .name {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.mv-testimonial-author .role,
.mv-testimonial-author .condo {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .mv-practice-grid {
    grid-template-columns: 240px 1fr;
    gap: 36px;
  }
}

@media (max-width: 980px) {
  .mv-practice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mv-practice-copy {
    max-width: 100%;
    text-align: center;
  }

  .mv-practice-title {
    margin-bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-conveyor-track {
    animation: none;
  }
}

/* ============================================================
   Seção Estatísticas Ribbon (#depoimentos)
   ============================================================ */
.mv-stats-section {
  padding: 40px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.mv-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(30, 30, 36, 0.05);
  border: 1px solid rgba(30, 30, 36, 0.02);
  gap: 20px;
}

.mv-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.mv-stat-item:not(:last-child) {
  border-right: 1px solid rgba(30, 30, 36, 0.08);
}

.mv-stat-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid currentColor;
  background: var(--white);
  transition: transform var(--fast), box-shadow var(--fast);
}

.mv-stat-item:hover .mv-stat-icon-wrapper {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(30, 30, 36, 0.12);
}

.mv-stat-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: none;
}

/* Stat Icon Color variations */
.mv-stat-item:nth-child(1) .mv-stat-icon-wrapper {
  color: var(--green);
  background: rgba(66, 209, 74, 0.06);
  border-color: rgba(66, 209, 74, 0.3);
  box-shadow: 0 8px 20px rgba(66, 209, 74, 0.12);
}

.mv-stat-item:nth-child(2) .mv-stat-icon-wrapper {
  color: var(--pink);
  background: rgba(233, 94, 155, 0.06);
  border-color: rgba(233, 94, 155, 0.3);
  box-shadow: 0 8px 20px rgba(233, 94, 155, 0.12);
}

.mv-stat-item:nth-child(3) .mv-stat-icon-wrapper {
  color: var(--orange);
  background: rgba(209, 122, 76, 0.06);
  border-color: rgba(209, 122, 76, 0.3);
  box-shadow: 0 8px 20px rgba(209, 122, 76, 0.12);
}

.mv-stat-item:nth-child(4) .mv-stat-icon-wrapper {
  color: var(--blue);
  background: rgba(91, 174, 223, 0.06);
  border-color: rgba(91, 174, 223, 0.3);
  box-shadow: 0 8px 20px rgba(91, 174, 223, 0.12);
}

.mv-stat-info {
  display: flex;
  flex-direction: column;
}

.mv-stat-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}

.mv-stat-label {
  font-size: 0.8rem;
  color: var(--body);
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 980px) {
  .mv-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px;
  }
  
  .mv-stat-item:not(:last-child) {
    border-right: none;
  }
  
  .mv-stat-item {
    justify-content: flex-start;
    padding-left: 20px;
  }
}

@media (max-width: 580px) {
  .mv-stats-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .mv-stat-item {
    padding-left: 0;
  }

  .mv-gallery-img {
    width: 120px;
    height: 160px;
  }
}

/* ============================================================
   RODAPÉ Section (Footer) (#blog)
   ============================================================ */
.mv-footer {
  background: #1a8fc4;
  color: var(--white);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.mv-footer .mv-splash {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   People Clusters (splash canto + fotos circulares)
   ============================================================ */

.mv-people-cluster {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mv-people-cluster--left  { left: 40px; }
.mv-people-cluster--right { right: 40px; }

.mv-corner-splash {
  width: 140px;
  height: auto;
  opacity: 0.6;
  display: block;
}

.mv-corner-splash--pink {
  transform: scaleX(-1);
}

.mv-splash-person {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(30, 30, 36, 0.18);
  display: block;
  margin-top: -20px;
}

.mv-splash-person--sm {
  width: 46px;
  height: 46px;
  margin-left: 24px;
}

.mv-splash-footer-blue {
  top: 15%;
  left: 0;
  width: min(260px, 22vw);
  height: auto;
  opacity: 0.18;
  transform: rotate(40deg);
}

.mv-splash-footer-pink {
  top: 60%;
  right: 0;
  width: min(300px, 25vw);
  height: auto;
  opacity: 0.18;
  transform: rotate(-25deg);
}

/* Grade principal: 3 colunas */
.mv-footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 52px;
  position: relative;
  z-index: 2;
}

/* Coluna 1: CTA */
.mv-footer-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.mv-footer-cta-title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.mv-footer-cta-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

/* Coluna 2: Logo Central */
.mv-footer-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.mv-footer-logo {
  height: 160px;
  width: auto;
  object-fit: contain;
}

/* Coluna 3: Contato */
.mv-footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mv-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mv-footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mv-footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
}

.mv-footer-contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
}

.mv-contact-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color var(--fast);
}

.mv-contact-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Navegação do Footer */
.mv-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
}

.mv-footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--fast);
  white-space: nowrap;
}

.mv-footer-nav a:hover {
  color: var(--white);
}

/* Barra Inferior */
.mv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}

.mv-footer-bottom a {
  color: var(--white);
  font-weight: 600;
  transition: opacity var(--fast);
}

.mv-footer-bottom a:hover {
  opacity: 0.8;
}

.mv-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mv-social-icons a {
  color: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  transition: color var(--fast), transform var(--fast);
}

.mv-social-icons a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .mv-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .mv-footer-cta-col {
    align-items: center;
  }

  .mv-footer-contact-col {
    align-items: center;
  }

  .mv-footer-contact-list {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .mv-footer-contact-list li {
    justify-content: flex-start;
    gap: 12px;
  }

  .mv-contact-link {
    text-align: left;
  }
}

@media (max-width: 580px) {
  .mv-footer {
    padding: 48px 0 0;
  }

  .mv-footer-logo {
    height: 72px;
  }

  .mv-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

