html,
body {
    background-color: #f7f7f7;
    color: #111111;
    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;
}

/* DESKTOP */

.h2global-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #20022c;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
}

.h3global-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #20022c;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
}

.h4global-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #20022c;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #484848;
    text-align: center;
}



/******* PRIMEIRO BANNER DESKTOP *******/

.hero {
    padding-top: 1rem;
    padding-bottom: 2rem;
    background-color: #20022c;
    background-image: url('assets/21.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* mantém a imagem fixa enquanto a tela rola */
}

.container {
    max-width: 1200px;
    /* Define a largura máxima do conteúdo */
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    column-gap: 2rem;
}


.hero-content {
    width: 100%;
    max-width: 800px;
    /* limite opcional para telas grandes */
    margin: 0 auto;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    flex-basis: 75%;
    /* Usei flex-basis para controlar a largura de forma mais flexível */
    padding-right: 1rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    min-height: 24px;
    text-align: left;
    font-family: 'Oswald';

}

.description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-top: 0rem;
    margin-bottom: 2.9rem;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* estica os filhos horizontalmente */
    width: 100%;
    cursor: pointer;
}

.btn-whatsapp {
    width: 75%;
    max-width: 550px;
    /* ocupa toda a largura disponível */
    height: 61px;
    /* botão mais alto */
    font-size: 18px;
    /* texto maior */
    font-weight: 600;
    padding: 0 10px;
    /* espaço interno maior */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* espaço entre ícone e texto */
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #05692a;
    color: white;
    white-space: nowrap;
    /* impede quebra de linha */
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.418);
    /* sombra adicionada */
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
}

.btn-whatsapp-img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.btn-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    /* impede que o ícone seja comprimido */
    object-fit: contain;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    width: 70%;       /* Mantém a imagem em 70% da largura do contêiner */
    max-width: 32rem; /* Mantém o limite de 32rem */
    height: auto;     /* <-- RECOLOQUE ESTA LINHA OBRIGATORIAMENTE */
    display: block;
    margin: 0 auto;
    border-radius: 12px
}

/******* FIM PRIMEIRO BANNER DESKTOP *******/



/* BANNER Por que mais de 15.000 profissionais já usam o Cartão Virtual? DESKTOP */

.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 */
}

.vantagens-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    margin-left: 1rem;
    margin-right: 1rem;
    justify-content: center;
    align-items: center;

}

.vantagens-grid {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.vantagem-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 13rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem 1.3rem;
    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;
}

.vantagem-icon {
    height: 2.1rem;
    width: 2.1rem;
    margin-bottom: -10px;
}

.vantagem-text {
    margin-bottom: -10px;
}

/* FIM BANNER Por que mais de 15.000 profissionais já usam o Cartão Virtual? DESKTOP */



/* BANNER Veja como seu Cartão Virtual funciona na prática DESKTOP */

/* ===== CONTAINER PRINCIPAL ===== */

.tittle-videos {
    margin-bottom: 3rem;
}

.how-to-buy-container-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 vídeos lado a lado */
    gap: 20px;
    /* espaçamento entre eles */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 4rem auto;
    /* centraliza o grid */
    text-align: center;
}

/* ===== CADA BLOCO DE VÍDEO ===== */
.sustentabilidade-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== VÍDEO ===== */
.elementor-video {
    width: 100%;
    max-width: 320px;
    /* tamanho máximo */
    aspect-ratio: 16 / 9;
    /* mantém proporção do vídeo */
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== LEGENDA ===== */
.sustentabilidade-image-container figcaption {
    margin-top: 8px;
    font-size: 1rem;
    color: #333;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet: 2 vídeos por linha */
@media (max-width: 1024px) {
    .how-to-buy-container-videos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular: 1 vídeo por linha */
@media (max-width: 768px) {
    .how-to-buy-container-videos {
        grid-template-columns: 1fr;
    }

    .elementor-video {
        max-width: 90%;
        /* ocupa mais espaço no celular */
    }
}

/* FIM DO BANNER Veja como seu Cartão Virtual funciona na prática DESKTOP */



/******* BANNER Casos de Sucesso *******/

.casos_de_sucesso {
    padding-top: 2rem;
}

.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);
}

/******* FIM DO BANNER Casos de Sucesso *******/


/***** BANNER O que dizem nossos clientes *****/

.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;
}

