/*primeira parte do site*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #000;
  background-color: #a8a8a8;
}

.hero {
  background-image: url('capa333.png'); /* Substitua pelo seu arquivo */
  height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 400px;
  margin-bottom: 30px;
}

.imagem-central {
  width: 500px;
  max-width: 90%;
  margin-bottom: 25px;
}

h1 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}

h1 span {
  font-weight: 700;
  color: #3c518e;
}

p {
  max-width: 600px;
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

p strong{
  color: #304689;
}
.botao-pulsar {
  background-color: #3c518e;
  color: white;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulsar 1.5s infinite;
}

.botao-pulsar:hover {
  background-color: #000;
}

/* Efeito de pulsar */
@keyframes pulsar {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(15, 46, 18, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 70, 47, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 70, 47, 0); }
}

/* Responsividade */
@media (max-width: 768px) {
  h1 {
    font-size: 1.2rem;
  }
  p {
    font-size: 0.85rem;
  }
  .imagem-central {
    width: 280px;
  }

  .logo {
  width: 300px;
  margin-bottom: 30px;
}

.hero {
  background-image: url('capa\ celular.png'); /* Substitua pelo seu arquivo */
  height: 95vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

p {
  max-width: 600px;
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
}


}

@media (min-width: 1024px) and (max-width: 1366px) {

  .hero {
  background-image: url('capa333.png'); /* Substitua pelo seu arquivo */
  height: 140vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

}


/*segunda parte do site*/


.porque-section {
  background-color: #a8a8a8;
  color: #545454;
  padding: 80px 10%;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.imagem {
  flex: 1 1 45%;
  text-align: center;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.imagem img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.texto {
  flex: 1 1 45%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.texto h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.texto h2 span {
  color: #3c518e;
  font-weight: 700;
}

.texto p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.texto ul {
  list-style: disc;
  padding-left: 20px;
}

.texto ul li {
  margin-bottom: 8px;
}

/* Estado visível (após scroll) */
.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsivo */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .imagem, .texto {
    flex: 1 1 100%;
    text-align: center;
    transform: translateY(30px);
  }

  .texto ul {
    text-align: left;
    display: inline-block;
  }
  .texto p {
 font-size: 18px;
}
}


/*video*/

.benefits-section {
  position: relative;
  background-color: #797979;
  height: 90vh;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #fff;
  font-family: sans-serif;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
 
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Lado Esquerdo */
.media {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
}

.thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.thumbnail img {
  width: 100%;
  min-width: 600px;
  display: block;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  background: rgba(255, 255, 255, 0.7);
  color: #304689;
  border-radius: 50%;
  padding: 20px;
}

/* Video */
video {
  width: 350px;
  border-radius: 8px;
  margin-top: 20px;
}

/* Lado Direito */
.benefits {
  flex: 1;
  min-width: 300px;
}

.benefits h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.benefits h2 span {
  font-weight: bold;
  color: #304689;
  
}




.benefit-box {
background: #d9d9d9;
  color: #000;
  padding: 10px 15px;         /* Menor padding */
  border-radius: 6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
  font-size: 14px;            /* Texto menor */
  line-height: 1.3;
}

.benefit-box:hover {
  background: #ffb733;
  transform: scale(1.02);
}

.benefit-icon {
  width: 40px;
  height: 40px;
}

/* Responsivo: Celular */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .media {
    order: 1;
    max-width: 100%;
  }

  .benefits {
    order: 2;
  }

  .benefits h2 {
    text-align: center;
  }

  .benefit-box {
    justify-content: center;
    text-align: center;
  }

  /*video {
  width: 250px;
  border-radius: 8px;
  margin-top: 20px;
  
}*/

video {
    display: block;
    margin: 20px auto; /* Centraliza o vídeo */
   max-width: 250px;    /* Garante que não ultrapasse a tela */
    height: auto;
  }

.thumbnail img {
  width: 100%;
  min-width: 400px;
  display: block;
  border-radius: 8px;
}

.benefits-section {
  position: relative;
  z-index: 1; /* Garante que fique no fluxo da página */
  height: 175vh;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 80px; /* Aumentado padding inferior */
  color: #fff;
  font-family: sans-serif;
  overflow: hidden; /* Impede que elementos escapem */
}

.benefit-box p{
font-size: 16px;
}

.benefit-box {
background: #d9d9d9;
  color: #000;
  padding: 8px 10px;         /* Menor padding */
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
  font-size: 14px;            /* Texto menor */
  line-height: 1.3;
}



}

@media (min-width: 1024px) and (max-width: 1366px) {

  .benefits-section {
  position: relative;
  background-color: #797979;
  height: 120vh;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #fff;
  font-family: sans-serif;
}


}


/*fim video*/



.videos-section {
  background-color: #243026;
  
  color: #fff;
  padding: 60px 10%;
  
}

.videos-container {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.playlist {
  flex: 1 1 280px;
  max-width: 400px;
}

.playlist h3 {
  font-weight: 200px;
  margin-bottom: 20px;
  color: #ccc;
}


.titulo p{
  font-size: 10px;
}
.playlist span {
  font-weight: 400;
  color: #999;
}

.playlist ul {
  list-style: none;
  padding: 0;
}

.playlist li {
  display: flex;
  align-items: center;
  background-color: #2a2a2a;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.playlist li.active,
.playlist li:hover {
  background-color: #3c518e;
}

.playlist img {
  width: 60px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.playlist div {
  display: flex;
  flex-direction: column;
}

.titulo {
  font-size: 0.90rem;
  font-weight: 400;
}

.playlist span {
  font-size: 0.85rem;
  color: #ddd;
}

.player {
  flex: 1 1 600px;
}

.player video {
  width: 80%;           
  max-width: 600px;     
  height: 320px;       
  border-radius: 8px;
  background: #000;
  display: block;
  margin: 0 auto;       
}


/* Responsivo */
@media (max-width: 768px) {
  .videos-container {
    flex-direction: column;
    align-items: center;
  }

  .playlist {
    max-width: 100%;
    width: 100%;
  }

  .player {
    width: 100%;
  }
  .videos-section {
  background-color: #1b1b1b;
  color: #fff;
 
  height: 100vh;
}
}


.carrossel {
  text-align: center;
  background-color: #797979;
  padding: 40px 0;
  height: 70vh;
}

.carrossel h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.carrossel h2 span:nth-child(1) {
  color: #304689;
}

.slider {
  position: relative;
  width: 80%;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  flex-shrink: 0;
}



.btn-especialista {
  display: inline-block;
  margin-top: 30px;
  background-color: #3c518e;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.btn-especialista:hover {
  background-color: #ffb733;
}

/* Responsivo */
@media (max-width: 768px) {
  .slider {
    width: 95%;
    height: 250px;
  }

  .slides img {
    height: 250px;
  }

  .carrossel {
  text-align: center;
  background-color: #797979;
  padding: 40px 0;
  height: 70vh;
}
}


@media (min-width: 1024px) and (max-width: 1366px) {

  .carrossel {
  text-align: center;
  background-color: #797979;
  padding: 40px 0;
  height: 110vh;
}

}




.fundou{
  background-color: #a8a8a8;
}

.produtos-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    
}

.titulo-principal {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #3980b9;
}

.titulo-principal span {
    color: #545454;
}

.subtitulo {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.icones-cabecalho {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-bottom: 20px;
    gap: 10px;
}

.icone-coluna img {
    width: 60px;
    height: auto;
    margin-bottom: 5px;
}

.icone-coluna p {
    font-size: 14px;
    color: #fff;
}

/* Linha dos produtos */
.linha-produto {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.coluna {
    padding: 10px;
    
}

.imagem-produto {
    width: 100px;
    height: auto;
    margin-bottom: 8px;
}

.produto-nome {
    font-weight: bold;
    font-size: 14px;
}

.linha-produto p{
  color: #fff;
}

/* Reduz o tamanho da imagem da coluna de custo */
.linha-produto .coluna:last-child img {
    width: 30px;
    height: auto;
}


/* RESPONSIVO */
@media screen and (max-width: 768px) {
    .icones-cabecalho,
    .linha-produto {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .linha-produto {
        border-top: 1px solid #444;
        margin-bottom: 30px;
    }

    .coluna {
        padding: 15px 0;
    }

    .icone-coluna p {
    font-size: 19px;
}

.produto-nome {
    font-weight: bold;
    font-size: 19px;
}

.coluna p{
    
    font-size: 19px;
}

}


.botao-orcamento-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.botao-orcamento {
    background-color: #3c518e; /* Cor de fundo (laranja queimado) */
    color: #fff; /* Texto branco */
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botao-orcamento:hover {
    background-color: #000; /* Tom mais escuro no hover */
}
.botao-orcamento {
    text-decoration: none;
    display: inline-block;
}




.produtos {
  padding: 40px 20px;
  text-align: center;
  background-color: #a8a8a8;
}

.titulo {
  font-size: 25px;
  margin-bottom: 40px;
  color: #304689;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.produto {
  background-color: #d9d9d9;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.produto img {
  max-width: 250px;
  height: auto;
  margin-bottom: 10px;
}

.toggle-btn {
  background-color: #304689;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  border-radius: 5px;
}

.descricao {
  display: none;
  text-align: left;
  margin-top: 10px;
}

.saiba-mais {
  display: inline-block;
  margin-top: 10px;
  background: #fff;
  color: #2789c3;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

/* Animação de scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0px);
}

/* Seção de segmentos */
.segmentos {
  padding: 60px 20px;
  text-align: center;
  background-color: #797979;
  color: #fff;
}

.botao-topo,
.botao-final {
  background-color: #81899c;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  /*margin: 20px auto;*/
  /*display: inline-block;*/
}

.linha-branca {
  height: 1px;
  background-color: white;
  border: none;
  margin: 30px auto;
  width: 80%;
}

.titulo-segmentos {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.descricao {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.icones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.icone-box {
  text-align: center;
}

.icone-box img {
  width: 64px;
  height: auto;
  margin-bottom: 10px;
}

.icone-box p {
  margin: 0;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
  .icones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

.descricao p{
  font-size: 19px;
}
.descricao reveal p{

  font-size: 19px;
}

.icone-box p{
  font-size: 19px;
}
}

@media (max-width: 480px) {
  .icones-grid {
    grid-template-columns: 1fr;
  }
}

/* Efeito de aparição com scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



.numeros {
  padding: 60px 20px;
  text-align: center;
  background: #a8a8a8;
  color: #fff;
}

.numeros .titulo {
  font-size: 28px;
  margin-bottom: 40px;
  color: #fff;
}

.numeros-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.numero-box {
  min-width: 200px;
}

.numero {
  font-size: 40px;
  font-weight: bold;
  color: #2a3352;
}

.numero + p {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.4;
  color: #545454;
}

/* Responsivo */
@media (max-width: 768px) {
  .numeros-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Animação de entrada */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



  .faq-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #a8a8a8;
  }

  .faq-container h2{
    color: #000;
    text-align: center;
  }
  .faq-title {
    font-weight: bold;
    margin-bottom: 5px;
    
  }
  .faq-question {
    background-color: #e0e0e0;
    padding: 15px 20px;
    margin: 10px 0;
    cursor: pointer;
    font-weight: 700;
    border-radius: 10px;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-question:hover {
    background-color: #fff;
  }
  .faq-answer {
    background: white;
    color: #000;
    padding: 15px 20px;
    border-radius: 0 0 10px 10px;
    display: none;
    font-weight: normal;
  }
  .faq-answer strong {
    font-weight: 700;
  }
  .faq-question.active {
    border-radius: 10px 10px 0 0;
  }
  .faq-question::after {
    content: "▼";
    font-size: 16px;
    color: white;
    transition: transform 0.3s ease;
  }
  .faq-question.active::after {
    transform: rotate(180deg);
  }
  .button-contact {
    margin: 40px auto 0;
    display: block;
    background-color: #e0e0e0;
    border: none;
    border-radius: 20px;
    padding: 12px 30px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
  }
  .button-contact:hover {
    background-color: #fff;
  }
  .faq-subtitle {
    margin-top: 40px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
  }

 
  @media (max-width: 768px) {
 
    .faq-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #a8a8a8;
  }

.faq-container h2{
  text-align: center;
}

.faq-question {
    background-color: #e0e0e0;
    padding: 10px 25px;
    margin: 10px 0;
    cursor: pointer;
    font-weight: 600;
    border-radius: 25px;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-container {
    max-width: 700px;
    height: 70vh;
    margin: 0 auto;
    background-color: #a8a8a8
   
  }
  
  }



  /*depoimentos*/

 
.testimonial-section {
    width: 90%; 
    max-width: 600px; /* Largura máxima para a área do carrossel */
    padding: 20px;
    text-align: center; /* Centraliza o título e outros elementos de texto */
    
    /* Centralização horizontal da SEÇÃO em relação ao body/container pai */
    margin-left: auto;
    margin-right: auto;
    
    /* Adicione um espaçamento no topo e na base para que a seção não fique grudada */
    margin-top: 50px; 
    margin-bottom: 50px;


    
  
}

/* Container principal do Carrossel */
.carousel-container {
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* **NOVO:** Garante que o carrossel em si não tenha mais margem/padding que possa atrapalhar a centralização */
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Trilha de Depoimentos - Usada para o movimento */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Transição suave */
}

/* Estilo do Card de Depoimento */
.testimonial-card {
    min-width: 100%; /* Garante que ocupe a largura total do container */
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ícone de Foto (Letra L no círculo vermelho) */
.profile-icon {
    width: 60px;
    height: 60px;
    background-color: #d94336; /* Cor vermelha/laranja */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Estrelas */
.stars {
    color: #222; /* Amarelo das estrelas do Google */
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px; /* Espaçamento entre as estrelas */
}

/* Comentário */
.comment {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
    max-width: 80%; /* Para que o texto não ocupe 100% da largura, como na imagem */
}

/* Nome do Autor */
.author {
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

.section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}


.testimonial-section {
    width: 90%; 
    max-width: 600px;
    padding: 20px;
    text-align: center;
    
    /* Centralização Horizontal */
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px; 
    margin-bottom: 50px; 
    
    /* Fundo transparente (sem o laranja) */
    background-color: transparent;
    border-radius: 0;
}

/* Estilo para o título da seção de avaliações */
.section-title {
    font-size: 28px;
    color: #545454; /* Cor escura */
    margin-bottom: 25px;
    font-weight: 600;
}

/* Container principal do Carrossel (o card branco) */
.carousel-container {
    overflow: hidden; /* Esconde os depoimentos que estão fora de vista */
    border-radius: 10px;
    background-color: #fff; /* Fundo branco do card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Trilha de Depoimentos - Usada para o movimento */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Transição suave */
}

/* Estilo do Card de Depoimento */
.testimonial-card {
    min-width: 100%; /* Garante que ocupe a largura total do container */
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ícone de Foto (Letra L no círculo vermelho) */
.profile-icon {
    width: 60px;
    height: 60px;
    background-color: #d94336; /* Cor vermelha/laranja */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Estrelas */
.stars {
    color: #fbbc04; /* Amarelo das estrelas do Google */
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Comentário */
.comment {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
    max-width: 80%;
}

/* Nome do Autor */
.author {
    font-weight: bold;
    color: #333;
    font-size: 15px;
}


@media (max-width: 768px){

  .section-title {
    font-size: 25px;
    color: #545454;  /* Cor escura */
    margin-bottom: 25px;
    font-weight: 600;
}
}



.fundo{
  background-color: #797979;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    
  }

  .image-wrapper {
    position: relative;
    flex: 1 1 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
   
  }

  .blob {
    position: absolute;
    width: 320px;
    height: 320px;
  
    z-index: 0;
  }

  .image-wrapper img {
    position: relative;
    max-width: 550px;
    border-radius: 20px;
   
    z-index: 1;
  }

  .form-wrapper {
    flex: 1 1 100%;
    max-width: 500px;
    background: #2a3352;
    border-radius: 20px;
    padding: 40px 40px 50px;
    box-sizing: border-box;
    color: white;
    margin: 0 auto;
  }

  .form-wrapper h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px 0;
    text-align: right;
  }

  .form-wrapper h2 strong {
    font-weight: 900;
  }

  .form-wrapper p.subtitle {
    font-weight: 400;
    font-size: 14px;
    margin: 0 0 30px 0;
    text-align: right;
  }

  label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
  }

  input[type="text"],
  input[type="email"],
  select {
    width: 100%;
    border-radius: 20px;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }

  input[type="checkbox"] {
    margin-right: 10px;
  }

  .checkbox-label {
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  .privacy-text {
    font-size: 12px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
  }

  button {
    width: 100%;
    background: #2789c3;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background: #ffb733;
  }

  /* Responsivo */
  @media (min-width: 769px) {
    .section-container {
      flex-wrap: nowrap;
    }

    .image-wrapper {
      flex: 1;
      max-width: 450px;
      margin-bottom: 0;
    }

  

  }

  @media (max-width: 768px) {
    .image-wrapper {
      order: -1;
      margin-bottom: 30px;
    }

    .form-wrapper h2,
    .form-wrapper p.subtitle {
      text-align: center;
    }

    .blob {
      width: 280px;
      height: 280px;
    }

    .image-wrapper img {
      max-width: 300px;
    }

    .form-wrapper {
      padding: 30px 20px;
    }

      .form-wrapper {
      flex: 1;
      max-width: 500px;
    }

    .form-wrapper p.subtitle {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 30px 0;
    text-align: right;
    text-align: center;
  }

  .form-wrapper p.subtitle {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 30px 0;
    text-align: right;
    text-align: center;
  }

  .checkbox-label {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
  }


  /* ========================================= */
/* SEÇÃO DE BOTÕES DE CONTATO */
/* ========================================= */

.contact-buttons-section {
    background-color: #797979; /* Fundo escuro */
    padding: 20px 0 50px;
    text-align: center;
}

.contact-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Espaço entre os botões */
}

.contact-button {
    text-decoration: none;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    width: 250px; /* Largura fixa para os botões */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, opacity 0.2s;
}

.contact-button i {
    margin-right: 10px;
}

.contact-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Estilo TELE-VENDAS (Vermelho/Laranja Escuro) */
.tele-vendas {
    background-color: #3980b9; /* Cor do botão TELE-VENDAS */
}

/* Estilo WHATSAPP (Verde) */
.whatsapp {
    background-color: #25d366; /* Cor do botão WHATSAPP */
}

/* ========================================= */
/* FOOTER (RODAPÉ) */
/* ========================================= */

.main-footer {
    background-color: #1a1a1a; /* Fundo escuro */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333; /* Linha divisória sutil */
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.certifications {
    margin-bottom: 30px;
}

.certifications p, .contacts-social p {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}

.certs-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.certs-icons img {
    width: 60px; /* Ajuste o tamanho conforme o real */
    height: auto;
    background-color: white; /* Simula o fundo branco dos logos */
    border-radius: 50%;
    padding: 5px;
}

/* Contatos e Social */
.contacts-social {
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.contact-item {
    font-size: 16px;
}

.contact-item i {
    margin-right: 8px;
    color: #2789c3; /* Laranja para os ícones */
}

.contact-item.phone-item {
    color: #2789c3; /* Cor laranja para o telefone */
}



/* Ícones Sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #2789c3; /* Laranja no hover */
}



@media (max-width: 768px){

.main-footer {
    background-color: #d9d9d9; /* Fundo escuro */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333; /* Linha divisória sutil */
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.certifications {
    margin-bottom: 30px;
}

.certifications p, .contacts-social p {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}

.certs-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.certs-icons img {
    width: 60px; /* Ajuste o tamanho conforme o real */
    height: auto;
    background-color: white; /* Simula o fundo branco dos logos */
    border-radius: 50%;
    padding: 5px;
}

/* Contatos e Social */
.contacts-social {
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.contact-item {
    font-size: 16px;
}

.contact-item i {
    margin-right: 8px;
    color: #2789c3; /* Laranja para os ícones */
}

.contact-item.phone-item {
    color: #2789c3; /* Cor laranja para o telefone */
}



/* Ícones Sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #2789c3; /* Laranja no hover */
}

}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.8s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

/* Efeito de pulsar */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
