/* Variáveis de Cores */
:root {
  --dark-bg: #000;
  --dark-gray: #1a1a1a;
  --orange-primary: #ffe600;
  --orange-secondary: #ffe600;
  --white: #fff;
  --light-gray: #ccc;
  --text-color: #f0f0f0;
}

/* Reset Básico e Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  font-weight: 400;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6em;
  text-transform: uppercase;
  line-height: 1;
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
}

h2 {
  position: relative;
  padding: 20px 0 15px 0;
  text-align: center;
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 40px;
}

h4 {
  font-family: "Raleway", sans-serif;
  font-size: 1.8em;
  line-height: 1.4;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 600px;
}

span.amarelo {
  color: var(--orange-primary);
  font-weight: 700;
}

a {
  color: var(--orange-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.scroll-down-arrow {
  display: none;
}

/* --- Hero Section --- */
.hero-section {
  background: url(../img/BG1.jpg) no-repeat center/cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

.hero-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  padding: 0 20px;
}

.hero-text-and-benefits {
  flex: 1 1 500px;
  min-width: 300px;
  margin-right: 40px;
  margin-left: 40px;
  text-align: left;
}

.benefits {
  margin-top: 40px;
  width: 100%;
  max-width: 500px; /* Define uma largura máxima para o container */
}

.benefit-item img {
  width: 100%; /* Faz a imagem ocupar 100% do container .benefits */
  height: auto;
  display: block;
}

.contact-form-container {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 10px;
  min-width: 320px;
  width: 407px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: auto;
  margin-right: 40px;
  margin-top: 0;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-form label {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--light-gray);
  text-align: left;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background-color: transparent;
  border: 1px solid var(--orange-secondary);
  border-radius: 25px;
  color: var(--white);
  font-size: 1em;
}

.submit-button-no-bg {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 700;
  width: auto;
  align-self: flex-end;
  margin-right: 20px;
}

.submit-button-no-bg:hover {
  color: var(--orange-secondary);
}

/* --- ESTILOS CONSULTORIA --- */
.online-consulting-section {
  background-color: var(--dark-bg);
  text-align: center;
}

#text-central {
  font-size: 1.5em;
  line-height: 1.6;
  color: var(--light-gray);
  max-width: 950px;
  margin: 0 auto 50px auto;
  text-align: center;
  font-weight: 300;
}

.online-consulting-content-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1100px; /* Limita a largura do conjunto */
  margin: 50px auto 0; /* Centraliza o conjunto */
}

.online-images-wrapper {
  /* A largura é calculada para subtrair metade do 'gap' */
  width: calc(50% - 20px);
}

.online-images-wrapper .main-consultoria-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.features {
  /* A largura é calculada para subtrair a outra metade do 'gap' */
  width: calc(50% - 20px);
  text-align: left;
  margin-top: 50px;
}

.features p {
  font-size: 1.3em;
  color: var(--white);
  line-height: 1.5;
}

.features i {
  color: var(--orange-primary);
  margin-right: 10px;
  vertical-align: middle;
}

/* --- Seção de Serviços --- */
.services-section {
  background-color: var(--dark-bg);
  padding: 80px 20px;
  text-align: center;
}

.all-images-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end; /* Alinha as imagens pela base */
  gap: 20px;
  margin-bottom: 20px;
}

.image-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.profile-image {
  width: 571px;
  height: 527px;
}

.service-image {
  width: 207px;
  height: 520px;
}

.all-texts-block {
  max-width: 1100px; /* Soma das larguras das imagens e gaps */
  margin: 20px auto 0;
  text-align: left;
  font-size: 1.8em;
}

.cref {
  color: #f86600;
}

.profile-text-content ul {
  list-style-type: none;
}

/* --- ESTILOS CORRIGIDOS PARA A SEÇÃO MFIT --- */
.app-mfitt-section {
  background-color: #f86600;
  width: 100%;
  max-width: 1920px;
  height: 767.75px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  margin-top: -100px;
}

.app-mfitt-content-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* Adiciona um espaçamento entre o texto e a imagem */
  padding: 0 80px;
  box-sizing: border-box;
  z-index: 1;
}

/* Div que agrupa todo o conteúdo da esquerda */
.left-content {
  display: flex;
  flex-direction: column; /* Organiza os itens na vertical */
  justify-content: center; /* Centraliza o bloco verticalmente */
  gap: 30px; /* Espaçamento entre título, parágrafo e botões */
  max-width: 650px;
}

