/* ============================================================
   MOBILE PAGE — Design Figma LV ELEVATE MOBILE
   Visível apenas em ≤768px. Desktop vê index/style.css.
   ============================================================ */

/* ---- Hide/Show logic ---- */
.m-page { display: none; }

@media (max-width: 768px) {
  /* Oculta todas as seções desktop */
  .s1,.s2,.s3,.s4,.s6,.s7,.s9,.s10,.s11,.s12,.s13,.s14 { display: none !important; }
  /* Mostra a versão mobile */
  .m-page { display: block; }
}

/* ============================================================
   SHARED TOKENS
   ============================================================ */
.m-page {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}
.m-page .eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 10px;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.ms-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.ms-heading.c-cyan { color: var(--cyan-2); }
.ms-heading.c-red  { color: var(--red); }
.ms-heading .light { font-weight: 300; }
.ms-head { padding: 0 24px; margin-bottom: 40px; }

/* CTA button */
.m-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 60px;
  box-shadow: 0 0 40px rgba(254,44,85,.35);
  width: 100%;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
  animation: ctaGlow 2.6s ease-in-out infinite;
  cursor: pointer;
}
.m-btn-cta:hover { animation-play-state: paused; }
.m-btn-cta img   { width: 22px; height: 22px; flex-shrink: 0; }

/* Reveal base */
.m-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(0.16,1,0.3,1),
              transform .65s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--d, 0ms);
}
.m-reveal.in { opacity: 1; transform: none; }

/* ============================================================
   MS1 — HERO
   ============================================================ */
.ms1 {
  position: relative;
  min-height: 760px;
  height: 94svh;
  max-height: 820px;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ms1-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 430px;
  width: 100%;
  height: calc(100% - 430px);
  object-fit: cover;
  object-position: center bottom;
  z-index: 1;
}
.ms1-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #000 0%, #000 48%, rgba(0,0,0,.74) 58%, rgba(0,0,0,.45) 74%, rgba(0,0,0,.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,.35), transparent 50%, rgba(0,0,0,.35));
  z-index: 2;
}
.ms1-header {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 58px 24px 0;
}
.ms1-logo    { width: 118px; height: auto; }
.ms1-tagline {
  font-size: 9px;
  letter-spacing: 5.5px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  text-align: center;
}
.ms1-content {
  position: relative;
  z-index: 3;
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 46px 32px 0;
  text-align: center;
  gap: 24px;
}
.ms1-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.6px;
  color: var(--cyan);
  text-transform: uppercase;
  margin: 0;
}
.ms1-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255,255,255,.92);
  max-width: 340px;
  margin: 0;
}
.ms1-sub strong { font-weight: 600; }
.ms1 .m-btn-cta { max-width: 328px; }

/* ticker na base do hero */
.ms1-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
}

/* ============================================================
   MS2 — TICKER
   ============================================================ */
