@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

html, body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #191919;
  scroll-behavior: smooth;
}

/* -------- HERO -------- */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #000;
  color: #fff;
  height: 90vh; /* Alterado de 80vh para 90vh */
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-left {
  flex: 1; /* Alterado para flex: 1 para ocupar o espaço restante */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5vw 0 5vw; /* Adicionado padding responsivo */
  z-index: 2;
  height: 100%;
}
.logo {
  width: 160px;
  margin-bottom: 40px;
}
.hero-left h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 600px;
}
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 450px;
  font-weight: 400;
  line-height: 1.4;
}
.cta {
  background: #FFA726;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.cta:hover {
  background: #FF9000;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero-right {
  flex: 0 0 50%; /* Aumentado para 50% para dar mais espaço à imagem */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100%;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantido como cover para preencher o espaço */
  object-position: center; /* Centraliza a imagem */
  border-radius: 0;
  box-shadow: none;
}

/* -------- MEDIA QUERIES PARA RESPONSIVIDADE -------- */

/* Tablets e telas médias */
@media (max-width: 1200px) {
  .hero-left { padding: 0 40px; }
  .hero-left h1 { font-size: 3rem; }
}

/* Tablets pequenos */
@media (max-width: 950px) {
  .hero { flex-direction: column; height: auto; min-height: 0; }
  .hero-left {
    flex: 1;
    align-items: center; 
    padding: 48px 24px 0 24px; 
    text-align: center;
    justify-content: flex-start;
  }
  .hero-left h1 { 
    font-size: 2.5rem; 
    max-width: 100%;
  }
  .hero-desc {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-right { 
    flex: 1; 
    justify-content: center; 
    align-items: center; 
    padding: 0 0 40px 0;
  }
  .hero-img { 
    width: 80vw; 
    min-width: 180px; 
    max-width: 100vw; 
    height: auto; 
  }
  .logo { 
    margin-bottom: 30px;
    width: 140px;
  }
  
  /* Benefícios em tablet */
  .beneficios h2 { font-size: 2rem; }
  .cards-beneficios { gap: 30px; }
  
  /* Funcionamento em tablet */
  .func-passos { 
    flex-direction: column; 
    gap: 30px;
  }
  .seta { 
    transform: rotate(90deg);
    margin-top: 0;
  }
}

/* Mobile - telas pequenas */
@media (max-width: 768px) {
  /* Hero mobile */
  .hero-left {
    padding: 40px 20px 0 20px;
  }
  .hero-left h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .logo {
    width: 120px;
    margin-bottom: 24px;
  }
  .cta {
    font-size: 1rem;
    padding: 14px 32px;
    width: 100%;
    max-width: 300px;
  }
  
  /* Benefícios mobile */
  .beneficios {
    padding: 60px 20px;
  }
  .beneficios h2 {
    font-size: 1.75rem;
    margin-bottom: 40px;
    line-height: 1.2;
  }
  .cards-beneficios {
    gap: 24px;
  }
  .card-beneficio {
    width: 100%;
    max-width: 350px;
    padding: 32px 24px;
  }
  .card-beneficio img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .card-beneficio h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .card-beneficio p {
    font-size: 0.95rem;
  }
  
  /* Funcionamento mobile */
  .funcionamento {
    padding: 60px 20px 0 20px;
  }
  .star-decor {
    width: 100px;
  }
  .funcionamento-conteudo {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }
  .func-textos {
    padding-bottom: 20px;
  }
  .func-textos h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .func-textos > p {
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.5;
  }
  .func-passos {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .passo {
    width: 100%;
    max-width: 280px;
  }
  .passo-icone {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  .passo img {
    width: 60px;
    height: 60px;
  }
  .passo h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  .passo p {
    font-size: 0.8rem;
  }
  .seta {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
    margin-top: 0;
  }
  .func-img-mulher {
    flex: 0 0 auto;
    width: 70%;
    max-width: 300px;
  }
  
  /* Marcas mobile */
  .marcas-area {
    padding: 60px 20px;
  }
  .marcas-area h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    line-height: 1.2;
  }
  .marcas-icones {
    gap: 40px 30px;
  }
  .marcas-icones img {
    height: 70px;
    max-width: 150px;
  }
  
  /* Instalação mobile */
  .instalacao {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }
  .instalacao-left {
    text-align: center;
    max-width: 100%;
  }
  .instalacao-left h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .instalacao-left h3 {
    font-size: 1.15rem;
    margin-top: 20px;
  }
  .instalacao-left p {
    font-size: 1rem;
  }
  .instalacao-right {
    max-width: 100%;
    width: 100%;
  }
  .video-container {
    max-width: 350px;
    margin: 0 auto;
  }
  .play-btn {
    width: 44px;
  }
  
  /* Formulário mobile */
  .form-area {
    padding: 80px 20px;
  }
  .form-area .star-formulario {
    width: 120px;
  }
  .form-box {
    padding: 40px 24px 32px 24px;
    max-width: 100%;
  }
  .form-box h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .form-box p {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .form-box input {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .form-box button {
    padding: 18px 0;
    font-size: 1.1rem;
    margin-top: 12px;
  }
  
  /* Footer mobile */
  footer {
    padding: 24px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile pequeno - telas muito pequenas */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 1.75rem;
  }
  .hero-desc {
    font-size: 0.9rem;
  }
  .logo {
    width: 100px;
  }
  
  .beneficios h2,
  .func-textos h2,
  .marcas-area h3,
  .instalacao-left h2,
  .form-box h2 {
    font-size: 1.5rem;
  }
  
  .card-beneficio {
    padding: 28px 20px;
  }
  
  .func-img-mulher {
    max-width: 300px; /* Ajuste para telas menores */
    transform: scale(1.1); /* Ajuste a escala para telas menores */
  }
  
  .marcas-icones img {
    height: 60px;
    max-width: 120px;
  }
  
  .form-box {
    padding: 32px 20px 28px 20px;
  }
}

/* -------- BENEFÍCIOS -------- */
.beneficios {
  text-align: center;
  padding: 80px 20px; /* Adicionado padding lateral e ajustado o vertical */
  background: #fff;
}
.beneficios h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 50px; /* Aumentado o espaçamento */
  color: #191919;
  letter-spacing: -1px;
}
.cards-beneficios {
  display: flex;
  justify-content: center;
  gap: 40px; /* Reduzido o gap para melhor ajuste */
  flex-wrap: wrap;
  align-items: stretch; /* Alinha os cards na parte superior */
}
.card-beneficio {
  background: #ece8e5;
  border-radius: 22px;
  padding: 40px; /* Padding ajustado */
  width: 280px; /* Largura fixa */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 22px rgba(0,0,0,0.04);
  transition: transform 0.18s;
}
.card-beneficio img {
  width: 70px; /* Tamanho do ícone padronizado */
  height: 70px; /* Tamanho do ícone padronizado */
  object-fit: contain;
  margin-bottom: 28px;
}
.card-beneficio h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 11px;
  color: #191919;
  line-height: 1.1;
  flex-grow: 1; /* Faz o título crescer para alinhar os textos abaixo */
}
.card-beneficio p {
  font-size: 1.06rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
  line-height: 1.32;
}
.card-beneficio:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* -------- FUNCIONAMENTO -------- */
.funcionamento {
  background: #DE8917;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 20px 0 20px; /* Adicionado padding lateral */
}
.star-decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.funcionamento-conteudo {
  display: flex;
  max-width: 1400px;
  margin: auto;
  justify-content: center;
  align-items: flex-end; /* Alinhado à base */
  padding: 0 80px 0 80px; /* Removido padding bottom */
  gap: 60px; /* Reduzido o gap */
  position: relative;
  z-index: 2;
}
.func-textos {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px; /* Adicionado padding para alinhar com a imagem */
}
.func-textos h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.func-textos > p {
  font-size: 1.1rem;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.5;
}
.func-passos {
  display: flex;
  align-items: flex-start; /* Alinhado ao topo */
  justify-content: center;
  gap: 30px;
  margin-top: 0;
}
.passo {
  background: transparent; /* Fundo transparente */
  color: #fff; /* Cor do texto branca */
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Alinhado ao início */
  box-shadow: none; /* Removida a sombra */
  text-align: center;
  padding: 0;
  position: relative;
}
.passo-icone {
  background: #fff;
  border-radius: 50%;
  width: 100px; /* Tamanho da bolinha */
  height: 100px; /* Tamanho da bolinha */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px; /* Espaço entre a bolinha e o texto */
}
.passo img {
  width: 80px; /* Aumentado para ocupar mais espaço da bolinha */
  height: 80px; /* Aumentado para ocupar mais espaço da bolinha */
  object-fit: contain;
  margin-bottom: 0; /* Removida margem */
}
.passo h4 {
  color: #fff; /* Cor do texto branca */
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.1;
}
.passo p {
  color: #fff; /* Cor do texto branca */
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.seta {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 35px; /* Ajuste para alinhar com as bolinhas */
}
.func-img-mulher {
  flex: 0 0 450px; /* Aumentado de 350px para 450px */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0; /* Removido o margin-bottom negativo */
  position: relative;
  z-index: 3;
}
.func-img-mulher img {
  width: 100%; /* Imagem com 100% da largura do container */
  max-width: 500px; /* Largura máxima aumentada de 400px para 500px */
  height: auto;
  object-fit: contain;
  display: block; /* Para remover espaço extra abaixo da imagem */
}



/* -------- GALERIA DE CLIENTES -------- */
.clientes-galeria {
  background: #fff;
  padding: 0;
  text-align: center;
}

.marcas-area {
  background: #fff;
  padding: 80px 20px; /* Padding ajustado */
}
.marcas-area h3 {
  color: #DE8917;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 40px; /* Espaçamento aumentado */
  letter-spacing: -1px;
}
.marcas-icones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.marcas-icones img {
  height: 100px;
  max-width: 250px;
  filter: grayscale(1);
  opacity: 0;
  transform: translateY(50px) scale(0.7) rotate(5deg);
  transition: all 1s cubic-bezier(0.4,0,0.2,1);
}
.marcas-icones.in-view img {
  opacity: 0.9;
  filter: grayscale(0);
  transform: translateY(0) scale(1) rotate(0deg);
}
.marcas-icones.in-view img:nth-child(1) { transition-delay: 0.1s; }
.marcas-icones.in-view img:nth-child(2) { transition-delay: 0.2s; }
.marcas-icones.in-view img:nth-child(3) { transition-delay: 0.3s; }
.marcas-icones.in-view img:nth-child(4) { transition-delay: 0.4s; }
.marcas-icones.in-view img:nth-child(5) { transition-delay: 0.5s; }
.marcas-icones img:hover {
  transform: translateY(-8px) scale(1.15) rotate(-2deg);
  filter: grayscale(0) brightness(1.1);
  opacity: 1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* -------- CARROSSEL -------- */
.carrossel-container {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  height: 400px;
}

.carrossel-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carrossel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carrossel-slide {
  width: 33.333vw;
  flex-shrink: 0;
  height: 100%;
}

.carrossel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carrossel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.carrossel-btn.prev {
  left: 20px;
}

.carrossel-btn.next {
  right: 20px;
}

.carrossel-btn svg {
  color: #333;
}

.carrossel-indicators {
  display: none;
}

@media (max-width: 768px) {
  .carrossel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carrossel-btn.prev {
    left: 10px;
  }
  
  .carrossel-btn.next {
    right: 10px;
  }
  
  .carrossel-slide {
    width: 100vw;
  }
  
  .carrossel-container {
    height: 300px;
  }
  
  .carrossel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    background: #fff;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .indicator.active {
    background: #DE8917;
  }

  .indicator:hover {
    background: #FFA726;
  }
}

/* -------- INSTALAÇÃO -------- */
.instalacao {
  display: flex;
  flex-direction: row;
  background: #fff;
  justify-content: center; /* Centralizado */
  align-items: center;
  padding: 80px 20px; /* Padding ajustado */
  flex-wrap: wrap;
  gap: 80px; /* Espaçamento aumentado */
}
.instalacao-left {
  flex: 1 1 400px; /* Ajustado para melhor responsividade */
  max-width: 500px;
}
.instalacao-left h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 21px;
}
.instalacao-left h3 {
  font-size: 1.4rem;
  color: #DE8917;
  margin-top: 26px;
  font-weight: 700;
  margin-bottom: 0;
}
.instalacao-left p {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.instalacao-right {
  flex: 1 1 350px; /* Ajustado para melhor responsividade */
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}
.video-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.tutorial-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* Mantém o vídeo quadrado */
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.play-btn {
  position: absolute;
  width: 52px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}



/* -------- FORMULÁRIO -------- */
.form-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 100px 20px; /* Adicionado padding lateral */
  position: relative;
}
.form-area .star-formulario {
  position: absolute;
  left: 0; 
  top: 0;
  width: 210px;
}
.form-box {
  background: #fff;
  padding: 54px 38px 38px 38px;
  border-radius: 24px;
  box-shadow: 0 6px 38px rgba(0,0,0,0.09);
  text-align: center;
  max-width: 470px;
  width: 100%; /* Garante que o formulário seja responsivo */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.form-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.form-box p {
  font-size: 1.18rem;
  margin-bottom: 32px;
}
.form-box input {
  width: 92%;
  padding: 18px;
  border: 1.5px solid #ece8e5;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 1.19rem;
  font-family: inherit;
  outline: none;
  background: #fafafa;
  transition: border 0.15s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.form-box input:focus {
  border: 2px solid #FFA726;
}
.form-box button {
  width: 100%;
  background: #FFA726;
  color: #fff;
  border: none;
  padding: 20px 0;
  font-size: 1.23rem;
  font-weight: 700;
  border-radius: 9px;
  margin-top: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.18s;
}
.form-box button:hover { 
  background: #FF9000; 
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px; /* Adicionado padding lateral */
  font-size: 1.24rem;
  margin-top: 0;
  letter-spacing: 0.03em;
}


/* === FIXES: 2025-10-10 (mobile visual polish) === */
:root{
  --safe-x: 20px; /* margem de segurança horizontal para toda a landing no mobile */
}

@media (max-width: 768px){
  /* Margem de segurança padrão nos textos principais */
  .hero-left{ padding-inline: var(--safe-x); }
  .beneficios, .funcionamento, .marcas-area, .clientes-galeria, .duvidas, footer{ padding-left: var(--safe-x); padding-right: var(--safe-x); }

  /* Hero: imagem full-bleed (não afetada pela margem) */
  .hero{ padding-left: 0; padding-right: 0; }
  .hero-right{ margin-left: calc(-1 * var(--safe-x)); margin-right: calc(-1 * var(--safe-x)); }
  .hero-right .hero-img, .hero-right img{ width: 100%; height: auto; display:block; }

  /* Títulos e textos do bloco 'Como funciona' levemente menores para melhor leitura */
  .func-textos h2{ font-size: 1.6rem; line-height: 1.2; }
  .func-textos p{ font-size: 0.95rem; }
  .passo h4{ font-size: 1rem; }
  .passo p{ font-size: .85rem; }

  /* Mulher um pouco maior e interagindo visualmente com os textos acima */
  .func-img-mulher{ width: 78%; max-width: 380px; margin-top: 8px; }

  /* Carrossel: central com foco em tela cheia e rolagem suave */
  .carrossel-container{ height: auto; }
  .carrossel-wrapper{ overflow: visible; }
  .carrossel-track{ 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-inline: var(--safe-x);
  }
  .carrossel-slide{ 
    min-width: 100%;
    scroll-snap-align: center;
  }
  .carrossel-btn{ display:none; } /* Esconde setas no mobile */
}


/* ===== MOBILE PATCH (Emy 2025-10-10) ===== */
/* Escopo: apenas mobile <=768px. Não altera desktop/tablet. */
@media (max-width: 768px){

  /* 1) HERO: imagem atrás do texto, full screen e sem faixa preta */
  .hero{
    position: relative;
    min-height: 100svh;
    height: 100svh;
    padding: 0;
  }
  .hero-left{
    position: relative;
    z-index: 2;
    padding-bottom: 24px;
  }
  .hero-right{
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
    pointer-events: none;
  }
  .hero-right .hero-img,
  .hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* 2) "Como funciona": descer para não tocar a estrela branca */
  .funcionamento{
    padding-top: 120px !important;
  }

  /* 3) Setinhas e bolinhas centralizadas */
  .func-passos{
    align-items: center;
    justify-content: center; /* Adicionado para centralizar as setas e bolinhas */
    flex-wrap: wrap; /* Permite que os itens quebrem a linha */
  }
  .seta{
    margin: 10px 0; /* Ajuste de margem para as setas no mobile */
    transform: rotate(90deg); /* Garante que a seta esteja na vertical */
  }
  .passo{
    margin: 10px 0; /* Ajuste de margem para os passos no mobile */
  }

  /* 4) Aumentar a imagem da mulher 2.5x */
  .func-img-mulher{
    width: 100%; /* Ocupa a largura total disponível */
    max-width: 450px; /* Limite máximo para não ficar muito grande */
    transform: scale(1.25); /* Aumenta em 2.5x o tamanho original (100% * 1.25 = 125% do tamanho original, se o width fosse 100% do container) */
    margin-top: 20px; /* Ajuste para espaçamento */
  }

  /* 5) Carrossel: uma imagem de cada vez e de fora a fora */
  .carrossel-track{
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 0; /* Remove o gap entre os slides */
    padding-inline: 0; /* Remove o padding lateral */
  }
  .carrossel-slide{
    min-width: 100vw; /* Cada slide ocupa 100% da largura da viewport */
    scroll-snap-align: start; /* Alinha o início do slide com o início do container de rolagem */
  }
  .carrossel-container{
    height: auto; /* Altura automática para se ajustar ao conteúdo */
    overflow: hidden; /* Esconde a barra de rolagem */
  }
  .carrossel-wrapper{
    overflow: hidden; /* Esconde a barra de rolagem */
  }
  .carrossel-btn{ display: none; } /* Esconde as setas de navegação */
  .carrossel-indicators{ display: flex; } /* Mostra os indicadores de slide */
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  .func-img-mulher{
    max-width: 300px; /* Ajuste para telas menores */
    transform: scale(1.1); /* Ajuste a escala para telas menores */
  }
}



/* === HOTFIX OVERRIDES === */
@media (max-width: 768px){
  .hero{
    min-height: 100svh !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-left{
    justify-content: center !important;
    text-align: center !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.funcionamento .func-img-mulher img{
  width: clamp(300px, 85vw, 620px) !important;
  height: auto !important;
  object-fit: contain !important;
}


/* === VIDEO: responsivo 16:9 === */
.tutorial-video{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 17px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  display: block;
}


/* === CARROSSEL: override para usar translateX no mobile === */
@media (max-width: 768px){
  .carrossel-wrapper{ overflow: hidden !important; }
  .carrossel-track{
    overflow-x: hidden !important;
    scroll-snap-type: none !important;
  }
  .carrossel-slide{ min-width: 100vw; }
}
