/* Reset padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif; /* Fonte moderna e profissional */
    line-height: 1.6;
    background-color: #f4f6f9; /* Fundo claro, elegante */
    color: #333;
  }
  
  .hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(#3b82f6,#2e7d32);
    padding: 20px;
  }
  
  .hero-container {
    max-width: 850px;
    width: 100%;
    text-align: center;
    background: #ffffff; /* Fundo branco para contraste */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Sombra sutil para um toque profissional */
  }
  
  .hero-logo {
    margin-bottom: 20px;
    max-width: 150px;
  }
  
  h1 {
    font-size: 1.8rem;
    color: #2c3e50; /* Azul escuro elegante */
    font-weight: 700; /* Texto destacado */
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  p {
    font-size: 1.1rem;
    color: #555; /* Texto mais claro */
    margin-bottom: 20px;
  }
  
  ul {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
    margin-top: 24px;
  }
  
  ul li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra mais profunda para o vídeo */
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
  }
  
  .cta-button {
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #3b82f6, #2e7d32); /* Degradê moderno azul */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 25px;
    transition: all 0.3s ease-in-out; /* Transição suave */
    text-decoration: none;
  }

  .cta-button a {
    text-decoration: none;
    color: #f4f6f9;
  }
  
  .cta-button:hover {
    background: linear-gradient(90deg, #2563eb, #1d4ed8); /* Degradê mais escuro no hover */
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5); /* Destaque sutil no hover */
  }












  .sales-info {
    background: linear-gradient(180deg, #eafaf1, #d4f4e0); /* Fundo com degradê verde suave */
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 20px auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    max-width: 1200px;
  }
  
  .sales-title {
    font-size: 1.6rem;
    color: #2e7d32; /* Verde escuro persuasivo */
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.4;
  }
  
  .payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .payment-methods img {
    height: 40px;
    opacity: 0.8;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .payment-methods img:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  
  /* Cards de benefícios */
  .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  
  .benefit-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #fff; /* Fundo branco para contraste */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Destaque no hover */
  }
  
  .benefit-card img {
    height: 48px;
    margin-bottom: 15px;
  }
  
  .benefit-card h3 {
    font-size: 1.2rem;
    color: #2e7d32; /* Verde persuasivo */
    margin-bottom: 10px;
  }
  
  .benefit-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }















  /* Seção principal */
.testimonials-section {
    background: linear-gradient(180deg, #e3f8e8, #b8e994); /* Gradiente moderno */
    
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .testimonials-title {
    font-size: 1.8rem;
    color: #2e7d32; /* Verde profissional */
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.4;
  }
  
  /* Container de cards */
  .testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  /* Cards dos prints */
  .testimonial-card {
    flex: 1;
    min-width: 450px;
    max-width: 580px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite; /* Efeito de movimento */
  }
  
  .testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  /* Animação de flutuação */
@keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }








  .depoimentos {
    padding: 50px 20px;
    background-color: #9bd17c;
}

.depoimentos-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
}

.depoimentos-titulo::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #fff;
    margin: 10px auto;
    border-radius: 2px;
}

.depoimentos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.depoimento {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    max-width: 700px;
    overflow: hidden;
}

.depoimentos-textos {
    padding: 20px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.depoimentos-textos strong {
    color: #2c8f4c;
}

.depoimentos-textos a {
    color: #2c8f4c;
    text-decoration: none;
    font-weight: bold;
}

.depoimentos-textos a:hover {
    text-decoration: underline;
}

.depoimentos-videos {
    background: #000;
    padding: 0;
}

.depoimentos-videos iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}



#titulo2{
margin-left: 100px;
margin-right: 100px;
font-size: 20px;
padding: 50px;
text-align:center;
color: #fff;
margin-bottom: 0%;


}



#buton-2{
    display: block;
    width: 50%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #3b82f6, #2e7d32); /* Degradê moderno azul */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 0px;
    transition: all 0.3s ease-in-out; /* Transição suave */
    text-decoration: none;
}


















.resultados {
    background-color: #eaf8e6;
    padding: 50px 20px;
    text-align: center;
}

