:root {
  --azul-principal: #0d4dd7;
  --azul-seg: #1f6bee;
  --mars-green: #05436d;
  --branco: #ffffff;
  --cinza-texto: #656464;
  --cinza-claro:#e6e2e2;
}

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #1a1a1a;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
  margin: 2px auto 0;
  padding: 0 20px;
  gap: 60px;
}

.texto {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  margin-top: -40px;
}

.boas-vindas {
  font-size: 27px;
  font-family: 'Raleway', sans-serif;
  color: #656464;
  font-weight: 350;
  margin-bottom: 35px;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.destaque {
  color: #0057ff;
}

.descricao {
  font-size: 17px;
  line-height: 1.7;
  color: #5f5f5f;
  margin-bottom: 30px;
}

.botao {
  display: inline-flex;
  align-items: center;
  padding: 16px 30px;
  font-size: 20px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #06a48a 0%, #0057FF 100%);
  border-radius: 50px;
  box-shadow: 0px 8px 24px rgba(0, 87, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.botao:hover {
  transform: scale(0.94);
}

.circulo-branco {
  background-color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
}

.seta-azul {
  color: #0057FF;
  font-size: 18px;
  line-height: 1;
}
.seta-animada {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  animation: bounce 2s infinite;
}

.setas-duplas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 30px;
  top: 250px;
  position: relative;
}
.seta {
  width: 15px;
  height: 15px;
  border-right: 4px solid var(--azul-principal);
  border-bottom: 4px solid var(--azul-principal);
  transform: rotate(45deg);
  animation: pularzinho 1.6s infinite;
  
}

.imagem {
  flex: 1;
  text-align: right;
  min-width: 300px;
}

.imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 40px 0 0 40px;
  top: 350px;
  position: relative;
  right: -150px;
}
.hero .imagem {
  position: static !important;
  top: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero .imagem img {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 40px 0 0 40px; /* mantém seu estilo original */
}

.onda-branca {
  width: 100vw;
  height: 100px;
  background-color: var(--branco);
  border-bottom-left-radius: 50% 40%;
  border-bottom-right-radius: 50% 40%;
  margin-top: -60px;
  z-index: 10;
  position: relative;
  top: 99px;
}
/* Benefícios */
.beneficios {
  background-color: var(--azul-principal);
  color: white;
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
  width: 100%;
}

.conteudo-beneficios {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.conteudo-beneficios h2 {
  font-size: 30px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 60px;
}

.subtitulo {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--branco);
  display: block;
  margin-top: 5%;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.6));
  letter-spacing: 0.9px;
}

.titulo-principal {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 900;
  transform: scaleY(1.2);
  color: var(--branco);
  margin-top: 0;
  display: block;
  position: relative;
  top: -30px;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.6));
  margin-bottom: 25px;
  letter-spacing: 0.9px;
}

.conteudo-beneficios p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 50px;
  font-family: "Roboto", sans-serif;
  margin-top: 30px;
  position: relative;
  top: -30px;
  letter-spacing: 1.2;
}

.cards-beneficios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: var(--azul-principal);
  color: white;
  border: 5px solid white;
  border-radius: 20px;
  padding: 20px 38px;
  width: 270px;
  font-family: 'Inter', sans-serif;
  text-align: left;
  margin-top: -30px;
  padding-bottom: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.card h3,
.card p {
  margin-bottom: 0;
}

.card .icone {
  font-size: 30px;
  margin-bottom: 15px;
}

.topo-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.topo-card .icone {
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topo-card h3 {
  font-size: 22px;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
  top: -7px;
}

.topo-sobre-nos {
  position: relative;
  height: 40px;
  z-index: 1;
  top: -50px;
  width: 100%;
}

.topo-sobre-nos::before {
  content: '';
  position: absolute;
  top: 49px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--azul-principal);
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}

.sobre-nos {
  background-color: var(--cinza-claro);
  padding: 60px 20px 0 20px;
  width: 100%;
  margin-top: -100px;
}

.sobre-nos .conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 10px; /* usar padding em vez de top */
  padding-bottom: 150px;
}


.sobre-nos .imagem {
  flex: 1;
  min-width: 300px;
}

