:root {
  --verde-marcia: #31afa0;
  --preto-fundo: #111;;
  --cinza-texto: #cccccc;
  --branco: #ffffff;
--azul-escuro-marcia: #0d2e2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--preto-fundo);
  color: var(--branco);
}

.seta-para-jornada {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--verde-marcia);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}


/* ============ HERO COM VIDEO DE FUNDO ============ */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay-video {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
}

.conteudo-hero {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  padding: 40px 20px;
}

.logo-marcia {
  max-width: 160px;
  margin-bottom: 30px;
}

.conteudo-hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.conteudo-hero h1 span {
  color: var(--verde-marcia);
  font-weight: 700;
}

.subheadline {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
}

.beneficios-lista {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 900px;
}

.beneficios-lista li {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.beneficios-lista li i {
  color: var(--verde-marcia);
  font-size: 1.2rem;
}

.beneficios-lista li:hover {
  background-color: rgba(49, 175, 160, 0.1);
  border-color: var(--verde-marcia);
}

.seta-scroll {
  margin-top: 20px;
  font-size: 32px;
  color: var(--verde-marcia);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}

/* ============ VIDEO SECTION ============ */
.sessao-video {
  background-color: #000;
  padding: 60px 20px 150px;
  text-align: center;
}

.titulo-video {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.subtitulo-video {
  font-size: 1.1rem;
  color: var(--cinza-texto);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.video-destaque {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px;
  border-radius: 14px;
  overflow: hidden;
}

.video-destaque iframe {
  width: 100%;
  height: 550px;
  border: none;
  border-radius: 14px;
  display: block;
}

.botao-formulario {
  display: inline-block;
  background-color: var(--verde-marcia);
  color: var(--branco);
  font-weight: bold;
  font-size: 1rem;
  padding: 20px 40px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
	width: 50%;
}

.botao-formulario:hover {
  background-color: #26978a;
  transform: scale(1.05);
}

/* ============ NOVA PUBLICO COM IMAGEM ============ */
.sessao-publico-bg {
  position: relative;
  background-image: url('img/foto-profissionais.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 150px 0;
  color: white;
}

.sessao-publico-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.conteudo-publico {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: auto;
  padding: 20px 40px;
  text-align: left;
}

.conteudo-publico h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

.conteudo-publico h2 span {
  color: var(--verde-marcia);
}

.lista-publico {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lista-publico li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e0e0e0;
}

.lista-publico li i {
  color: var(--verde-marcia);
  font-size: 1.3rem;
}


/* ============ DEPOIMENTOS EM CARROSSEL ============ */
.sessao-depoimentos-stories {
  background-color: #111;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.titulo-depoimentos {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 40px;
}

.titulo-depoimentos span {
  color: var(--verde-marcia);
}

/* Splide Wrapper */
.splide {
  padding: 0 20px;
}

.splide__track {
  overflow: hidden;
}

.splide__slide.card-depoimento-story {
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  height: 520px;
  position: relative;
  box-shadow: 0 0 18px rgba(49, 175, 160, 0.15);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.card-depoimento-story::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, #0a0f0e, transparent);
  z-index: 1;
}

.card-depoimento-story .conteudo-depoimento {
  position: relative;
  z-index: 2;
  padding: 30px 30px 40px;
  width: 100%;
  color: white;
  text-align: left;
}

.card-depoimento-story .conteudo-depoimento p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.card-depoimento-story .conteudo-depoimento h3 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--verde-marcia);
  margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .splide__slide.card-depoimento-story {
    height: 400px;
  }

  .card-depoimento-story .conteudo-depoimento {
    padding: 24px;
  }

  .titulo-depoimentos {
    font-size: 1.6rem;
  }
}

/* JORNADA MARCIA */
.sessao-jornada {
  background-color: #111;
  padding: 50px 20px;
  color: white;
}

.container-jornada {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.titulo-jornada {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 80px;
}

.titulo-jornada span {
  color: #31afa0;
  font-weight: bold;
}

.timeline-wrapper {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #31afa0;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.15;
}

.etapa {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px; /* reduzido de 60px */
  position: relative;
}

.etapa .content {
  background-color: #151515;
  padding: 10px 14px; /* menor padding vertical */
  border-radius: 12px;
  max-width: 440px;
  position: relative;
  box-shadow: 0 0 15px rgba(49, 175, 160, 0.08);
  z-index: 2;
  transition: transform 0.3s ease;
}

.etapa-right {
  justify-content: flex-end;
}


.etapa .content:hover {
  transform: translateY(-4px);
}

.etapa .icon {
  position: absolute;
  top: 50%;
  left: calc(100% + 24px);
  transform: translateY(-50%);
  background-color: #0d0d0d;
  border: 3px solid #31afa0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #31afa0;
  font-size: 1.1rem;
  z-index: 3;
}

.etapa-right .icon {
  left: auto;
  right: calc(100% + 24px);
}

.etapa h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #31afa0;
}

.etapa p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .etapa,
  .etapa-right {
    justify-content: center;
  }

  .timeline-line {
    left: 20px;
  }

  .etapa .content {
    max-width: 90%;
    margin-left: 40px;
  }

  .etapa .icon,
  .etapa-right .icon {
    left: -12px;
    right: auto;
  }
}


/* PUBLICO ALVO */

.sessao-publico-alvo {
  background-color: #111;
  padding: 100px 20px;
  text-align: center;
}

.titulo-publico-alvo {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.titulo-publico-alvo span {
  color: var(--verde-marcia);
}

.subtitulo-publico-alvo {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.grid-publico-alvo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.card-publico {
  background-color: #171717;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.card-publico:hover {
  background-color: #1f1f1f;
  border-color: var(--verde-marcia);
}

.card-publico i {
  font-size: 2.5rem;
  color: var(--verde-marcia);
  margin-bottom: 16px;
}

.card-publico h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.card-publico p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
}


/* PORQUE A MARCIA */
.sessao-diferenciais-modern-bg {
  position: relative;
  background-image: url('img/bg-app-marcia.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 120px 20px;
  color: white;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.overlay-gradient-left {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
  z-index: 1;
}

.conteudo-diferenciais.left {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: 60px;
  text-align: left;
}

.conteudo-diferenciais.left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.conteudo-diferenciais.left h2 span {
  color: var(--verde-marcia);
}

.conteudo-diferenciais.left .subtexto {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.lista-diferenciais {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lista-diferenciais li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lista-diferenciais i {
  color: var(--verde-marcia);
  font-size: 1.2rem;
}

/* DADOS */
.sessao-resultados {
  background-color: #0d0d0d;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.container-resultados {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-resultados {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 60px;
  line-height: 1.4;
}

.titulo-resultados span {
  color: var(--verde-marcia);
}

.grid-resultados {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-content: center;
}

.item-resultado {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.numero-resultado {
  font-size: 3rem;
  font-weight: 700;
  color: var(--verde-marcia);
  margin-bottom: 10px;
}

.descricao-resultado {
  font-size: 1rem;
  color: #ccc;
  max-width: 240px;
}


/* POR DENTRO */
.sessao-por-dentro {
  background-color: #0d0d0d;
  padding: 100px 0 50px 20px;
  text-align: center;
  color: white;
}

.container-por-dentro {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-por-dentro {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.titulo-por-dentro span {
  color: var(--verde-marcia);
}

.subtitulo-por-dentro {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.grid-por-dentro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 30px;
  justify-content: center;
}

.bloco-marcia {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s ease;
  box-shadow: 0 0 25px rgba(49, 175, 160, 0.1);
}

.bloco-marcia:hover {
  transform: scale(1.02);
}

.legenda-marcia {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 16px 20px;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

@media (max-width: 768px) {
  .grid-por-dentro {
    grid-template-columns: 1fr;
  }

  .bloco-marcia {
    height: 260px;
  }
}

/* APP MARCIA */
.sessao-app-marcia {
  background-color: #0d0d0d;
  padding: 50px 20px;
  color: white;
}

.container-app {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.coluna-app-imagem {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.coluna-app-imagem img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.coluna-app-texto {
  flex: 1;
  min-width: 300px;
}

.coluna-app-texto h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  line-height: 1.4;
  font-weight: 700;
}

.coluna-app-texto h2 span {
  color: var(--verde-marcia);
}

.subtexto-app {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.lista-app {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lista-app li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e0e0e0;
}

.lista-app li i {
  color: var(--verde-marcia);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .container-app {
    flex-direction: column;
    text-align: center;
  }

  .coluna-app-texto {
    text-align: center;
  }

  .coluna-app-texto h2 {
    font-size: 1.7rem;
  }

  .subtexto-app {
    font-size: 1rem;
  }
}
/* CLIENTE */
.sessao-clientes-carousel {
  background-color: #0d0d0d;
  padding: 80px 20px;
  text-align: center;
}

.titulo-clientes-carousel {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitulo-clientes-carousel {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.titulo-clientes-carousel span {
  color: var(--verde-marcia);
}

.video-carousel-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(49, 175, 160, 0.15);
  height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.video-carousel-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 0;
}

.video-caption {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
  padding: 20px;
  color: white;
  text-align: left;
}

.video-caption h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: bold;
}

.video-caption p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0;
}

.botao-carousel {
  background-color: var(--verde-marcia);
  color: white;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  margin-top: 40px;
  display: inline-block;
  transition: 0.3s ease;
}

.botao-carousel:hover {
  background-color: #26978a;
  transform: scale(1.05);
}

.splide__arrow {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  border-radius: 50%;
  transition: 0.3s;
}

.splide__arrow:hover {
  background-color: var(--verde-marcia);
}

@media (max-width: 768px) {
  .video-carousel-item {
    height: 280px;
  }
}

/* FRASE SINAL */
.sessao-impacto-final {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: rgba(0, 0, 0, 0.65); /* pode ajustar de 0.5 até 0.8 */
  z-index: 2;
}

.bg-impacto-parallax {
  background-image: url('img/bg-evento.jpg'); /* substitua pela sua imagem */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  transform: translateZ(0);
  z-index: 1;
  animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
  0% {
    background-position: center;
  }
  100% {
    background-position: right center;
  }
}

.conteudo-impacto-final {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.conteudo-impacto-final h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
}

.conteudo-impacto-final h2 span {
  color: var(--verde-marcia);
}

.btn-impacto {
  background-color: var(--verde-marcia);
  color: #fff;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-impacto:hover {
  background-color: #26978a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .conteudo-impacto-final h2 {
    font-size: 1.8rem;
  }

  .btn-impacto {
    font-size: 1rem;
    padding: 14px 24px;
  }
}

/* FAQ */

.sessao-faq {
  background-color: #111;
  padding: 80px 20px;
  color: white;
}

.container-faq {
  max-width: 800px;
  margin: 0 auto;
}

.titulo-faq {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--verde-marcia);
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  color: white;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-pergunta i {
  transition: transform 0.3s ease;
}

.faq-pergunta.ativo i {
  transform: rotate(180deg);
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  color: #ccc;
}
.faq-resposta p {
  margin: 0 0 16px;
}

/* FOOTER */
.rodape-marcia {
  background-color: #0a0a0a;
  color: #ccc;
  padding: 80px 20px 40px;
  font-size: 0.95rem;
  position: relative;
}

.container-rodape {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.coluna-rodape {
  flex: 1 1 280px;
  min-width: 240px;
}

.logo-footer {
  max-width: 160px;
  margin-bottom: 20px;
}

.coluna-rodape h4 {
  font-size: 1.1rem;
  color: var(--verde-marcia);
  margin-bottom: 18px;
}

.coluna-rodape ul {
  list-style: none;
  padding: 0;
}

.coluna-rodape ul li {
  margin-bottom: 12px;
}

.coluna-rodape ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coluna-rodape ul li a:hover {
  color: var(--verde-marcia);
}

.coluna-rodape p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons {
  margin-top: 12px;
}

.social-icons a {
  color: var(--verde-marcia);
  font-size: 1.2rem;
  margin-right: 14px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: white;
}

.copy {
  text-align: center;
  margin-top: 50px;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #222;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .container-rodape {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .coluna-rodape {
    flex: 1 1 100%;
  }

  .coluna-rodape ul li a {
    justify-content: center;
  }

  .coluna-rodape p {
    justify-content: center;
  }
}

/* Botão flutuante cheio */
.flutuante-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.botao-flutuante-cheio {
  background-color: #31afa0;
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 14px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}
.botao-flutuante-cheio:hover {
  background-color: #128c98;
}

/* Animação pulsante */
@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 163, 177, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(20, 163, 177, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 163, 177, 0);
  }
}

.animate-pulse {
  position: relative;
  z-index: 1;
}

.animate-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(20, 163, 177, 0.5);
  animation: pulse-btn 2.5s infinite;
  z-index: -1;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
.modal-conteudo {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  position: relative;
}
.modal-conteudo h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #14A3B1;
}
.modal-conteudo input, .modal-conteudo textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}
.modal-conteudo button {
  background-color: #14A3B1;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.modal-conteudo button:hover {
  background-color: #128c98;
}
.fechar-modal {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* MOBILE */
@media (max-width: 480px) {

  body {
    font-size: 14px;
  }

		/* Aplica margem lateral apenas em containers com conteúdo */
  .container,
  .conteudo-hero,
  .conteudo-publico,
  .container-app,
  .container-jornada,
  .container-faq,
  .container-rodape,
  .container-por-dentro,
  .container-resultados,
  .container-headline,
  .modal-conteudo {
    padding-left: 25px;
    padding-right: 25px;
  }

  /* Remove padding lateral de seções full-bg */
  .sessao-publico-bg,
  .sessao-diferenciais-modern-bg,
  .sessao-impacto-final {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
	
	.conteudo-hero {
  padding-top: 80px;
}

.logo-marcia {
  margin: 0 auto;
  display: block;
	margin-bottom: 30px;
	margin-top: 50px;
}
	
	
  .conteudo-hero h1 {
    font-size: 1.7rem;
  }

  .subheadline {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .beneficios-lista {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .video-destaque iframe {
    height: 68vw; /* antes era fixo em 550px */
    aspect-ratio: 9 / 16;
    border-radius: 12px;
  }

  .sessao-video {
    padding: 40px 20px 80px;
  }

  .titulo-video {
    font-size: 1.5rem;
  }

  .subtitulo-video {
    font-size: 1rem;
  }

  .botao-formulario {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
  }

  .conteudo-publico {
    padding: 20px;
    margin-left: 0;
	margin-top: 200px;
  }

  .conteudo-publico h2 {
    font-size: 1.4rem;
  }

   .sessao-publico-bg {
    padding: 400px 0 50px;
    background-position-x: 25%;
    position: relative;
  }

  .sessao-publico-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1)); /* degradê de baixo pra cima */
  }

  .conteudo-publico {
    z-index: 2;
    margin-left: 0;
    margin-top: auto;
    padding: 20px;
    text-align: left;
    position: relative;
    bottom: -20px; /* empurra o texto mais pra baixo na imagem */
  }

  .conteudo-publico h2 {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .lista-publico li {
    font-size: 1rem;
  }
	
	.splide__slide.card-depoimento-story {
    height: 700px; /* aumenta altura para mais verticalidade */
  }

  .card-depoimento-story .conteudo-depoimento p {
    font-size: 1rem;
  }

  .card-depoimento-story .conteudo-depoimento h3 {
    font-size: 0.95rem;
  }

  .titulo-jornada {
    font-size: 1.5rem;
    margin-bottom: 50px;
  }

  .etapa {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .etapa .icon,
  .etapa-right .icon {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 12px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .etapa .content {
    margin-left: 0;
    padding: 16px;
    max-width: 90%;
  }
  .timeline-line {
    left: 12px;
  }

 

  .titulo-publico-alvo {
    font-size: 1.6rem;
  }

  .subtitulo-publico-alvo {
    font-size: 1rem;
  }

  .titulo-depoimentos,
  .titulo-resultados,
  .titulo-por-dentro,
  .titulo-clientes-carousel,
  .titulo-faq {
    font-size: 1.5rem;
  }

  .subtitulo-por-dentro,
  .subtitulo-clientes-carousel {
    font-size: 1rem;
  }

  .grid-por-dentro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bloco-marcia {
    height: 200px;
  }

  .coluna-app-texto h2 {
    font-size: 1.5rem;
  }

  .subtexto-app {
    font-size: 1rem;
  }

  .grid-publico-alvo {
    grid-template-columns: 1fr;
  }
	 .conteudo-diferenciais.left {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: left;
  }

  .conteudo-diferenciais.left h2 {
    font-size: 1.6rem;
    line-height: 1.3; /* reduzido */
  }

  .conteudo-diferenciais.left .subtexto {
    font-size: 1rem;
    line-height: 1.5;
  }

  .lista-diferenciais li {
    font-size: 0.95rem;
    align-items: flex-start;
  }

  .conteudo-impacto-final h2 {
    font-size: 1.6rem;
  }

  .btn-impacto {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
  }

  .faq-pergunta {
    font-size: 1rem;
  }

  .faq-resposta {
    font-size: 0.9rem;
  }

  .container-rodape {
    gap: 30px;
  }
	 .container-app {
    text-align: left;
    align-items: flex-start;
  }

  .coluna-app-texto {
    text-align: left;
  }

  .coluna-app-texto h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .subtexto-app {
    font-size: 1rem;
    line-height: 1.5;
  }

  .lista-app {
    padding-left: 0;
  }

  .lista-app li {
    justify-content: flex-start;
  }

  .modal-conteudo {
    margin: 20% auto;
    padding: 20px;
  }

  .modal-conteudo h2 {
    font-size: 18px;
  }

  .botao-flutuante-cheio {
    font-size: 13px;
    padding: 12px 20px;
  }
	.rodape-marcia p {
  -webkit-touch-callout: none;
  -webkit-user-select: text;
}
}
a[href^="tel"],
.rodape-marcia a[href^="tel"],
.rodape-marcia p > a {
  color: inherit !important;
  text-decoration: none !important;
  font-style: normal !important;
}