.ms2 {
  height: 100px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ms2 .ticker { background: rgba(29,29,29,.9); }

/* ============================================================
   MS3 — ATENÇÃO + FORM
   ============================================================ */
.ms3 {
  position: relative;
  background: #000;
  padding: 60px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ms3 .glow-left  { left: -180px; top: 40%; }
.ms3 .glow-right { right: -180px; top: 40%; }
.ms3-text { position: relative; z-index: 2; text-align: center; }
.ms3-text .eyebrow { margin-bottom: 20px; }
.ms3-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}
.m-form-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-form-card select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: rgba(255,255,255,.05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.45)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: none;
  border-radius: 5px;
  padding: 12px 36px 12px 12px;
  font-size: 15px;
  color: rgba(255,255,255,.45);
  font-family: inherit;
  outline: none;
  min-height: 44px;
  touch-action: manipulation;
  cursor: pointer;
  transition: background-color .2s, box-shadow .22s;
}
.m-form-card select.filled,
.m-form-card select:focus { color: #fff; }
.m-form-card select:focus {
  background-color: rgba(37,244,238,.08);
  box-shadow: 0 0 20px rgba(37,244,238,.22), inset 0 0 0 1px rgba(37,244,238,.32);
}
.m-form-card select option { background: #1a1a1a; color: #fff; }
.m-form-card input.field-error {
  box-shadow: 0 0 16px rgba(254,44,85,.45), inset 0 0 0 1px rgba(254,44,85,.55);
}
.m-form-card label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  transition: transform .25s cubic-bezier(0.16,1,0.3,1);
}
.m-form-card label:focus-within { transform: translateY(-2px); }
.m-form-card input {
  background: rgba(255,255,255,.05);
  border: none;
  border-radius: 5px;
  padding: 12px;
  font-size: 15px;
  color: #fff;
  font-family: inherit;
  outline: none;
  min-height: 44px;
  touch-action: manipulation;
  transition: background .2s, box-shadow .22s;
}
.m-form-card input:focus {
  background: rgba(37,244,238,.08);
  box-shadow: 0 0 20px rgba(37,244,238,.22), inset 0 0 0 1px rgba(37,244,238,.32);
}
.m-form-card .btn-green {
  margin-top: 8px;
  font-size: 17px;
  padding: 16px;
  min-height: 52px;
  width: 100%;
  position: relative; overflow: hidden;
  touch-action: manipulation;
}
.m-form-card small {
  font-size: 12px;
  text-align: center;
  opacity: .65;
}

/* ============================================================
   MS4 — SOBRE NÓS
   ============================================================ */
.ms4 { background: #000; overflow: hidden; }
.ms4-photos {
  width: 100%; height: 300px;
  overflow: hidden;
  position: relative;
}
.ms4-photo-main {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Gradiente na parte inferior da foto */
.ms4-photos::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}
.ms4-content { padding: 32px 24px 60px; }
.ms4-content .eyebrow { text-align: left; margin-bottom: 14px; }
.ms4-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ms4-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 14px;
  color: rgba(255,255,255,.88);
}
.ms4-body strong { font-weight: 600; text-transform: uppercase; }

/* ============================================================
   MS6 — RESULTADOS
   ============================================================ */
.ms6 {
  background: #000;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 60px 0;
}
.ms6-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  margin-bottom: 40px;
}
.ms6-stat {
  width: 100%;
  max-width: 320px;
  background: rgba(32,33,35,.35);
  border-bottom: 3px solid var(--red);
  border-radius: 10px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.ms6-stat img { width: 36px; height: 36px; margin-bottom: 14px; }
.ms6-stat h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.ms6-stat p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.9);
}
/* Carrossel */
.ms6-carousel, .ms12-carousel {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 14px;
  padding: 4px 24px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ms6-carousel::-webkit-scrollbar,
.ms12-carousel::-webkit-scrollbar { display: none; }
.ms6-carousel img, .ms12-carousel img {
  flex-shrink: 0;
  width: 78vw;
  max-width: 300px;
  height: auto;
  scroll-snap-align: start;
  border-radius: 14px;
  object-fit: contain;
}

/* ============================================================
   MS7 — MÉTODO ELEVATE
   ============================================================ */
.ms7 {
  background: #000;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}
.ms7::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.ms7-logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 28px auto 44px;
}
.ms7-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
}
.ms7-item {
  text-align: center;
  width: 100%;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(0.16,1,0.3,1),
              transform .6s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--d, 0ms);
}
.ms7-item.in { opacity: 1; transform: none; }
.ms7-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan-2);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.ms7-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.ms7-item:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
  margin: 18px auto 0;
}

/* ============================================================
   MS9 — PLANOS PERSONALIZADOS
   ============================================================ */
.ms9 {
  background: #000;
  padding: 60px 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.ms9 .ms-head { padding: 0; }
.ms9-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
.ms9-body {
  margin-bottom: 32px;
  text-align: center;
}
.ms9-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 14px;
  color: rgba(255,255,255,.88);
}
.ms9-graph {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border: 1.5px solid var(--red);
  border-radius: 20px;
  opacity: .85;
}

/* ============================================================
   MS10 — CASES
   ============================================================ */
