/* Importa a fonte Poppins com os pesos mais comuns */

/* Poppins Thin (100) e Thin Italic */

/*aqui 18:13*/
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-Thin.woff2') format('woff2'),
       url('fonte/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-ThinItalic.woff2') format('woff2'),
       url('fonte/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* Poppins ExtraLight (200) e ExtraLight Italic */
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-ExtraLight.woff2') format('woff2'),
       url('fonte/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-ExtraLightItalic.woff2') format('woff2'),
       url('fonte/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

/* Poppins Light (300) e Light Italic */
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-Light.woff2') format('woff2'),
       url('fonte/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-LightItalic.woff2') format('woff2'),
       url('fonte/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Poppins Regular (400) e Italic */
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-Regular.woff2') format('woff2'),
       url('fonte/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-Italic.woff2') format('woff2'),
       url('fonte/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Poppins Medium (500) e Medium Italic */
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-Medium.woff2') format('woff2'),
       url('fonte/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-MediumItalic.woff2') format('woff2'),
       url('fonte/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Poppins SemiBold (600) e SemiBold Italic */
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-SemiBold.woff2') format('woff2'),
       url('fonte/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-SemiBoldItalic.woff2') format('woff2'),
       url('fonte/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Poppins Bold (700) e Bold Italic */
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-Bold.woff2') format('woff2'),
       url('fonte/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-BoldItalic.woff2') format('woff2'),
       url('fonte/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Poppins ExtraBold (800) e ExtraBold Italic */
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-ExtraBold.ttf') format('woff2'),
       url('fonte/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-ExtraBoldItalic.woff2') format('woff2'),
       url('fonte/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Poppins Black (900) e Black Italic */
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-Black.woff2') format('woff2'),
       url('fonte/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonte/Poppins-BlackItalic.woff2') format('woff2'),
       url('fonte/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Estilos Mobile First (padrão) */



html, body {
    background-color: #f7f7f7;
    color: #484848;
    font-family: 'Poppins', sans-serif;
    /* Adicionado para remover margem e padding padrão do navegador */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    min-height: 3209x;
}

/******* PRIMEIRO BANNER *******/
.hero {
    /* Removido: max-height: 100vh; */
    padding-top: 2rem; /* Aumentado para dar mais espaço no topo */
    padding-bottom: 1rem; /* Aumentado para dar mais espaço na base */
    background-color: #79239d;
    background-image: url('assets/fundobanner_.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
  max-width: 1200px; /* Define a largura máxima do conteúdo */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  column-gap: 2rem;
}
.hero-content {
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    
    max-width: 70%;
    height: auto;
}

.subtitle1 {
    font-size: 1.025rem;
    font-weight: 600;
    margin-bottom: 0;
}

.subtitle2 {
    font-size: 1.025rem;
    font-weight: 600;
    margin-top: 0.4rem;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.2rem;
    min-height: 24px; 

}

.sub-heading {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.35;
    color: #ffcfeb;
    margin-bottom: 0.2rem;
}

.description {
    font-size: 1rem;
    margin-bottom: 3rem;
    line-height: 1.525;
    text-align: justify;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: auto;
}

.buy-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-buy,
.btn-whatsapp {
    width: 100%; /* Ocupa a largura total */
    max-width: 300px; /* Limite para não ficar muito grande em telas maiores */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-buy {
    background-color: #007bff;
    color: white;
}

.btn-whatsapp {
    background-color: #05692a;
    color: white;
}

.btn-whatsapp-img {
    width: 100%;
    height: auto;
}

.btn-buy:hover, .btn-whatsapp:hover {
    transform: translateY(-5px);
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.pagamento {
    width: 250px; /* Alinha a largura da imagem com a do botão */
    height: auto;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    min-height: 50px;
}

.banner-img {
    width: 100%;
    max-width: 32rem;
    /* Adicionado para diminuir o tamanho da imagem */
    
}


/******* FIM PRIMEIRO BANNER *******/


/* BANNER DE COMO COMPRAR */

.section-container {
    border-radius: 1rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100px; /* Adiciona uma altura mínima para evitar troca de layout */
}

.how-to-buy-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.how-to-buy-item {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.how-to-buy-item:hover {
    transform: translateY(-8px);
}



.item-text {
    color: #3b1451;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

/* FIM DO BANNER DE COMO COMPRAR */

/* BANNER CLIENTES SMARTPHONE */

    .section-container-clientes{
         font-size: 1.4rem;
        font-weight: 700;
        color: #79239d;
        text-align: center;
        margin-bottom: 0.5rem;
        padding-top: 3rem;
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }

    .estrelas, .google {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
    }

    .estrelas img{
        margin-top: 1rem;
        width: 200px;
        height: auto;
    }

    .google img{
        width: 102px;
        height: auto;
    }



/* BANNER CLIENTES SMARTPHONE */





/* SEGUNDA SEÇÃO: VANTAGENS */
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #79239d;
    text-align: center;
    margin-bottom: 0.5rem;
    padding-top: 3rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.section-title-smart{
    font-size: 1.4rem;
    font-weight: 700;
    color: #79239d;
    text-align: center;
    margin-bottom: 0.5rem;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
 }

 .section-title-desk, .section-subtitle-desk{
    display: none;
 }

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #484848;
    text-align: center;
    margin-bottom: 2rem;
    padding-left: 10px;
    padding-right: 10px;
}

.section-subtitle-mart{
        font-size: 1.25rem;
    font-weight: 500;
    color: #484848;
    text-align: center;
    margin-bottom: 2rem;
    padding-left: 10px;
    padding-right: 10px;
}

.vantagens-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    justify-content: center;
    align-items: center;

}

.vantagem-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vantagem-icon {
    height: 4rem;
    width: 4rem;
    margin-bottom: 1rem;
}

.vantagem-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #79239d;
    margin-bottom: 0.25rem;
}

.vantagem-subtext {
    font-size: 1rem;
    font-weight: 600;
    color: #484848;
    margin-bottom: 1rem;
}

.vantagem-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #484848;
    text-align: justify;
}

.vantagem-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0077CC;
    text-decoration: none;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0.5rem;
    border: solid 0.1rem white;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none; /* Remove o sublinhado */
    background-color: #79239d;
    transition-property: all;
    transition-duration: 300ms;
    margin-bottom: 0.5rem;
}

.vantagem-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.vantagem-casos {
    display: none;
}

/* VANTAGENS SUSTENTABILIDADE */
vantagens-section-sustentabilidade {
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.vantagem-sustentabilidade {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center; /* Centraliza horizontalmente os itens no eixo cruzado */
    padding-top: 2rem;
}

.sustentabilidade-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #484848;
    text-align: center;
    margin-bottom: 0rem;
    padding-left: 10px;
    padding-right: 10px;
}

.sustentabilidade-content {
    text-align: left; /* Garante que o texto fique alinhado à esquerda dentro do container */
    width: 100%;
    max-width: 500px; /* Limita a largura para melhor leitura em mobile */
}

.sustentabilidade-content p{
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-bottom: 1rem;
    text-align: justify;
    padding: 0 16px;
}

.sustentabilidade-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 4rem;
    width: 4rem;
    margin-bottom: 0rem;
    margin-top: 4rem;
    align-items: center;
    text-align: center;
}

.sustentabilidade-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #79239d;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.sustentabilidade-list {
    text-align: left;
    list-style: none;
    padding-left: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.sustentabilidade-list li {
    font-size: 1.1rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.sustentabilidade-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #79239d;
    font-weight: 700;
}

.sustentabilidade-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    
}

.sustentabilidade-img {
    max-width: 24rem;
    width: 100%;
}

.video1{
    display: none;
}

.atalho-img{
    max-width: 24rem;
    width: 95%;
}

.elementor-video{
    max-width: 24rem;
    width: 95%;
}

.recurso-banner {
    padding-top: 1rem;
    padding-bottom: 3rem;
    margin-top: 4rem;
    background-color: #79239d;
    background-image: url('assets/fundobanner_.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Adicionado para garantir que o fundo ocupe toda a área */
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}




/* FIM VANTAGENS SUSTENTABILIDADE */

/* FIM SEGUNDA SEÇÃO: VANTAGENS */




/* TERCEIRO BANNER */

.hero-terceiro{  
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #79239d;
    background-image: url('assets/fundobanner_.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Adicionado para garantir que o fundo ocupe toda a área */
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.terceiro-banner-vantagens-container {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.terceiro-banner-vantagens-conteudo {
    width: 100%;
}

.terceiro-main-title{
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.recursos-lista {
    padding: 0;
    text-align: left;
    margin: 0 auto;
    max-width: 24rem;
}

.recursos-lista li {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 0.5rem;
}

.recursos-lista li i {
    margin-right: 0.5rem;
    color: #b2d7c1;
    width: 1rem;
    text-align: center;
}

.terceiro-banner-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.selo-icon{
    height: 5.2rem;
    width: 5.2rem;
    margin-bottom: 1rem;
}

/* Estilos da nova seção de estatísticas */
.stats-card {
    color: white;
    text-align: center;
    
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0;
}

.stat-text2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0;
    padding-bottom: 2rem;
}


/* FIM TERCEIRO BANNER */


.oquepode-desk{
    display: none;
}


/* ******* QUARTO BANNER ******* */
.casos_de_sucesso{
    background-color: #f7f7f7;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousels-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.carousel-wrapper-novo {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 15px auto;
    padding: 0;
    display: flex;
    align-items: center;
}

.carousel-container-novo {
    overflow: hidden;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.carousel-track-novo {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide-novo {
    flex: 0 0 50%;
    min-width: 0;
    padding: 0 5px;
    box-sizing: border-box;
}

.carousel-slide-novo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.carousel-btn-novo {
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn-novo:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-slide-novo:hover img {
    transform: scale(1.03);
}

.carousel-desktop{
    display: none;
}

/* ******* FIM DO QUARTO BANNER ******* */

/* BANNER CLIENTE DESKTOP */

.clientes-section-desk {
    display: none;
}

/* FIM BANNER CLIENTE DESKTOP*/



/* BANNER TRANSFORME SEU CARTAO */

/* Estilos CSS do Banner */
.banner-container-parent {
  
    
    background-color: #79239d;
    color: #fff;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 0; /* Remove padding extra inferior */
    background-image: url('assets/fundobanner_.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: scroll; /* no mobile, evita bug do fixed */
    box-sizing: border-box;
    flex-direction: column; /* força colunas no mobile */
    text-align: center;
  
}

.banner-content-wrapper {
    flex-direction: column; /* Garante que o conteúdo ficará empilhado na versão mobile */
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.banner-text-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 100%;
    max-width: 100%;
}

.banner-text-content h2.heading-main {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    line-height: 1.3;
}

.banner-text-content h2.heading-sub {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-buy-link {
    display: inline-flex;
    align-items: center;
    text-align: center;
    background-color: #007bff;
    width: 250px;
    height: 24px;
    border: none;
    color: white;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 30px;
    margin-bottom: 10px;
    gap: 7px;
}

.btn-buy-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.6);
}

.btn-icon-trasnforme{
    width: 24px;
    height: 24px;
    padding-left: 10px;
}

.payment-image {
    flex-basis: 100%;
    max-width: 100%;
    justify-content: center;;
    height: auto;
    margin-bottom: 20px;
}

.banner-image-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image-content .main-visual-image {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Garante que a imagem ocupe o espaço disponível */
}

.negocio {
    padding-top: 20px;
}

.title-negocio {
    padding-top: 30px;
}

/* FIM BANNER TRANSFORME SEU CARTAO */


/* BANNER DUVIDAS */

.grid {
  display: flex;
  gap: 20px; /* Adiciona um espaço entre as colunas */
}

.coluna1, .coluna2 {
  flex: 1; /* Faz com que as colunas ocupem espaço igual */
}

.duvidas {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 4rem;
    background-color: #79239d;
    background-image: url('assets/fundobanner_.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Adicionado para garantir que o fundo ocupe toda a área */
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}


.texto-cor-principal {
            color: #fff;
        }

.py-12 {
  max-width: 1200px;
  margin: 0 auto; /* Centraliza a div horizontalmente */
  display: flex;
  flex-direction: column; /* Organiza os itens em uma coluna */
  align-items: center; /* Centraliza os itens horizontalmente */
}

.container-faq {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

details {
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

summary {
    font-weight: 600;
    padding: 1rem 0;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

summary::-webkit-details-marker {
    display: none;
}

.icone-expansao {
    transition: transform 0.3s ease-in-out;
}

details[open] .icone-expansao {
    transform: rotate(180deg);
}

.resposta-faq {
    padding-bottom: 1rem;
    color: #fff;
}


/* FIM BANNER DUVIDAS */



/* BANNER RODAPE */

rodape-container {
  display: flex;
  flex-direction: column; /* Por padrão, os itens ficam um abaixo do outro */
  gap: 2rem;
  padding: 2rem;
}

.rodape-logo {
  text-align: center; /* Centraliza a logo */
}

.rodape-conteudo {
  display: flex;
  flex-direction: column; /* No celular, os links e infos também ficam em coluna */
  gap: 2rem;
}

.rodape-info > div {
  padding-top: 30px;  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.img_logo_rodape {
    width: 250px;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.rodape-links {
    text-align: justify;
}

/* FIM DO BANNER RODAPE */


















/* Telas de tablet (768px e maiores) */
@media (min-width: 768px) {
    .carousel-desktop{
    display: none;
}    

}


@media screen and (max-width: 1023px) {
  .banner-container-parent {
      height: auto;      /* ajusta só ao conteúdo */
      min-height: 0;     /* remove limite mínimo */
  }
}







/* Telas de desktop (1024px e maiores) */
@media (min-width: 1024px) {

    /******* PRIMEIRO BANNER *******/

    .hero {
    /* Mudei min-height para max-height para evitar o esticamento */
    max-height: 100vh;
    /* Adicione padding interno para dar espaço ao conteúdo */
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
 
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem; /* Adicionei gap para espaçamento entre os elementos */
  }
  
  .hero-content {
    text-align: left;
    /* Usei flex-basis para controlar a largura de forma mais flexível */
    flex-basis: 60%;
    padding-right: 2rem;
  }

  .logo {
    max-width: 34%;
    height: auto;
  }
    

    .subtitle1, .subtitle2 {
        font-size: 1.3rem;
        min-height: 10px;
        
    }

    .main-title {
        font-size: 2rem;
        min-height: 24px;
        text-align: center;
    }

    .sub-heading {
        font-size: 1.6rem;
        text-align: center;
    }

    .description {
        font-size: 1.125rem;
    }
    
    .hero-image-container {
        display: flex;
        width: 40%; /* Alterado de 'auto' para '40%' */
    }

   .buttons-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 30px; /* Adiciona espaçamento entre os botões */
        min-height: 72px;
    }
    

    .buy-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Espaço entre o botão de compra e a imagem de pagamento */
    }

    .btn-buy,
    .btn-whatsapp {
        width: 320px; /* Mantém a largura fixa para desktop */
        height: 60px; /* Mantém a altura fixa */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 20px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        border-radius: 12px;
        border: 2px solid white; /* Borda branca */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-buy {
        background-color: #007bff;
        color: white;
    }

    .btn-whatsapp {
        background-color: #05692a;
        color: white;
    }

    .pagamento {
        width: 320px; /* Tamanho da imagem de pagamento no desktop */
        height: auto;
    }

    /******* FIM PRIMEIRO BANNER *******/


    /* BANNER COMO COMPRAR */

    .how-to-buy-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .how-to-buy-item {
        height: auto;
    }
    
    .item-text {
        text-align: center;
    }

    /* FIM BANNER COMO COMPRAR */

    
     
     
    


    /* BANNER CLIENTES SMARTPHONE */

    .clientes-section {
        display: none;
        
    }


    /* FIM BANNER CLIENTES SMARTPHONE */

    /**** SEGUNDO BANNER ****/

    .section-title {
        padding-top: 0rem;
        margin-top: 0rem;
    }

    .section-title-smart, .section-subtitle-mart{
        display: none;
        
     }

     .section-title-desk{
        display: block;
        padding-top: 2rem;
        font-size: 1.4rem;
        font-weight: 700;
        color: #79239d;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
     }

     .section-subtitle-desk{
        display: block;
        font-size: 1.25rem;
        font-weight: 500;
        color: #484848;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
     }


    .vantagens-section{
        max-width: 1200px;
        margin: 0 auto;
        padding: rem;
    }

    .vantagens-grid {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .vantagem-card {
        flex: 1;
        height: 33rem;
        justify-content: center;
        align-items: center;
    }

    .vantagem-casos {
    display: block;
}



    .sustentabilidade-content, .sustentabilidade-image-container {
        flex: 1;
    }

    .sustentabilidade-img{
        padding-top: 3rem;
        width: 52%;
    }
    /******** FIM DO SEGUNDO BANNER **********/


  /******** TERCEIRO BANNER **********/

   .hero-terceiro {  
    padding-top: 5rem;
    padding-bottom: 5rem;
    }


  
    .terceiro-banner-vantagens-container {
        max-width: 1200px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;      
        padding-top: 0rem;
        padding-bottom: 0rem;
    }

    

    .terceiro-banner-vantagens-conteudo {
        flex: 1;
        text-align: center;
    }
    
    .recursos-lista {
        max-width: none;
    }

    .terceiro-banner-img-container {
        flex: 1;
        padding-left: 2rem;
        padding-right: 2rem;
        align-items: center;
        margin-bottom: 0rem;
        margin-top: 0rem;
    }

    .stats-container{
        column-gap: 0rem;
        align-items: center;        
        margin-bottom: 0;
    }

    .stats-card {
        color: white;
        text-align: center;
    }

/******** FIM TERCEIRO BANNER **********/

.oquepode-desk{
    display: block;
}

/**/

.smart-oquepode{
    
    display: none;
}

/**/



/* ******* QUARTO BANNER ******* */

.carousel-wrapper-novo{
    display: none;
}

.carousels-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.carousel-container {
    overflow: hidden;
    width: calc(100% - 80px);
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 20%;
    min-width: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.carousel-btn {
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-slide:hover img {
    transform: scale(1.03);
}

.carousel-desktop{
    display: block;
}

/* ******* FIM DO QUARTO BANNER ******* */


/* BANNER CLIENTES DESKTOP */

.clientes-section-desk {
    display: block;
}

/* FIM BANNER CLIENTES DESKTOP */


/* BANNER TRANSFORME SEU CARTAO */


    .banner-container-parent {
        .banner-container-parent {
        display: flex;
        align-items: center;
        justify-content: space-between; /* separa texto e imagem */
        padding: 4rem 8%;
        min-height: 100vh;
        background-image: url('assets/fundobanner_.webp');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-attachment: fixed;
  }
    }

    .banner-content-wrapper {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: space-between;
        padding: 0 80px; 
    }

    .banner-text-content {
        flex-basis: 50%;
        max-width: 50%;
        /* AQUI ESTÁ A MUDANÇA */
        align-items: center; 
        text-align: center;
    }

    .banner-text-content h2.heading-main {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .banner-text-content h2.heading-sub {
        font-size: 1.5rem;
    }
    

    .btn-buy-link {
        width: 300px;
        height: 50px;
        padding: 10px 10px;
        margin-top: 20px;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .payment-image {
        margin-bottom: 0;
        display: block;
        width: 60%;
        height: auto;
    }

    .banner-image-content {
        flex-basis: 50%;
        max-width: 50%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .banner-image-content .main-visual-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 0; /* remove sobra */
        display: block;
    }

/* FIM BANNER TRANSFORME SEU CARTAO */



/*  BANNER SUSTENTABILIDADE */
.vantagens-section-sustentabilidade{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.vantagem-sustentabilidade {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
}

.sustentabilidade-content {
    flex: 1;
    flex-basis: 50%;
    text-align: left;
    
}

.sustentabilidade-image-container {
    flex: 1;
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video2{
    display: none;
}

.video1{
    padding-top: 43px;
    display: block;
}

.atalho-img{
    width: 95%;
    max-width: 34rem;
    margin-top: -37px;
    cursor: pointer;
}

.elementor-video{
    max-width: 100%;
    width: 70%;
    border-radius: 16px;
}

/* CLIQUE ZOOM */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.negocio {
    padding-top: 133px;
}

.title-negocio {
    padding-top: 10px;
}

.economia {
    margin-top: -50px;
}

/* CLIQUE ZOOM */


/* FIM BANNER SUSTENTABILIDADE */


/* BANNER DUVIDAS */
.rodape-container {
  max-width: 1200px; /* Ou qualquer largura que você prefira */
  margin: 0 auto; /* Centraliza o contêiner na página */
}
.rodape-info > div {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center;    /* Centraliza verticalmente */
}
.rodape-conteudo {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    gap: 2rem;
  }
  
  .rodape-links, .rodape-info {
    flex: 1; /* Faz com que as duas colunas tenham o mesmo tamanho */
  }

  .img_logo_rodape {
    width: 300px;
}
/* FIM BANNER DUVDIAS */




}