.sobre-nos .imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.sobre-nos .imagem {
  position: static !important;
  top: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-nos .imagem img {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.sobre-nos .texto {
  flex: 1;
  min-width: 300px;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}

.sobre-nos .texto h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 0.6;
}

.sobre-nos .texto h2 span {
  font-size: 27px;
  font-weight: 500;
  display: block;
  letter-spacing: -1.5px;
}

.sobre-nos .texto h2 strong {
  font-size: 50px;
  font-weight: 900;
  color: var(--azul-seg);
  width: 270px;
  letter-spacing: -1.5px;
}

.sobre-nos .texto p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}
.topo-comentarios{
  position: relative;
  height: 40px;
  z-index: 1;
  top: -50px;
  width: 100%;
}

.topo-comentarios::before {
  content: '';
  position: absolute;
  top: -215px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--cinza-claro);
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}
.titulo-depoimentos {
  text-align: center;
  margin-top: -60px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  filter: none !important;
  text-shadow: none !important;
  

}

.titulo-depoimentos .subtitulo {
  font-family: 'Poppins', sans-serif;
  font-size: 29px;
  font-weight: 400;
  color: #1a1a1a;
  filter: none !important;
  text-shadow: none !important;
   letter-spacing: -1px;

}

.titulo-depoimentos strong {
  font-family:'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 850px;
  color:var(--azul-principal);
  display: block;
  margin-top: -40px;
  letter-spacing: 1px;

}
.carrossel {
  width: 100%;
  overflow: hidden;
  padding: 60px 20px;
  background-color: #ffffff;
  position: relative;
  text-align: center;
  top: -300px;
}


.carrossel .faixa {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  padding: 0 20px;
  background-color: var(--branco);
}

.card-depoimento {
  min-width: 350px;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  scroll-snap-align: center;
  margin-top: -30px;
}

.card-depoimento img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card-depoimento h3 {
  font-size: 18px;
  margin: 0;
}