.ms10 { background: #000; padding: 60px 24px; }
.ms10-card {
  background: rgba(0,0,0,.25);
  border: 1px solid var(--red);
  border-radius: 20px;
  padding: 28px 18px;
}
.ms10-brand {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 8px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ms10-intro {
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 14px;
  color: rgba(255,255,255,.88);
}
.ms10-result {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
  color: #fff;
}
.ms10-col { margin-bottom: 22px; }
.ms10-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.ms10-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ms10-col li { display: flex; gap: 10px; align-items: flex-start; }
.ms10-col li img { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.ms10-col li span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--gray);
}

/* ============================================================
   MS11 — FOUNDERS
   ============================================================ */
.ms11 { background: #000; overflow: hidden; }
.ms11-content { padding: 60px 24px 36px; }
.ms11-content .eyebrow { text-align: left; margin-bottom: 12px; }
.ms11-heading {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ms11-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 14px;
  color: rgba(255,255,255,.88);
}
.ms11-body strong { font-weight: 600; }
.ms11-photos {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
}
.ms11-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
/* Nome dos founders sobre a foto */
.ms11-name {
  position: absolute;
  z-index: 2;
  width: 92px;
  min-height: 44px;
  padding: 6px 8px 8px;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 300;
  line-height: 0.9;
  text-align: center;
  color: #fff;
  letter-spacing: 3px;
  background:
    linear-gradient(135deg, rgba(254,44,85,.22), rgba(3,8,12,.84) 42%, rgba(37,244,238,.18)),
    rgba(8,10,16,.84);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  box-shadow:
    -12px 0 28px rgba(254,44,85,.18),
    12px 0 28px rgba(37,244,238,.16),
    0 12px 35px rgba(0,0,0,.42),
    inset 0 0 28px rgba(255,255,255,.045);
  backdrop-filter: blur(10px);
  translate: -50% 0;
}
.ms11-name::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(110deg, rgba(254,44,85,.78), rgba(255,255,255,.16) 46%, rgba(37,244,238,.78));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.ms11-name strong { display: block; font-weight: 600; font-size: 9px; line-height: 1.1; letter-spacing: 1.5px; margin-bottom: 2px; }
.ms11-guilherme { top: 250px; left: 15%; }
.ms11-eduardo   { top: 318px; left: 86%; }

/* Fade sutil apenas na base */
.ms11-photos::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #000, transparent);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   MS12 — DEPOIMENTOS
   ============================================================ */
.ms12 { background: #000; padding: 60px 0; }
.ms12 .ms-head { padding: 0 24px; }

/* ============================================================
   MS13 — DIFERENCIAIS
   ============================================================ */
.ms13 {
  background: #000;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.ms13::before {
  content: '';
  position: absolute;
  width: 400px; height: 200px;
  border-radius: 50%;
  background: rgba(0,255,248,.18);
  filter: blur(80px);
  left: -150px; bottom: 60px;
  pointer-events: none;
  animation: glowDrift1 14s ease-in-out infinite;
}
.ms13::after {
  content: '';
  position: absolute;
  width: 400px; height: 200px;
  border-radius: 50%;
  background: rgba(254,44,85,.18);
  filter: blur(80px);
  right: -150px; bottom: 60px;
  pointer-events: none;
  animation: glowDrift2 16s ease-in-out infinite;
}
.ms13-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.ms13-card {
  background: rgba(32,33,35,.35);
  border-bottom: 3px solid var(--cyan-2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  padding: 22px 18px;
}
.ms13-card > img { width: 36px; height: 36px; margin-bottom: 12px; display: block; }
.ms13-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ms13-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

/* ============================================================
   MS14 — FAQ
   ============================================================ */
.ms14 { background: #000; padding: 60px 24px 80px; }
.ms14 .ms-head { padding: 0; margin-bottom: 28px; }
.ms14-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.ms14-accordion details {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  transition: border-color .3s, box-shadow .3s;
}
.ms14-accordion details[open] {
  border-color: var(--cyan-2);
  box-shadow: 0 0 28px rgba(0,255,248,.1);
}
.ms14-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.78);
  padding: 18px 18px;
  min-height: 56px;
  cursor: pointer;
  list-style: none;
  touch-action: manipulation;
  gap: 10px;
}
.ms14-accordion summary::-webkit-details-marker { display: none; }
.ms14-accordion summary img {
  width: 14px; height: 9px;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(0.16,1,0.3,1);
}
.ms14-accordion details[open] summary img { transform: rotate(180deg); }
.ms14-accordion .faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(0.16,1,0.3,1);
}
.ms14-accordion .faq-inner { overflow: hidden; min-height: 0; }
.ms14-accordion details[open] .faq-body { grid-template-rows: 1fr; }
.ms14-accordion .faq-inner p {
  padding: 0 18px 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
}
.ms14-cta { display: flex; }

/* ============================================================
   GSAP — initial hidden states (evita FOUC antes do JS)
   ============================================================ */
.ms6-stat,
.ms10-card,
.ms13-card,
.ms12-carousel img,
.ms11-photo,
.ms7-logo { opacity: 0; }

/* ============================================================
   CTA ACTIVE STATE — scale press feedback
   ============================================================ */
.m-btn-cta:active {
  transform: scale(0.97) !important;
  transition-duration: .08s !important;
}
.m-form-card .btn-green:active {
  transform: scale(0.97) !important;
  transition-duration: .08s !important;
}

/* ============================================================
   FORM CARD — 3D entrance (igual ao desktop)
   ============================================================ */
.m-form-card.m-reveal {
  transform: perspective(1000px) rotateY(-10deg) translateY(36px);
}
.m-form-card.m-reveal.in {
  transform: perspective(1000px) rotateY(0deg) translateY(0);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .m-reveal, .ms7-item,
  .ms6-stat, .ms10-card, .ms13-card,
  .ms12-carousel img, .ms11-photo, .ms7-logo {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .m-btn-cta { animation: none !important; }
  .ms13::before, .ms13::after { animation: none !important; }
}