/***** FIM DO BANNER O que dizem nossos clientes *****/


/******* BANNER Seu Cartão Virtual pode ter isso tudo! e Como Comprar *******/

.hero-terceiro {
    padding-top: 3rem;
    padding-bottom: 4rem;
    background-color: #20022c;
    background-image: url('assets/21.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 {
    max-width: 1200px;
    padding-top: 0rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.terceiro-banner-vantagens-conteudo {
    width: 100%;
    flex: 1;
    text-align: center;
}

.terceiro-main-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Oswald';
}

.recursos-lista {
    padding: 0;
    text-align: left;
    margin: 0 auto;
    max-width: 24rem;
}

.recursos-lista li {
    font-size: 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 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.recursos-lista {
    max-width: none;
}

.how-to-buy-container {
    margin: 0;
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.item-text {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

/******* BANNER Seu Cartão Virtual pode ter isso tudo! e Como Comprar *******/


/******* BANNER Construa seu sucesso e Sessão de Sustentabilidade *******/
.selo-icon {
    height: 5.2rem;
    width: 5.2rem;
    margin-bottom: 1rem;
}

.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;
}

.vantagens-section-sustentabilidade {
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.vantagem-sustentabilidade {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    align-items: stretch;
    padding-top: 2rem;
    width: 100%;
}

.sustentabilidade-content {
    flex: 1;
    flex-basis: 50%;
    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-family: 'Oswald';
    font-size: 2rem;
    font-weight: 700;
    color: #20022c;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}

.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-smart {
    flex: 1;
    flex-basis: 50;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.sustentabilidade-img {
    max-width: 24rem;
    width: 100%;
}

/******* FIM DO BANNER Construa seu sucesso e Sessão de Sustentabilidade *******/


/***** BANNER DUVIDAS FREQUENTES *****/

.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: #20022c;
    background-image: url('assets/21.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 p {
    padding-bottom: 1rem;
    color: #ffffffbb;
    text-align: left;
    font-size: 1rem;
}

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;
}


.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 DO BANNER DUVIDAS FREQUENTES *****/




/* Container dos cartões */

#imgcard {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 colunas no desktop */
    gap: 20px; /* espaçamento entre cartões */
    justify-items: center;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 5rem;
    padding: 0 40px; /* espaçamento lateral (aumente ou reduza conforme desejar) */
}

/* Cada imagem de cartão */
#imgcard img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
#imgcard img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Responsivo para smartphones */
@media (max-width: 768px) {
    #imgcard {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no celular */
        gap: 15px;
        padding: 0 15px; /* reduz o espaçamento lateral no mobile */
    }
}

/* FIM DO Container dos cartões */


/* BANNER INICIAL PÁGINA DE PORTFOLIO */

.hero_portofio {
    display: flex;
    align-items: center; /* centraliza verticalmente */
    justify-content: center; /* centraliza o conteúdo geral */
    background-color: #20022c;
    background-image: url('assets/21.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Adicionado para garantir que o fundo ocupe toda a área */
    background-attachment: fixed;
    padding-top: 3rem;
    padding-bottom: 0;
    position: relative;
}

/* Container interno */
.container_portfolio {
    display: flex;
    align-items: center;
    justify-content: space-between; /* conteúdo à esquerda, imagem à direita */
    width: 100%;
    max-width: 1200px; /* limita largura no desktop */
    margin: 0 auto;
    padding: 0 40px;
    gap: 40px;
}

/* Conteúdo da esquerda */
.hero-content_portfolio {
    flex: 1;
    color: white;
    flex-direction: column; /* organiza os elementos em coluna */
    justify-content: center; /* centraliza verticalmente */
    align-items: center; /* centraliza horizontalmente */
    text-align: center; /* garante que textos e títulos fiquem centralizados */
    gap: 15px; /* espaçamento entre os elementos, opcional */
}

/* Imagem à direita */
.hero-image-container_portfolio {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end; /* encosta a imagem na parte inferior do banner */
}

/* Imagem responsiva */
.hero-image-container_portfolio img {
    width: 100%;
    max-width: 420px; /* ajuste conforme necessário */
    height: auto;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .container_portfolio {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .hero-image-container_portfolio {
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .hero-image-container_portfolio img {
        max-width: 300px;
    }
}

/* Container do botão */
.aveja_portfolio {
    margin-top: 25px;
    display: inline-block; /* mantém o botão na linha */
}

/* Botão dentro da classe */
.aveja_portfolio a {
    display: inline-block;
    background: #f7f7f7;
    color: blueviolet;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 4rem;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Efeito ao passar o mouse */
.aveja_portfolio a:hover {
    background: blueviolet;
    color: #fff;
    box-shadow: 0 6px 15px rgba(137, 43, 226, 0.4);
    transform: translateY(-2px);
}

/* Efeito ao clicar */
.aveja_portfolio a:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(137, 43, 226, 0.4);
}

/* Responsivo (opcional) */
@media (max-width: 768px) {
    .aveja_portfolio a {
        font-size: 15px;
        padding: 0.6rem 1.3rem;
    }
}



/* FIM DO BANNER INICIAL PÁGINA DE PORTFÓLIO */


/* =======================
   BOTÕES PORTFOLIO, CATEGORIAS E VIDEOS DE COMO USAR
   ======================= */

/* Container geral */
.cobrebotoes-desk {
    display: block !important;
}

/* Container interno */
.container-buttons-shortcuts-smartphone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 5rem;
}

/* Linha dos dois primeiros botões no mobile */
.buttons-shortcuts-smartphone {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin-bottom: 1rem;
}

/* Botões gerais */
.btn-shortcut-smartphone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #20022c;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    text-align: center;
    padding: 16px 16px;
    border-radius: 8px;
    transition: 0.3s ease;
    font-weight: 500;
    box-sizing: border-box;
}

/* Tamanho igual para os dois primeiros botões (mobile) */
.btn-half {
    flex: 1;
}

/* Botão inferior ocupa toda a largura dos dois superiores (mobile) */
.btn-wide {
    width: 100%;
    max-width: 360px;
}

/* Ícones */
.btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Hover suave */
.btn-shortcut-smartphone:hover {
    background-color: #3a0652;
    transform: scale(1.03);
}

/* =========================
   LAYOUT DESKTOP - TODOS OS BOTÕES LADO A LADO
   ========================= */
@media (min-width: 1024px) {
    /* Container da linha */
    .buttons-shortcuts-smartphone {
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
        max-width: 800px; /* largura total da linha */
        margin-bottom: 0; /* remove margem inferior para desktop */
    }

    /* Todos os botões iguais */
    .buttons-shortcuts-smartphone a {
        flex: 1;
        max-width: none;
    }

    /* Botão inferior também igual aos superiores */
    .btn-wide {
        flex: 1;
        max-width: none;
    }

    /* Container geral mantém alinhamento centralizado */
    .container-buttons-shortcuts-smartphone {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 5rem;
    }
}

/* =========================
   Outras classes
   ========================= */
.cobrevideos-1 {
    display: block !important;
}

/**=========================
   BOTÕES CATEGORIAS
   =========================*/
    
/* Container geral */
.botoes_categorias {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

/* Container interno de botões */
.botoes {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    gap: 15px; /* espaçamento entre botões */
    width: 100%;
    max-width: 1200px; /* opcional, centraliza na tela */
}

/* Botões gerais */
.btn-port {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #20022c;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover suave */
.btn-port:hover {
    background-color: #3a0652;
    transform: scale(1.05);
}

/* RESPONSIVO - Smartphones */
@media (max-width: 768px) {
    .botoes {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no mobile */
        gap: 10px;
    }

    .btn-port {
        padding: 12px 0;
        font-size: 14px;
    }
}

/**=========================
   FIM BOTÕES CATEGORIAS
   =========================*/













/* Esconde no desktop */

.hero-smartphone,
.casos_de_sucesso-smart,
.clientes_smartphone,
.hero_call_action,
.vantagens_smartphone,
.oquepode_smart,
.vantagens_section_sustentabilidade,
.duvidas_smartphone,
.cobrebotoes,
.cobrevideos-1 {
    display: none !important;
}































/* Esconde no celular */

@media (max-width: 1024px) {

    .hero,
    .section-container,
    .cobrevideos,
    .clientes-section-desk,
    .casos_de_sucesso,
    .hero-terceiro,
    .vantagens-section-sustentabilidade,
    .duvidas,
    .rodape-container,
    .cobrebotoes-desk,
    .cobrebotoes-desk-cima {
        display: none !important;
    }

    .hero-smartphone {
        display: block !important;
        padding-top: 1rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        background-color: #20022c;
        background-image: url('assets/21.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .casos_de_sucesso-smart {
        display: block !important;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .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.1);
        border: none;
        color: #20022c;
        font-size: 16px;
        width: 16px;
        height: 16px;
        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.1);
    }

    .carousel-slide-novo:hover img {
        transform: scale(1.03);
    }

    .carousel-desktop {
        display: none;
    }


    .clientes_smartphone {
        display: block !important;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero_call_action {
        display: block !important;
        padding-top: 2rem;
        padding-bottom: 2rem;
        background-color: #20022c;
        background-image: url('assets/21.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .vantagens_smartphone {
        display: block !important;
            text-align: center;

    }

     .section-container-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vantagens-grid-smartphone {
     display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    

    justify-content: center;
    align-items: start;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 0;
}

.vantagem-card-smartphone {
 display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    
    height: 100%;}
    
  

    .oquepode_smart {
        display: block !important;
        padding-top: 0rem;
        padding-bottom: 4rem;
        background-color: #20022c;
        background-image: url('assets/21.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;
        overflow: hidden;
    }

    .terceiro-banner-vantagens-conteudo {
        width: auto;
        align-items: center;
        justify-content: center;
        padding-left: 2rem;
        padding-right: 1rem;
        overflow: hidden;


    }

    .terceiro-banner-img-container {
        width: auto;
        overflow: hidden;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .btn-whatsapp {
        font-size: 16px;
    }

    .vantagens_section_sustentabilidade {
        display: block !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .duvidas_smartphone {
        display: block !important;
        padding-top: 3rem;
        padding-bottom: 3rem;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 4rem;
        background-color: #20022c;
        background-image: url('assets/21.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;
    }

    .rodape_container_smartphone {
        overflow: hidden;
    }

    /* BOTÕES PORTFOLIO, CATEGORIAS E VIDEOS DE COMO USAR */

    .cobrebotoes {
        display: block !important;
    }

    .container-buttons-shortcuts-smartphone {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 1rem;
        margin-bottom: 5rem;
    }

    /* Linha dos dois primeiros botões */
    .buttons-shortcuts-smartphone {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 360px;
        margin-bottom: 1rem;
        /* mantém o alinhamento com o botão inferior */
    }

    /* Botões gerais */
    .btn-shortcut-smartphone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: #20022c;
        color: #fff;
        border: 1px solid #fff;
        text-decoration: none;
        text-align: center;
        padding: 16px 16px;
        border-radius: 8px;
        transition: 0.3s ease;
        font-weight: 500;
        box-sizing: border-box;
    }

    /* Tamanho igual para os dois primeiros botões */
    .btn-half {
        flex: 1;
    }

    /* Botão inferior ocupa toda a largura dos dois superiores */
    .btn-wide {
        width: 100%;
        max-width: 360px;
    }

    /* Ícones */
    .btn-icon {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    /* Hover suave */
    .btn-shortcut-smartphone:hover {
        background-color: #3a0652;
        transform: scale(1.03);
    }

    .cobrevideos-1 {
        display: block !important;
    }
        

    /* BOTÕES PORTFOLIO, CATEGORIAS E VIDEOS DE COMO USAR */




}