.card-depoimento .data {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.estrelas {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.comentario {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}
@keyframes deslizar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carrossel .faixa {
  display: flex;
  animation: deslizar 30s linear infinite;
  gap: 30px;
}
.card-depoimento {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-depoimento.ativo {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.carrossel {
  contain: layout paint;
  will-change: transform;
  backface-visibility: hidden;
}
.onda-topo {
  width: 100vw;
  height: 60px;
  background-color: #ffffff;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  margin: 0;
  padding: 0;
  position: relative;
  top: -65px;
  margin-left: -24px;
}


/* Seção de preços */
.precos {
  background:#0053D9;
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
  top: -320px;
}

.precos h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 800;
  text-shadow: 0 0 10px #070707;
}

.precos h2 span {
  display: block;
  font-size: 38px;
  font-weight: 600;
  text-shadow: 0 0 10px #070707;
}

/* Container dos cards */
.etiquetas {
  display: flex;
  justify-content: center;
  gap: 65px;
  flex-wrap: wrap;
}

/* Card individual */
.etiqueta {
  background: white;
  color: #000;
  padding: 50px 30px;
  border-radius: 25px;
  width: 420px;            /* Aumenta a largura */
  height: 400px;           /* Aumenta a altura */
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
  padding-left: 40px;
}



/* Título do plano */
.etiqueta h3 {
  background: linear-gradient(45deg, #0a0db4, #00b3f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 31px;
  font-weight: 600;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
  display: inline-block;
  top: -25px;
  position: relative;
}

.etiqueta p {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  color: #303030;
  position: relative;
  font-weight: 600;
  text-align: left;
  top: -36px;
  letter-spacing: -0.3px;
  transform: scaleY(1.1);
}

.etiqueta .preco {
  font-size: 40px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif; ;
  margin: 10px 0;
  color: black;
  transition: transform 0.3s ease;
  text-align: left;
  top: -35px;
  position: relative;
}

.etiqueta small {
  font-size: 16px;
  color: #292929;
  text-align: left;
  top: -50px;
  position: relative;
  font-weight: 500;
}

/* Lista de benefícios */
.etiqueta ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  position: relative;
  top: -40px;
}

.etiqueta ul li {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}

/* Efeito hover no preço */
.etiqueta:hover {
  transform: scale(1.03);
}
.icone-degrade {
  background: linear-gradient(45deg, #0a0db4, #00b3f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  margin-right: 6px;
}
/* === ESTILO SWIPER === */
.lista-de-cursos {
  background-color: #0053D9;
  padding: 60px 30px;
  text-align: center;
  position: relative;
  top: -370px;
}

.lista-de-cursos .titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 24px;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.6));
  top: -15px;
  position: relative;
}

.swiper.mySwiper {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  margin-left: 120px;
}

.swiper-slide.cursos {
  background-color: transparent;
  border-radius: 20px;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.swiper-slide.cursos:hover {
  transform: scale(1.03);
}

.swiper-slide.cursos img {
  max-width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ❌ Remove as setas laterais padrão */
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* ✅ NOVAS SETAS AO LADO DOS PONTINHOS */
.controle-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  z-index: 10;
}

.btn-prev,
.btn-next {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.btn-prev:hover,
.btn-next:hover {
  transform: scale(1.1);
}

/* Pontinhos de paginação */
.swiper-pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
}
.perguntas-frequentes {
  background-color: #fff;
  padding: 60px 20px 80px 20px; /* topo, dir, baixo, esq */
  font-family: 'Inter', sans-serif;
}


.perguntas-frequentes .conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 200px;
  flex-wrap: wrap;
  position: relative;
  right: -80px;
}

.perguntas h3{
font-family: Arial, Helvetica, sans-serif;
color: #000;
font-size: 2.0rem;
text-align: center;
position: relative;
top: -400px;
right: -300px;
font-weight: 130;  


}

.perguntas h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  top: -410px;
  position: relative;
  text-align: center;
  margin: 0 auto;
  right: -300px;  
  font-weight: 700;
  background: linear-gradient(90deg, #1893ff 10%,  #0057FF 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.perguntas {
  flex: 1;
  min-width: 300px;
}

.faq-item {
  background: linear-gradient(90deg, #1893ff 0%, #0057FF 100%);
  margin-bottom: 2px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  top: -350px;
  right: -50px;
  width: auto;
  max-width: 100%; /* se quiser limitar pra não estourar */
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  color: var(--branco);
  background: linear-gradient(90deg, #1893ff 0%, #0057FF 100%);
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  letter-spacing: 1.7px;
  transform: scaleY(1.3);
}

.faq-pergunta::after {
  content: '▼';
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
  font-size: 15px;
  width: 10px;
}

.faq-item.ativo .faq-pergunta::after {
  transform: rotate(180deg);
}

.faq-resposta {
  background: linear-gradient(90deg, #1893ff 0%, #0057FF 100%);
  color: white;
  font-size: 18px;
  line-height: 1.5;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.3);

}


.faq-item.ativo .faq-resposta {
  display: block;
}

.perguntas-frequentes .imagem {
  flex: 1;
  min-width: 280px;
  text-align: center;
  position: relative;
  top: -730px;
  right: 250px;
}
.imagem img {
  max-width: 100%;
  height: auto;
}
.faq-item.ativo .faq-resposta {
  max-height: 500px;
  padding: 15px 20px;
}

.rodape-meio {
  background-color: #f3f3f3;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #000;
  margin-top: -400px; /* usamos margem, não top negativo */
}


.rodape-meio .coluna {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

/* === LOGO COLUNA === */
.logo-coluna {
  align-items: center;
  text-align: center;
   position: relative;
  left: 50px;
}
.logo-coluna h3 {
  font-size: 50px;
  color: #0057ff;
  margin-bottom: 10px;
}
.logo-coluna p {
  font-size: 18px;
  margin-top: 10px;
  line-height: 1.6;
}
.logo-coluna .logo-rodape {
  width: 90px;
  margin: 0 auto 10px auto;
  display: block;

}

/* === NAVEGUE COLUNA === */
.navegue-coluna {
  text-align: left;
  left: 170px;
  position: relative;
}
.navegue-coluna h3 {
  font-size: 25px;
  color: var(--mars-green);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.navegue-coluna a {
  font-size: 17px;
  line-height: 1.6;
  text-decoration: none;
  color: #000;
}
.navegue-coluna a:hover {
  text-decoration: underline;
}

/* === CONTATO COLUNA === */
.contato-coluna {
  align-items: flex-end;
  text-align: right;
}
.contato-coluna h3 {
  font-size: 25px;
  color: var(--mars-green);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  left: -280px;
  position: relative;
}
.contato-coluna p {
  font-size: 16px;
  line-height: 1.6;
  left: -200px;
  position: relative;
}
.contato-coluna img {
  width: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

/* Lista padrão */
.rodape-meio ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape-meio li {
  margin-bottom: 6px;
}
.rodape-inferior {
  background-color: #e6e6e6;
  text-align: center;
  padding: 25px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #000;
}

.rodape-inferior .direitos {
  margin-bottom: 10px;
}

.rodape-inferior .privacidade {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 30px;
}

.rodape-inferior .privacidade img {
  width: 16px;
  height: 16px;
  top: 20px;
  position: relative;
}

.rodape-inferior .privacidade a {
  text-decoration: none;
  color: #0057ff;
  font-weight: 500;
  font-size: 17px;
  top: 20px;
  position: relative;
}

.rodape-inferior .privacidade a:hover {
  text-decoration: underline;
}
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 40px 20px 40px;
    gap: 30px;
  }

  .hero .imagem {
    justify-content: center;
    text-align: center;
  }

  .hero .imagem img {
    max-width: 90%;
    height: auto;
    border-radius: 30px;
    right: 0;
    top: 0;
  }

  .hero .texto {
    margin-top: 0;
    max-width: 100%;
  }

  .boas-vindas {
    font-size: 20px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .descricao {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .botao {
    justify-content: center;
    font-size: 17px;
    padding: 14px 24px;
    margin-bottom: 10px;
  }

  .circulo-branco {
    width: 22px;
    height: 22px;
    margin-left: 10px;
  }

  .setas-duplas {
    margin-top: 10px;
    position: static;
  }
}
@media (max-width: 768px) {
  .sobre-nos {
    padding-bottom: 260px;
    margin-top: -120px;
  }

  .sobre-nos .conteudo {
    flex-direction: column;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .onda-branca {
    top: 40px;
  }

  .beneficios {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .swiper.mySwiper {
    margin-left: 0;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .carrossel {
    padding-top: 160px; /* empurra o conteúdo pra baixo, mas sem afetar a onda branca */
  }
   .titulo-depoimentos .subtitulo {
    font-size: 20px;
    margin-top: -40px;
  }
  .titulo-depoimentos strong {
    font-size: 24px;
    margin-top: -20px;
    white-space: nowrap;
    margin-top: -32px;
  }
}
@media (max-width: 768px) {
  .conteudo-etiqueta h3 {
    text-align: left;
    font-size: 1.7rem;
    font-weight: 600;
  }

 @media (max-width: 768px) {
  .etiqueta h3,
  .etiqueta p,
  .etiqueta .preco,
  .etiqueta small,
  .etiqueta ul {
    top: -50px;
    position: relative;
  }

  .etiqueta small {
    top: -55px;
  }

  .etiqueta ul {
    size: 10px;
    position: relative;
    top: -60px;
    line-height: 1.2;
  }
}
 .etiqueta ul li{
  font-size: 18px;
 }



@media (max-width: 768px) {
  .perguntas-frequentes {
    padding: 20px 15px 0px;
    margin-bottom: 0px; 
    display: flex;
    flex-direction: column;
  }

  .perguntas-frequentes .conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
  }

  .perguntas {
    width: 100%;
    padding: 0 15px;
  }
.perguntas h3,
.perguntas h1{
  position: relative;
  right: 80px;
  text-align: center;
 position: relative;
}
  .perguntas h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000;
    text-align: center;
    position: relative;
    margin-top: 30px;
  }

  .perguntas h1 {
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(90deg, #1893ff 10%, #0057FF 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom:60px;
    
  }

.perguntas-frequentes img{
  display: none !important;
}

  .faq-item {
    width: 100%;
    margin-bottom: 4px; /* menor espaçamento entre as barras */
    position: relative;
    left: -80px;
  }

  .faq-pergunta {
    font-size: 15px;
    padding: 14px 16px;
    
  }

  .faq-resposta {
    font-size: 14px;
    padding: 0 16px;

  }
 
}

@media (max-width: 768px) {
  .faq-bloco {
    width: 100%;
    position: relative;
    top: -90px;
  }
}
@media (max-width: 768px) {
  .rodape-meio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-bottom: -100px;
  }
  .logo-coluna {
    order: -1; /* Sobe a logo pro topo */
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    left: 0; /* Remove posicionamento lateral */
    position: static;
  }
  .navegue-coluna,
  .navegue-coluna h3,
  .navegue-coluna a{
    position: relative;
    left: -5px;
    font-size: 13px;

  }
.contato-coluna,
.contato-coluna h3,
.contato-coluna p {
  position: relative;
  top: -98px;
  right: -220px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .contato-coluna h3 {
    font-size: 1rem;
    text-align: left;
    left: -277px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .contato-coluna p img {
    display: none;
  }
}
@media (max-width: 768px) {
  .rodape-inferior {
    font-size: 0.85em;
  }
}

}