.mfitt-h2 h2 {
  font-weight: 700;
  color: white;
  font-size: 2.4rem;
  line-height: 1.1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#tex-p p {
  font-weight: 600;
  font-size: 1.9rem;
  color: #ffffff;
  line-height: 1.4;
  text-align: left;
}

/* Estilos específicos para a imagem com o novo ID */
#mockup-img img {
  height: 768px; /* Altura específica solicitada (arredondada) */
  width: auto; /* Largura automática para manter a proporção */
  max-width: 100%;
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.3));
}

.app-buttons {
  display: flex;
  gap: 20px;
}

/* Estilo para os botões com logos em imagem */
.store-button img {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.store-button img:hover {
  transform: scale(1.05);
}

.app-mfitt-content-container picture {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.app-mfitt-content-container picture img {
  max-height: 95%;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.3));
}

/* --- ESTILOS PARA A SEÇÃO DE PLANOS --- */
.plans-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  overflow: hidden;
  background: url(../img/fundo-planos.svg) no-repeat center center/cover;
}

.plans-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* Espaçamento entre os cartões */
  flex-wrap: wrap;
}

.plan-card {
  width: 512px;
  height: 719px;
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.plan-card .main-plan-image {
  width: 481px;
  height: 450px;
  margin-bottom: 20px;
}

.plan-card .main-plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.5em;
  width: 100%;
  padding-left: 15px;
}

#icone-relogio {
  width: 40px;
  height: 40px;
}

.plan-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.8em;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
  padding-left: 15px;
}

.plan-card ul {
  padding: 0;
  width: 422px;
  height: 162px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 1.1em;
  flex-direction: column;
  gap: 10px;
  color: white;
}

.plan-card ul li {
  align-items: center;
  gap: 10px;
}

.plan-card ul li .fa-circle-small {
  color: var(--orange-primary);
}

.plan-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: auto; /* Empurra os botões para o final do card */
}

.btn-saiba-mais,
.btn-entrar-contato {
  height: 52px;
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px; /* Aumenta o padding para o texto não cortar */
  transform: skewX(-20deg); /* Inclina o botão */
}

.btn-saiba-mais span,
.btn-entrar-contato span {
  display: inline-block;
  transform: skewX(20deg); /* Desinclina o texto */
}

.btn-saiba-mais {
  width: 161px;
  background-color: orangered;
}

.btn-saiba-mais:hover {
  filter: brightness(1.1);
}

.btn-entrar-contato {
  width: 237px;
  background-color: transparent;
  border: 1.15px solid var(--white);
}

.btn-entrar-contato:hover {
  background-color: var(--white);
  color: var(--dark-bg);
}

/* --- ESTILOS PARA A SEÇÃO DE FEEDBACKS --- */
.feedback-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: auto;
  max-height: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background: url(../img/fundo-planos.svg) no-repeat center center/cover;
  padding: 80px 0;
  overflow: visible; /* Essencial para o carrossel */
}

.feedback-section .container {
  max-width: 1750px;
  margin: 0 auto;
}

.feedback-carousel-wrapper {
    position: relative;
    /* Largura calculada para 3 cards e 2 gaps */
    width: 1920px;
    height: 100%; /* Altura suficiente para o card com scale */
    display: flex;
    margin-left: -80px;
    align-items: center; /* Centraliza verticalmente o card destacado */
    justify-content:space-around;
    overflow: visible; /* Essencial: esconde os outros cards */
}

.feedback-grid {
  display: flex;
  justify-content: center; /* Começa alinhado à esquerda */
 justify-content: center; 
  gap: 5px;
  transition: transform 0.5s ease-in-out;
}

.feedback-card {
  width: 325px;
  height: 373px;
  background-color: var(--dark-gray);
  border-bottom: 5px solid orangered;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  flex-shrink: 0; /* Impede que os cartões encolham */
  transition: transform 0.5s ease-in-out;
  transform: scale(1); /* Estado inicial */
}

.feedback-card.highlight {
  transform: scale(1.3); /* Aumento de 30% */
  z-index: 10;
}

.paragrafo-feedback {
  font-size: 1.2em;
  margin-bottom: 15px;
  flex-grow: 1; /* Faz o parágrafo ocupar o espaço disponível */
  display: flex;
  align-items: center;
}

.student-name {
  width: 206px;
  height: 42px;
  font-size: 1.5em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto; /* Empurra o nome para a parte inferior */
}

