    /* RESET BÁSICO */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .text-justify {
      text-align: justify;
    }

    /* ======= CONFIGURAÇÕES GERAIS ======= */
    body {
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      background-color: #fff;
      color: #000;
      /* Texto preto como padrão */
    }

    a {
      text-decoration: none;
    }

    /* .logos-section {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 20px;
    } */

    /* .logos-section img {
      max-width: 150px;
      height: auto;
    } */

    /* ======= SEÇÃO PRINCIPAIS BENEFÍCIOS (COM CARROSSEL) ======= */
    .benefits-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
      background-color: #fff;
    }

    .benefits-section h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .benefits-section p.subtitle {
      color: #484848;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      max-width: 700px;
      margin: 0 auto 50px auto;
      line-height: 1.4;
    }

    .about-section {
      background-color: #ffffff;
      padding: 60px 20px;
    }

    /* Adiciona espaçamento suave entre elementos */
    .about-section p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .about-section h2 {
      font-size: 2rem;
      font-weight: bold;
    }


    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 60px 20px;
      gap: 40px;
    }

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

    .about-text h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .about-text p {
      color: #000000;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 15px;
    }

    .about-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .about-image img {
      width: 100%;
      height: auto;
      max-width: 600px;
      /* Ajuste conforme desejar */
    }

    /* SEÇÃO COMO FUNCIONA */
    .how-it-works-section {
      background-color: #ffffff;
      /* Ajuste se desejar outra cor */
      padding: 60px 20px;
      /* Espaçamento interno (superior e inferior) */
    }

    .how-it-works-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px 20px;
    }

    /* Texto à esquerda */
    .how-it-works-text {
      flex: 1;
      min-width: 300px;
      /* Largura mínima para não ficar muito estreito */
    }

    .how-it-works-text h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .how-it-works-text p {
      color: #000000;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 15px;
      /* Espaçamento entre parágrafos */
    }

    /* Imagem à direita */
    .how-it-works-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .how-it-works-image img {
      width: 100%;
      height: auto;
      max-width: 600px;
      /* Ajuste conforme desejar */
    }

    .your-way-section {
      background-color: #ffffff;
      /* Cor de fundo da seção */
      padding: 60px 20px;
      /* Espaçamento vertical e horizontal */
      text-align: center;
      align-items: center;
    }

    .your-way-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 60px 20px;
    }

    .your-way-container h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    /* Container que agrupa os cards */
    .cards-container {
      display: flex;
      /* flex-wrap: wrap; */
      justify-content: center;
    }

    /* Cada Card */
    .card {
      background-color: #D9D9D9;
      width: 320px;
      border-radius: 8px;
      overflow: hidden;
      text-align: left;
      padding: 20px;
    }

    /* Imagem no topo do Card */
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }


    /* Conteúdo (título + texto) */
    /*     .card-content {
      padding: 20px;
    } */

    /* Título do card */
    .card-content h3 {
      color: #6e6e6e;
      font-family: "Poppins-Bold", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      margin-left: 10px;
    }

    /* Parágrafo do card */
    .card-content p {
      color: #828282;
      font-family: "Poppins-Medium", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.4;
      margin-left: 5px;
      margin-right: 5px;
    }

    .checkin-app-section {
      background-color: #fff;
      /* Fundo branco */
      padding: 60px 20px;
    }

    .checkin-app-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      /* Espaço entre texto e carrossel */
    }

    /* Coluna de texto */
    .checkin-app-text {
      flex: 1;
      min-width: 300px;
    }

    .checkin-app-text h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: 400;
      margin-bottom: 30px;
    }

    .checkin-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      gap: 10px;
    }

    .checkin-item img {
      width: 61px;
      height: 61px;
      flex-shrink: 0;
    }

    .checkin-item p {
      color: #000000;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      margin: 0;
      line-height: 1.4;
    }

    /* Destaque semibold em <strong> */
    .checkin-item p strong {
      font-weight: 600;
    }

    /* Estilização básica para o swiper do check-in */
    .mySwiper-checkin {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      overflow: hidden;
    }

    .mySwiper-checkin .swiper-slide {
      text-align: center;
    }

    .mySwiper-checkin img {
      width: 100%;
      max-height: 500px;
      object-fit: contain;
      border-radius: 8px;
    }

    .vale-apena-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      justify-content: space-between;
      padding: 60px 20px;
    }

    /* Coluna do Vídeo Principal */
    .video-column {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* Centraliza horizontalmente o vídeo e o nome */
    }

    .video-box {
      width: 100%;
      max-width: 500px;
      position: relative;
      border-radius: 8px;
      overflow: hidden;
    }

    .video-box img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Botão de play (opcional) */
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 64px;
      height: 64px;
      /* Exemplo de um ícone: substitua por sua imagem/ícone real */
      background: url('assets/images/landing_page/componentes/depoimentos_play.png') no-repeat center center;
      background-size: contain;
      cursor: pointer;
    }

    /* Nome abaixo do vídeo */
    .video-author {
      margin-top: 10px;
      color: #000;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: 400;
    }

    /* Coluna do Texto e Botão */
    .text-column {
      flex: 1;
      min-width: 300px;
      color: #000;
    }

    .text-column h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .text-column p {
      color: #000000;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    /* Botão "Quero uma demonstração" */
    .demo-button {
      background-color: #ff6a00;
      color: #fff;
      font-family: "Poppins-SemiBold", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 600;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

    .demo-button:hover {
      opacity: 0.8;
    }

    /************************************
 * SEÇÃO 2: "CONFIRA MAIS DEPOIMENTOS"
 ************************************/
    .depoimentos-section {
      background-color: #fff;
      /* Fundo branco */
      padding: 60px 20px;
      text-align: center;
      /* Centraliza o título */
    }

    .depoimentos-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 20px 0px 40px 0px;
    }

    .depoimentos-container h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      font-weight: 400;
    }

    /* Cada card de vídeo */
    .video-card {
      width: 100%;
      max-width: 350px;
      position: relative;
      border-radius: 8px;
      overflow: hidden;
    }

    .video-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .video-card .video-author {
      color: #000;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: 400;
      margin: 10px;
    }

    /* Container geral (texto + box de contato) */
    .solicite-demo-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      padding: 20px 20px;
    }

    /* Coluna de Texto (à esquerda) */
    .solicite-demo-text {
      flex: 1;
      min-width: 300px;
      color: #ffffff;
    }

    /* Título */
    .solicite-demo-text h2 {
      color: #ffffff;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 36px;
      font-weight: 400;
      margin-bottom: 20px;
    }

    /* Parágrafos */
    .solicite-demo-text p {
      color: #ffffff;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    /* Coluna do Formulário (Caixa de contato) */
    .contact-box {
      flex: 1;
      min-width: 300px;
      background-color: #ffffff;
      /* Fundo branco da caixa */
      border-radius: 8px;
      padding: 20px 20px;

      box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
      /* Sombra opcional */
    }

    /* Texto acima do formulário */
    .contact-box .contact-instructions {
      color: #524E4E;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 15px;
      font-weight: 400;
      margin-bottom: 20px;
    }

    /* Formulário */
    .contact-box form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      /* Espaço vertical entre inputs e botão */
    }

    /* Campos de input */
    .contact-box input {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 16px;
      color: #524E4E;
    }

    /* Botão Enviar */
    .contact-box button {
      background-color: #ff6a00;
      color: #ffffff;
      font-family: "Poppins-SemiBold", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 600;
      padding: 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

    .contact-box button:hover {
      opacity: 0.8;
    }

    .footer-section {
      background-color: #000D2F;
      /* Fundo do footer */
      padding: 60px 20px;
      /* Espaçamento interno */
    }

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

    /* Cada coluna do footer */
    .footer-col {
      flex: 1;
      min-width: 250px;
      color: #ffffff;
      /* Texto em branco */
    }

    /* Logotipo */
    .footer-logo {
      width: 150px;
      /* Ajuste conforme desejar */
      height: auto;
      margin-bottom: 10px;
    }

    /* Texto descritivo (opcional) */
    .footer-description {
      color: #ffffff;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    /* Div de Contatos e Redes Sociais */
    .contacts-social h3 {
      color: #ffffff;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 15px;
    }

    .contacts-social p {
      color: #ffffff;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 8px;
    }

    /* Redes Sociais */
    .social-icons a {
      color: #ffffff;
      /* Ícones em branco */
      font-size: 20px;
      margin-right: 10px;
      text-decoration: none;
    }

    .social-icons a:hover {
      opacity: 0.8;
      /* Efeito hover */
    }

    /* Links Úteis */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links li a {
      color: #ffffff;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
    }

    .footer-links li a:hover {
      opacity: 0.8;
    }

    /* Regras gerais para imagens */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Botões */
    button,
    .cta-button,
    .demo-button {
      padding: 15px 30px;
      font-size: 20px;
    }

    .checkout-personalizado {
      background-color: #ffffff;
      /* Ajuste se desejar outra cor */
      padding: 60px 20px;
      /* Espaçamento interno (superior e inferior) */
    }

    .checkout-personalizado .container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      /* Espaçamento entre texto e imagem */
      flex-wrap: wrap;
      /* Permite quebra em telas menores */
    }

    .checkout-personalizado .texto {
      flex: 1;
      min-width: 300px;
    }

    .checkout-personalizado .texto h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .checkout-personalizado .texto p {
      color: #000000;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 15px;
    }

    .checkout-personalizado .imagem {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .checkout-personalizado .imagem img {
      width: 100%;
      height: auto;
      max-width: 500px;
      /* Ajuste conforme desejar */
      border-radius: 8px;
      /* Se desejar cantos arredondados */
    }

    .venda-eventos {
      background-color: #ffffff;
      /* Ajuste se desejar outra cor */
      padding: 60px 20px;
      /* Espaçamento interno (superior e inferior) */
    }

    .vendas-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px 20px;
    }

    .imagem img {
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
    }

    .texto {
      flex: 1;
    }

    .texto h2 {
      color: #252136;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .texto p {
      color: #000000;
      font-family: "Poppins-Regular", Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 15px;
    }

    @media (max-width: 768px) {
      .intro-paragraph {
        font-size: 26rem !important;
        line-height: 1.5 !important;
      }
    }



    @media (max-width: 767.98px) {

      /* Reordena a imagem para aparecer depois do texto */
      .about-section .about-image,
      .how-it-works-section .how-it-works-image,
      .venda-eventos .imagem,
      .checkout-personalizado .imagem {
        order: 2;
      }

      .about-section .about-text,
      .how-it-works-section .how-it-works-text,
      .venda-eventos .texto,
      .checkout-personalizado .texto {
        order: 1;
      }

      /* Garante que os elementos respeitem a ordem no Flex */
      .about-section .row,
      .how-it-works-section .row,
      .venda-eventos .row,
      .checkout-personalizado .row {
        display: flex;
        flex-direction: column;
      }
    }