.resultados-titulo {
    font-size: 1.6rem;
    color: #007f2d;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.resultados-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.resultado-item {
  background: linear-gradient(135deg, #0ff586, #006400);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 24px -2px #07F944;
    text-align: center;
    max-width: 300px;
}

.resultado-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.resultado-numero {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.resultado-texto {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}





















/* Estilo geral da sessão */
.support-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f7f8; /* Fundo azul claro similar à imagem */
  padding: 60px 20px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Container de conteúdo */
.support-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Texto da seção */
.support-text {
  max-width: 600px;
  text-align: left;
}

.support-text h2 {
  font-size: 2rem;
  color: #0066cc; /* Azul destacado */
  font-weight: bold;
  margin-bottom: 20px;
}

.support-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.support-text strong {
  color: #0066cc; /* Azul forte para palavras em destaque */
}

/* Logo do Zoom */
.zoom-logo {
  max-width: 120px;
  margin-bottom: 20px;
}

/* Imagem de suporte */
.support-image {
  flex: 1;
  text-align: center;
}

.support-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

















.about-expert {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 40px auto;
}

.about-expert h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #0056b3; /* Azul destacado */
  margin-bottom: 30px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expert-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.expert-image {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.expert-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.caption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.expert-text {
  flex: 2;
}

.expert-text p {
  margin-bottom: 20px;
}

.expert-text strong {
  color: #0056b3; /* Azul forte para destaque */
}




















.method-section {
  background-color: #e6f7ef; /* Verde suave */
  padding: 40px 20px;
}

.method-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.method-section h2 {
  font-size: 2rem;
  color: #1a535c; /* Verde escuro */
  margin-bottom: 20px;
}

.method-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}













.audience-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
}

.audience-section h2 {
  font-size: 2rem;
  color: #2a2a2a;
  margin-bottom: 30px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-item {
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.audience-item img {
  max-width: 80px;
  margin-bottom: 15px;
}

.audience-item h3 {
  font-size: 1.2rem;
  color: #1a535c;
  margin-bottom: 15px;
}

.audience-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
}

.cta-button {
  margin-top: 40px;
  box-shadow: 0px 0px 40px -10px #212121;
}

.cta-button .btn {
  display: inline-block;
  background-color: #28a745;
  color: #ffffff;
  text-transform: uppercase;
  padding: 15px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0px 0px 10px 1px #FFFFFF;
}

.cta-button .btn:hover {
  background-color: #218838;
}

.cta-button p {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #fff;
}

























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

.comparison-section {
  background-color: #ffffff;
  padding: 40px 20px;
}

.comparison-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2a2a2a;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.comparison-column {
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.comparison-heading {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-cross {
  color: #d9534f;
  font-size: 1.5rem;
}

.icon-check {
  color: #28a745;
  font-size: 1.5rem;
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.comparison-list .icon-cross,
.comparison-list .icon-check {
  flex-shrink: 0;
}















/* Seção Estratégia */
.strategy-section {
  background-color: #d5f5dc;
  padding: 40px 20px;
}

.strategy-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.strategy-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.strategy-content {
  font-size: 1rem;
  color: #2c2c2c;
}

.strategy-paragraph {
  margin-bottom: 20px;
  text-align: justify;
}

.strategy-paragraph strong {
  color: #0d730d;
  font-weight: bold;
}





                                                            /*sessão metodo */





a {
  text-decoration: none;
  color: #007bff; /* Cor do link */
}

a:hover {
  text-decoration: underline;
}

/* Seção principal */
.metodo-viva {
  background-color: #f9f9f9; /* Fundo leve */
  padding: 2rem 1rem;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Título principal */
.metodo-title {
  font-size: 1.8rem;
  color: #00a14a; /* Verde profissional */
  margin-bottom: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 40px;
}

/* Bloco de cada fase */
.fase {
  background: #ffffff;
  border: 2px solid #00a14a;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left; /* Alinha o texto à esquerda */
}

.fase-title {
  font-size: 1.5rem;
  color: #00a14a;
  font-weight: bold;
  margin-bottom: 1rem;
}

.fase-description {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.fase-link {
  color: #00a14a; /* Verde para o link */
  font-weight: bold;
}

.fase-link:hover {
  text-decoration: underline;
}












/* Container principal */
.benefits-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

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

/* Título */
.benefits-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #1a7f1a;
  margin-bottom: 30px;
}

/* Lista de benefícios */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  font-size: 18px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #1a7f1a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}















.story-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Estilo do conteúdo de texto */
.text-content {
  flex: 1 1 50%;
  color: #333;
}

.text-content h3 {
  font-size: 22px;
  color: #1a7f1a;
  margin: 20px 0 10px;
  font-weight: bold;
}

.text-content p {
  margin-bottom: 20px;
}

.text-content strong {
  color: #000;
  font-weight: bold;
}

/* Estilo da imagem única */
.single-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  border: 2px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}












/* Estilo geral da seção */
.learning-section {
  padding: 20px;
  background-color: #9bd17c;
  font-family: Arial, sans-serif;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

/* Wrapper dos cartões */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsivo */
  gap: 20px;
  justify-items: center;
}

/* Estilo dos cartões */
.card {
  background: linear-gradient(135deg, #0ff586, #006400);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  text-align: left;
}

.card-header {
  padding: 15px;
  text-align: center;
}

.card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}

.card-subtitle {
  font-size: 17px;
  opacity: 0.9;
  color: white;
}

/* Botão para expandir conteúdo */
.card-toggle {
  width: 100%;
  background-color: #006400;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.card-toggle:hover {
  background-color: #004d33;
}

/* Conteúdo do cartão */
.card-content {
  padding: 15px;
  background-color: #ffffff;
  color: #333;
  display: none; /* Inicialmente oculto */
  font-size: 14px;
  line-height: 1.5;
}














.financial-learning {
  background-color: #f9f9f9;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.financial-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #0b3d0b;
  margin-bottom: 40px;
}

.financial-title span {
  color: #145a14;
  font-weight: normal;
}

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

/* Estilo do grid de cartões */
.financial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Estilo dos cartões */
.financial-card {
  background: linear-gradient(180deg, #e6f4e6 0%, #ffffff 100%);
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Ícones dos cartões */
.financial-icon {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

/* Texto dos cartões */
.financial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Classes específicas para cada cartão */
.card-mei {
  border-top: 4px solid #007bff;
}

.card-benefits {
  border-top: 4px solid #28a745;
}

.card-taxes {
  border-top: 4px solid #ffc107;
}

.card-fgts {
  border-top: 4px solid #17a2b8;
}















.investment-section {
  background: linear-gradient(135deg, #007bff, #00c853);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.investment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Estilo das Imagens */
.investment-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.investment-image {
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  
  padding: 10px;
  transition: all 0.4s ease-in-out;
  
}

.investment-image:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Estilo do Texto */
.investment-text {
  max-width: 700px;
  text-align: center;
}

.investment-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.investment-title span {
  color: #00ffb9; /* Destaque com contraste */
}

.investment-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.8;
}

.investment-price {
  margin-bottom: 30px;
}

.price-highlight {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffeb3b, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Efeito de texto gradiente */
}

.price-note {
  font-size: 16px;
  color: #f0f0f0;
}


/* Botão de Ação */
.investment-button {
  display: inline-block;
  background: #00c853;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.investment-button:hover {
  background: #007bff;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}





















.risk-free-section {
  background: #ffffff; /* Alterado para branco */
  color: #333;
  padding: 60px 20px;
}

.risk-free-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.risk-free-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.risk-free-badge-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05); /* Fundo sutil para destaque da imagem */
  padding: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Estilo do Conteúdo */
.risk-free-content {
  flex: 2 1 500px;
  text-align: left;
}

.risk-free-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.risk-free-title span {
  color: #007bff; /* Azul para dar destaque */
}

.risk-free-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.risk-free-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.risk-free-benefits li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.risk-free-benefits strong {
  color: #007bff; /* Azul para destacar */
}

.risk-free-call-to-action {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.risk-free-button {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.risk-free-button:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}













/* Estilo geral da seção */
.faq-section {
  padding: 40px 20px;
  background-color: #f5f7fa;
  font-family: 'Arial', sans-serif;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  color: #2a2a2a;
}

.faq-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* Estilo dos itens da FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #f9f9f9;
  color: #333;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #e9e9e9;
}

.faq-icon {
  font-size: 18px;
  color: #555;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}













/* Estilo geral do footer */
.footer-section {
  background-color: #e8f5f5;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

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

.footer-logo {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: bold;
  color: #00695c;
}

.footer-info,
.footer-links,
.footer-address {
  flex: 1 1 30%;
  margin-bottom: 20px;
}

.footer-info p,
.footer-address p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #00695c;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background-color: #25d366;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.footer-whatsapp img {
  max-width: 20px;
}

.footer-whatsapp:hover {
  background-color: #1da851;
}
















.whatsapp-float {
  position: fixed; /* Botão flutua na tela */
  bottom: 20px; /* Distância da parte inferior da tela */
  right: 20px; /* Distância da parte direita da tela */
  z-index: 1000; /* Fica acima de outros elementos */
}

.whatsapp-float a {
  display: block;
  width: 60px; /* Largura do ícone */
  height: 60px; /* Altura do ícone */
}

.whatsapp-float img {
  width: 100%; /* Ajusta a imagem ao tamanho do container */
  height: auto;
  border-radius: 50%; /* Deixa o ícone redondo */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Adiciona sombra */
  transition: transform 0.3s ease; /* Animação para o hover */
}

.whatsapp-float img:hover {
  transform: scale(1.1); /* Aumenta o tamanho no hover */
}






















/* Ajustes de responsividade */
@media (min-width: 768px) {
  .cards-wrapper {
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
  }
}





























  @media (max-width: 768px) {



    h1 {
      font-size: 1.5rem;
    }
  
    p {
      font-size: 1rem;
    }
  
    ul li {
      font-size: 0.9rem;
    }
  
    .cta-button {
      font-size: 1rem;
    }

    .sales-title {
        font-size: 1.3rem;
      }
    
      .benefit-card {
        max-width: 100%;
      }


      .testimonials-container {
        flex-direction: column;
        gap: 30px;
      }
    
      .testimonials-container {
        flex-direction: column; /* Empilha os cards verticalmente */
        gap: 15px;
      }
    
      .testimonial-card {
        min-width: 100%; /* O card ocupa 100% da largura disponível */
        max-width: 100%; /* Remove restrição de largura */
      }
    
      .testimonials-title {
        font-size: 1.5rem;
      }
    
    
      .method-section h2 {
        font-size: 1.5rem;}
    
    
      .testimonials-title {
        font-size: 1.5rem;
      }


      .resultados-titulo {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .resultado-item {
        padding: 15px;
    }

    .resultado-texto {
        font-size: 0.9rem;
    }

#titulo2{

  margin-left: 0px;
  margin-right: 0px;
  padding: 5px;
}


#buton-2{
  display: block;
  width: 85%;
  padding: 19px;
  font-size: 1.2rem;}

    .method-section .container {
      flex-direction: column;
      text-align: center;
    }
  
    .text-content {
      margin-bottom: 20px;
    }



    .expert-content {
      flex-direction: column;
      text-align: center;
    }
  
    .expert-image {
      max-width: 100%;
    }
  
    .expert-text {
      text-align: justify;
    }

    .audience-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .audience-section h2 {
      font-size: 1.8rem;
    }
  
    .audience-item h3 {
      font-size: 1rem;
    }
  
    .audience-item p {
      font-size: 0.85rem;
    }




    .comparison-grid {
      grid-template-columns: 1fr;
    }
  
    .comparison-title {
      font-size: 1.8rem;
    }
  
    .comparison-list li {
      font-size: 0.95rem;
    }




    .strategy-title {
      font-size: 1.8rem;
    }
  
    .strategy-paragraph {
      font-size: 0.95rem;
    }


    .responsive-image {

    width: 100%;
  height: 100%;
  object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
  border-radius: 8px;

  }

  



  .metodo-title {
    font-size: 1.4rem;
  }

  .fase-title {
    font-size: 1.2rem;
  }

  .fase-description {
    font-size: 0.9rem;
  }

  .fase {
    padding: 1rem;
  }



  .metodo-title {
    font-size: 1.5rem;
  }

  .fase-title {
    font-size: 1.2rem;
  }

  .fase-description {
    font-size: 0.9rem;
  }

  .fase {
    padding: 1rem;
  }

.fase-image {
    max-width: 100%; /* Garante que a imagem ocupe 100% da largura disponível */
  }


  .benefits-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .benefit-item {
    font-size: 16px;
    padding: 12px 16px;
  }


  .benefit-item:hover {
    border-color: #1a7f1a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  .benefit-item{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  }




  .container {
    flex-direction: column;
  }

  .text-content {
    flex: 1 1 100%;
  }

  .single-image {
    flex: 1 1 100%;
    margin-top: 20px;
  }

  .text-content h3 {
    font-size: 18px;
  }

  .text-content p {
    font-size: 14px;
  }



  .cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Layout dinâmico no mobile */
  }

  .card-content {
    font-size: 13px;
  }

  .section-title {
    font-size: 20px;
  }


  .financial-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .financial-card {
    padding: 15px;
  }

  .financial-text {
    font-size: 14px;
  }


  .investment-container {
    text-align: center;
  }

  .investment-title {
    font-size: 26px;
  }

  .investment-description {
    font-size: 16px;
  }

  .price-highlight {
    font-size: 32px;
  }

  .investment-button {
    width: 100%;
    padding: 12px;
  }

  .risk-free-container {
    flex-direction: column;
    text-align: center;
  }

  .risk-free-content {
    text-align: center;
  }

  .risk-free-title {
    font-size: 28px;
  }

  .risk-free-description {
    font-size: 16px;
  }

  .risk-free-benefits li {
    font-size: 14px;
  }

  .risk-free-button {
    width: 100%;
    padding: 12px;
  }




  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-info,
  .footer-links,
  .footer-address {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }

  .footer-logo-img {
    max-width: 80px;
  }

  .footer-whatsapp {
    font-size: 12px;
    padding: 8px 15px;

  }


  .about-expert h2 {
    font-size: 26px;
    }



    .whatsapp-float {
      bottom: 10px;
      right: 10px;
    }
  
    .whatsapp-float img {
      width: 50px; /* Ajusta para telas menores */
    }
  }