/* --- ESTILOS PARA A SEÇÃO ANTES E DEPOIS --- */
.before-after-section {
    position: relative;
  width: 100%;
    max-width: 1920px;
  height: 1136px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  background: url("../img/fundo-planos.svg") no-repeat center center/cover;
}

.carousel-container {
  position: relative;
  width: 877px;
  height: 665px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.before-after-images {
  width: 624px;
  height: 624px;
}

.before-after-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

#arrow-next,
#arrow-preview {
  position: absolute;
  width: 85px;
  height: 85px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#arrow-next {
  right: 0;
}

#arrow-preview {
  left: 0;
}

#arrow-next img,
#arrow-preview img {
  width: 100%;
  height: 100%;
}

/* Classe para esconder as setas */
.hidden {
  opacity: 0;
  pointer-events: none;
}

/* --- ESTILOS CORRIGIDOS PARA A SEÇÃO CTA FINAL --- */
.cta-section {
  padding: 80px 20px;
}

.cta-content {
  width: 1600px;
  height: 283px;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(90deg, #ffe60a -6.33%, #fe6100 103.92%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  transform: skewX(-20deg); /* Inclinação aplicada ao contêiner do conteúdo */
}

#text-cta-footer {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 3em;
  color: var(--dark-bg);
  margin-bottom: 25px;
  transform: skewX(20deg); /* Desinclina o texto */
}

.whatsapp-button {
  width: 422px;
  height: 67px;
  background-color: transparent;
  border: 2px solid #ff0000;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* A inclinação é herdada do pai, não precisa ser aplicada aqui */
}

.whatsapp-button:hover {
  background-color: rgba(255, 0, 0, 0.1);
  text-decoration: none;
}

.whatsapp-button span {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 2%;
  transform: skewX(20deg); /* Desinclina o texto */
}

.developed-by {
  margin-top: 40px;
  text-align: center;
  /* Removidas as transformações que causavam o problema */
}

#texto-desenvolvedor {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 2%;
  color: var(--white);
  margin-bottom: 15px;
}

.developed-by img {
  width: 303px;
  height: 68px;
}

@media (max-width: 767px) {
  /* --- Hero Section --- */
  .hero-text-and-benefits,
  .contact-form-container {
    position: relative;
    width: 90%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 15px;
  }
  .hero-text-and-benefits {
    padding-bottom: 2em; /* Mais espaço para o texto */
    margin-left: 0px;
    width: 80vw;
  }
  h1 {
    font-size: 2.5rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  .benefits {
    max-width: 100%;
  }

  .contact-form-container {
    width: 75%;
    max-width: auto ;
    margin: 20px auto 0;
    padding: 20px;
  }

  /* --- Seção Consultoria Online --- */
  .online-consulting-content-layout {
    flex-direction: column;
    align-items: center;
  }
  .online-images-wrapper {
    width: 80vw;
    height: auto;
    max-width: 100%; /* Aumenta a imagem para ocupar a largura */
    margin-bottom: -50px;
  }
  .features {
    margin-top: 20px;
    text-align: left;
    margin-left: -150px;
  }
  .features p {
    font-size: 1.1em; /* Reduz a fonte para caber em menos linhas */
    width: 80vw;
  }

  /* --- Seção MFIT --- */
  .app-mfitt-section {
    padding: 40px 20px;
    height: auto;
    margin-top: 1px;
  }
  .app-mfitt-content-container {
    padding: 0;
    flex-direction: column; /* Empilha tudo */
    text-align: center;
  }
  .left-content {
    gap: 20px;
    align-items: center;
  }

  #mockup-img img {
    width: 40vw;
    height: 50vw;
  }

  .mfitt-h2 h2 {
    font-size: 2em;
    text-align: center;
  }
  #tex-p p {
    font-size: 1.1em;
    text-align: center;
  }
  .app-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* --- Seção Planos --- */
  .plans-section {
    padding: 60px 15px;
  }

  .plans-cards {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    width: 70vw;
    max-width: 100vw; /* Reduz ainda mais o tamanho do card */
    height: auto;
    padding: 10%;
  }

  .plan-card .main-plan-image {
    width: 80vw;
    height: auto;
    aspect-ratio: 4 / 3; /* Proporção da imagem (opcional, mas ajuda a manter a consistência) */
    margin-bottom: 15px;
  }

  .plan-card h3 {
    font-size: 1.1em;
    text-align: left; /* Centraliza o título no mobile */
    padding-left: 0;
  }

  .plan-header {
    justify-content: center; /* Centraliza o header do plano */
    padding-left: 0;
  }

  .plan-card ul {
    width: 100%; /* A lista ocupa toda a largura disponível */
    height: auto;
    text-align: left; /* Mantém o alinhamento dos itens */
    padding-left: 10px; /* Pequeno recuo para os itens da lista */
  }

  .plan-buttons {
    flex-direction: column; /* Empilha os botões */
    align-items: center; /* Centraliza os botões */
    gap: 15px;
    width: 100%;
    margin-top: 20px;
  }

  .btn-saiba-mais,
  .btn-entrar-contato {
    width: 80%; /* Botões mais largos para melhor toque */
  }

  /* --- Seção Feedbacks --- */
  #feedbac-h2 {
      text-align: center;
      font-size: 1.6em;
  }
.feedback-carousel-wrapper {
    /* O wrapper terá 90% da largura da tela */
    width: 100%; 
    margin: 0 auto;
    overflow: visible;
}

.feedback-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px; /* Um espaçamento menor para mobile */
}
.feedback-card {
    /* O card ocupa 100% do wrapper visível */
    width: 100%; 
    height: auto;
    min-height: 150px; /* Altura mínima para ficar agradável */
}

.feedback-card.highlight {
    transform: none; /* Remove o zoom */
    z-index: auto; /* Retorna ao z-index normal */
}

  /* --- Seção Antes e Depois --- */
  .before-after-section {
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .before-after-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .carousel-container {
   width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0 10px; /* Espaço para as setas não ficarem coladas */
  }
  .before-after-images {
    width: 60vw;
    height: auto;
    margin: 0 auto;
  }
  #arrow-next,
  #arrow-preview {
    width: 7vw;
    height: auto;
    margin-right: -10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #arrow-next {
    right: 0;
  } /* Afasta um pouco */
  #arrow-preview {
    left: 0;
  } /* Afasta um pouco */

  /* --- Seção CTA Final (Mobile) --- */

.cta-section {
    padding: 60px 20px;
}

.cta-content {
    /* Remove a largura fixa e a inclinação */
    width: 100%;
    height: auto; /* Altura se ajusta ao conteúdo */
    transform: none; /* Remove o skewX(-20deg) */
    padding: 30px 25px;
    text-align: center; /* Centraliza o texto */
}

#text-cta-footer {
    /* Remove a inclinação reversa */
    transform: none;
    font-size: 1.8em; /* Reduz o tamanho da fonte */
    line-height: 1.2;
}

.whatsapp-button {
    /* Botão responsivo */
    width: 100%;
    max-width: 300px; /* Limita a largura máxima */
    height: 60px;
}

.whatsapp-button span {
    /* Remove a inclinação reversa e ajusta a fonte */
    transform: none;
    font-size: 1.5em; /* Tamanho de fonte do botão */
}

  
  /* --- Seção Desenvolvido por --- */
 .developed-by {
    height: auto;
    padding: 60px 20px;
 } 

 #texto-desenvolvedor {
  text-align: center;
  font-size: 1em;
 }

 .developed-by img {
  width: 60vw;
  height: auto;
 }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* --- Hero Section --- */
  .hero-text-and-benefits,
  .contact-form-container {
    position: relative;
    width: 90%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 5px;
  }
  
  .hero-text-and-benefits {
    padding-bottom: 0.5em; /* Mais espaço para o texto */
    margin-left: 0px;
    width: 80vw;
  }
  h1 {
    font-size: 2.em;
  }
  h4 {
    font-size: 1.1em;
  }
  .benefits {
    max-width: 100%;
  }

  .contact-form-container {
    width: 75%;
    max-width: auto ;
    margin: 20px auto 0;
    padding: 20px;
  }

  /* --- Seção Consultoria Online --- */
  .online-consulting-content-layout {
    flex-direction: column;
    align-items: center;
  }
  .online-images-wrapper {
    width: 80vw;
    height: auto;
    max-width: 100%; /* Aumenta a imagem para ocupar a largura */
    margin-bottom: -50px;
  }
  .features {
    margin-top: 20px;
    text-align: left;
    margin-left: -150px;
  }
  .features p {
    font-size: 1.1em; /* Reduz a fonte para caber em menos linhas */
    width: 80vw;
  }

  /* --- Seção MFIT --- */
  .app-mfitt-section {
    padding: 40px 20px;
    height: auto;
    margin-top: 1px;
  }
  .app-mfitt-content-container {
    padding: 0;
    flex-direction: column; /* Empilha tudo */
    text-align: center;
  }
  .left-content {
    gap: 20px;
    align-items: center;
  }

  #mockup-img img {
    width: 40vw;
    height: 50vw;
  }

  .mfitt-h2 h2 {
    font-size: 2em;
    text-align: center;
  }
  #tex-p p {
    font-size: 1.1em;
    text-align: center;
  }
  .app-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* --- Seção Planos --- */
  .plans-section {
    padding: 60px 15px;
  }

  .plans-cards {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    width: 70vw;
    max-width: 100vw; /* Reduz ainda mais o tamanho do card */
    height: auto;
    padding: 10%;
  }

  .plan-card .main-plan-image {
    width: 80vw;
    height: auto;
    aspect-ratio: 4 / 3; /* Proporção da imagem (opcional, mas ajuda a manter a consistência) */
    margin-bottom: 15px;
  }

  .plan-card h3 {
    font-size: 1.1em;
    text-align: left; /* Centraliza o título no mobile */
    padding-left: 0;
  }

  .plan-header {
    justify-content: center; /* Centraliza o header do plano */
    padding-left: 0;
  }

  .plan-card ul {
    width: 100%; /* A lista ocupa toda a largura disponível */
    height: auto;
    text-align: left; /* Mantém o alinhamento dos itens */
    padding-left: 10px; /* Pequeno recuo para os itens da lista */
  }

  .plan-buttons {
    flex-direction: column; /* Empilha os botões */
    align-items: center; /* Centraliza os botões */
    gap: 15px;
    width: 100%;
    margin-top: 20px;
  }

  .btn-saiba-mais,
  .btn-entrar-contato {
    width: 80%; /* Botões mais largos para melhor toque */
  }

  /* --- Seção Feedbacks --- */
  #feedbac-h2 {
      text-align: center;
      font-size: 1.6em;
  }
.feedback-carousel-wrapper {
    /* O wrapper terá 90% da largura da tela */
    width: 100%; 
    margin: 0 auto;
    overflow: visible;
}

.feedback-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px; /* Um espaçamento menor para mobile */
}
.feedback-card {
    /* O card ocupa 100% do wrapper visível */
    width: 100%; 
    height: auto;
    min-height: 150px; /* Altura mínima para ficar agradável */
}

.feedback-card.highlight {
    transform: none; /* Remove o zoom */
    z-index: auto; /* Retorna ao z-index normal */
}

  /* --- Seção Antes e Depois --- */
  .before-after-section {
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .before-after-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .carousel-container {
   width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0 10px; /* Espaço para as setas não ficarem coladas */
  }
  .before-after-images {
    width: 60vw;
    height: auto;
    margin: 0 auto;
  }
  #arrow-next,
  #arrow-preview {
    width: 7vw;
    height: auto;
    margin-right: -10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #arrow-next {
    right: 0;
  } /* Afasta um pouco */
  #arrow-preview {
    left: 0;
  } /* Afasta um pouco */

  /* --- Seção CTA Final (Mobile) --- */

.cta-section {
    padding: 60px 20px;
}

.cta-content {
    /* Remove a largura fixa e a inclinação */
    width: 100%;
    height: auto; /* Altura se ajusta ao conteúdo */
    transform: none; /* Remove o skewX(-20deg) */
    padding: 30px 25px;
    text-align: center; /* Centraliza o texto */
}

#text-cta-footer {
    /* Remove a inclinação reversa */
    transform: none;
    font-size: 1.8em; /* Reduz o tamanho da fonte */
    line-height: 1.2;
}

.whatsapp-button {
    /* Botão responsivo */
    width: 100%;
    max-width: 300px; /* Limita a largura máxima */
    height: 60px;
}

.whatsapp-button span {
    /* Remove a inclinação reversa e ajusta a fonte */
    transform: none;
    font-size: 1.5em; /* Tamanho de fonte do botão */
}

  
  /* --- Seção Desenvolvido por --- */
 .developed-by {
    height: auto;
    padding: 60px 20px;
 } 

 #texto-desenvolvedor {
  text-align: center;
  font-size: 1em;
 }

 .developed-by img {
  width: 60vw;
  height: auto;
 }
}