/* =========================================================
   Estilos base
   ========================================================= */
* {
    margin: 0; /* Remove margens padrão */
    padding: 0; /* Remove preenchimento padrão */
    box-sizing: border-box; /* Inclui padding e border no cálculo da largura e altura */
}

body {
    color: #000; /* Cor do texto padrão */
    background-color: white; /* Cor de fundo da página */
    max-width: 100%; /* Impede que o corpo exceda a largura da tela */
    margin: 0 auto; /* Centraliza horizontalmente */
    padding-top: 50px; /* Espaçamento superior para o cabeçalho fixo */
    font-family: Arial, sans-serif; /* Fonte padrão */
}

a {
    font-family: "Poppins", system-ui; /* Fonte para links */
    font-weight: 420; /* Peso da fonte para links */
    font-style: normal; /* Estilo da fonte */
    font-size: 18px;
}

p {
    font-family: "Poppins", system-ui; /* Fonte para parágrafos */
    font-weight: 350; /* Peso da fonte para parágrafos */
    font-style: normal; /* Estilo da fonte */
}

/* =========================================================
   Header
   ========================================================= */

header {
    position: fixed; /* Fixa o cabeçalho no topo da página */
    top: 0; /* Posiciona no topo */
    left: 0; /* Posiciona à esquerda */
    right: 0; /* Posiciona à direita */
    z-index: 1000; /* Eleva a camada do cabeçalho */
    background-color: white; /* Cor de fundo do cabeçalho */
    height: 50px; /* Altura do cabeçalho */
}

.header-container { /* Container do header */
    display: flex; /* Usando Flexbox para layout */
    justify-content: space-between; /* Espaçamento uniforme entre itens */
    align-items: center; /* Alinha itens verticalmente ao centro */
    
    height: 50px; /* Altura do container */
    padding: 0 80px; /* Margens laterais iguais */
}

nav ul { /* Menu de navegação do header */
    display: flex; /* Usando Flexbox para layout horizontal */
    list-style: none; /* Remove marcas de lista */
}

nav ul li {
    margin: 0 10px; /* Margem entre itens do menu */
}

nav ul li a {
    display: flex; /* Usando Flexbox para layout */
    align-items: center; /* Alinha ícones e texto verticalmente */
    color: black; /* Cor do texto do link */
    text-decoration: none; /* Remove sublinhado */
    transition: color 0.3s; /* Transição suave para mudança de cor */
    animation: colorChange 5s infinite alternate; /* Animação de troca de cor */
    font-size: 17px;
    font-weight: 420; /* Peso da fonte para links */
}

.icon-logo {
    max-width: 33px; /* Tamanho da logo */
    user-select: none; /* Impede seleção do ícone */
    pointer-events: none; /* Ignora eventos do mouse no ícone */
}

.ig-logo {
    max-width: 25px;
    user-select: none;
    pointer-events: none;
    margin-top: 1.5px; /* Adiciona um espaço de 10px acima, empurrando a logo para baixo */
}

/* Media query para smartphones (telas menores que 600px) */
@media (max-width: 900px) {
    .header-container {
        padding: 0 20px; /* Remove as margens laterais grandes */
    }

    nav ul {
        justify-content: space-between; /* Distribui os itens igualmente no header */
        width: 100%; /* Garante que a lista ocupe toda a largura do container */
    }

    nav ul li {
        margin: 10px; /* Remove a margem entre os itens */
    }

    nav ul li a {
        justify-content: center; /* Centraliza os itens dentro de cada link */
        font-size: 20px;

    }
}

/* =========================================================
   Apresentação
   ========================================================= */
.apresentacao {
    text-align: left; /* Alinhamento à esquerda do texto */
    padding-top: 130px; /* Espaçamento superior */
    padding-bottom: 70px; /* Espaçamento inferior */
    background-color: white; /* Cor de fundo da seção de apresentação */
}

.apresentacao-container {
    display: flex; /* Usando Flexbox para layout */
    flex-direction: column; /* Empilha os itens verticalmente */
    justify-content: center; /* Centraliza verticalmente */
    align-items: flex-start; /* Alinha os itens à esquerda */
    max-width: 780px; /* Limita a largura da apresentação */
    margin: 0 auto; /* Centraliza horizontalmente */
    padding: 0 20px 0px; /* Padding lateral e inferior*/
}

.titulo-apresentacao {
    font-size: 55px; /* Tamanho do título */
    margin-bottom: 10px; /* Espaçamento inferior */
    margin-top: 3px;
}

.apresentacao p {
    font-size: 17px; /* Tamanho do texto do parágrafo */
    color: #414145; /* Cor do texto */
    padding-bottom: 35px;
    text-align: justify;

}

.contato {
    color: black;
    text-decoration: none;
}

/* Media Query para telas menores que 750px */
@media (max-width: 800px) {
    .apresentacao-container {
        padding: 0 20px 20px; /* Mantém o padding inferior em 80px, como no desktop */
    }
    .titulo-apresentacao {
        font-size: 45px; /* Tamanho do título */
        margin-bottom: 0px; /* Espaçamento inferior */
        margin-top: 3px;
    }
    .apresentacao {
        padding-top: 130px; /* Espaçamento superior */
        padding-bottom: 30px; /* Espaçamento inferior */
    }
}

/* Novos elementos da seção de apresentação */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: #e0e0e0; /* Fundo cinza claro, compatível com seu tema */
    color: #404040; /* Cor escura, compatível com seus botões */
}

.badge-circle {
    display: flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #404040; /* Mesma cor do btn-primary */
}

.badge-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #404040; /* Mesma cor do btn-primary */
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Botão da seção de apresentação */
.apresentacao-btn {
    display: block;
    padding: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
    background: #fff; /* Fundo branco */
    color: #333; /* Texto escuro */
    border: 1px solid #464646; /* Borda leve, similar ao btn-outline */
}

.apresentacao-btn:hover {
    background: #333; /* Fundo branco */
    color: #fff; /* Texto escuro */
}


/* =========================================================
   Instagram
   ========================================================= */

.instagram-container {
    max-width: 865px;
    margin: 0 auto;
    padding: 0 25px;
    padding-bottom: 10px;
    height: 500px;
    font-size: 18px;
}

.snapwidget-widget {
    width: 100%;
    border: none;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .instagram-container {
        padding-bottom: 10px; /* reduz o espaço */
        height: 450px;        /* altura menor no mobile */
    }

    .snapwidget-widget {
        width: 100%; /* remove o 90%, evita desalinhamento */
    }
}

@media (max-width: 600px) {
    .instagram-container {
        padding-bottom: 10px; /* reduz o espaço */
        height: 390px;        /* altura menor no mobile */
    }

    .snapwidget-widget {
        width: 100%; /* remove o 90%, evita desalinhamento */
    }
}



/* =========================================================
   X (Twitter)
   ========================================================= */

.x-container {
    max-width: 900px; /* mesmo limite do Instagram */
    margin: 0 auto;   /* centraliza horizontalmente */
    padding: 20px 20px 20px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
}

/* Ajuste para mobile */
@media (max-width: 800px) {
    .x-container {
        padding: 0 10px;
        padding-bottom: 30px;
    }
}


/* =========================================================
    Player Profissional - Estilo VSL Clean (Sem sombras)
   ========================================================= */
.video-destaque {
    padding: 10px 20px;
    background-color: white;
}

.vsl-player-container {
    max-width: 780px;
    margin: 0 auto;
    width: 100%;
}

.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    opacity: 1;
    pointer-events: auto;
    transition: none;
}

.controls-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(10px);
    padding: 2px 14px;
    border-radius: 5px;
}

.controls-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
}

.play-btn svg {
    width: 28px;
    height: 28px;
    color: #818cf8;
}

.play-btn .pause-icon {
    display: none;
}

.play-btn.paused .play-icon {
    display: block;
}

.play-btn.paused .pause-icon {
    display: none;
}

.play-btn:not(.paused) .play-icon {
    display: none;
}

.play-btn:not(.paused) .pause-icon {
    display: block;
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #818cf8;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.progress-container:hover .progress-fill {
    background: #a5b4fc;
    height: 6px;
    margin-top: -1px;
}

.control-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.control-btn:hover {
    opacity: 1;
}

.control-btn svg {
    width: 22px;
    height: 22px;
    color: white;
}

@media (max-width: 768px) {
    .video-destaque {
        padding: 0px 15px;
    }

    .controls-bar {
        padding: 8px 12px;
        gap: 10px;
    }

    .play-btn svg {
        width: 24px;
        height: 20px;
    }
}


/* =========================================================
    Seção de Clientes
   ========================================================= */
.clientes {
    padding: 40px 4px;
    background-color: white; /* Mesma cor de fundo da .apresentacao */
    margin-top: 0px; /* Mais perto da .apresentacao */
    margin-bottom: 50px; /* Margem generosa abaixo */
}

.clientes-container {
    max-width: 740px; /* Centralizado com 790px */
    margin: 0 auto;
    text-align: left;
    padding-top: 35px;
}

.clientes-lista-wrapper {
    overflow: hidden; /* Esconde imagens fora do container */
}

.clientes-lista {
    display: flex;
    flex-wrap: nowrap; /* Alinha horizontalmente */
    gap: 20px; /* Espaço entre as imagens */
    list-style: none;
    padding: 0;
    width: 200%; /* Duplica a largura para acomodar a imagem duplicada */
    animation: slide-left 8s linear infinite; /* Animação ajustada para uma imagem */
}

.clientes-lista li {
    flex: 0 0 auto; /* Impede esticamento da imagem */
    width: 100px; /* Mesma largura da imagem para consistência */
}

.clientes-lista img {
    width: 150px; /* Tamanho fixo para a logo */
    height: auto; /* Mantém proporção */
    max-height: 60px; /* Limite de altura */
    object-fit: contain; /* Preserva proporção */
    filter: grayscale(100%); /* Preto e branco */
    opacity: 0.8; /* Opacidade reduzida */
}

/* Responsividade para a seção de clientes */
@media (max-width: 840px) {

    .clientes-container {
    max-width: 780px; /* Centralizado com 790px */
    margin: 0 auto;
    text-align: left;
    padding-top: 30px;
    padding-left: 8px;

    }
    .clientes-lista {
        flex-direction: column; /* Empilha verticalmente */
        align-items: flex-start; /* Alinha à esquerda */
        width: 100%; /* Volta à largura normal */
        animation: none; /* Desativa animação em telas pequenas */
        padding-left: 10px;
        padding-right: 10px;
    }

    .clientes-lista li {
        width: 100%; /* Ocupa toda a largura */
    }

    .clientes-lista img {
        width: 150px; /* Tamanho reduzido */
        filter: grayscale(100%); /* Mantém preto e branco */
    }
}

/* =========================================================
   Galeria de Planilhas
   ========================================================= */
.grade {
    padding: 20px 10px 0px; /* Padding na galeria */
    display: flex; /* Usando Flexbox para layout */
    justify-content: center; /* Centraliza a galeria na página */
    background-color: white; /* Cor de fundo da galeria */
    padding-bottom: 55px;
}

.grade-container {
    display: grid; /* Usando Grid para layout */
    grid-template-columns: repeat(1, 1fr); /* Define uma coluna de igual largura */
    gap: 5px; /* Espaçamento entre as imagens */
    width: 100%; /* Largura total */
    max-width: 100%; /* Limite máximo para centralizar */
    justify-items: center; /* Centraliza as imagens nas colunas */
    /*border: 1px solid #333;     espessura de 2px, cor #333 (cinza escuro), estilo sólido */
    /*border-radius: 10px;        /* cantos arredondados com raio de 8px */
    /*padding: 20px;             /* espaçamento interno (opcional) */
    padding-top: 0px;
}

.grade-container img {
    width: 100%; /* As imagens ocupam toda a largura da coluna */
    max-width: 767px; /* Limita o tamanho máximo das imagens */
    height: auto; /* Mantém a proporção da imagem */
    border-radius: 0; /* Sem arredondamento nos cantos das imagens */
}

/* Media query para dispositivos móveis  */
@media (max-width: 840px) {
    .grade-container {
        grid-template-columns: 1fr; /* Altera para uma coluna em telas pequenas */
        padding: 0px 11px 0px;
    }
}

/* =========================================================
   Seção de Preços
   ========================================================= */
.pricing {
    padding: 20px 0px;
    width: 100%;
    background-color: white;
}

.pricing-container {
    max-width: 790px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: flex-start;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h2 {
    font-family: "Poppins", system-ui;
    font-size: 45px;
    font-weight: 500;
    color: #333333;
}

.pricing-header p {
    font-family: "Poppins", system-ui;
    font-size: 1rem;
    font-weight: 350;
    color: #666;   
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pricing-card.popular {
    border: 1px solid #868686;
    position: relative;
    background-color: white;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #212121;
    color: #fff;
    padding: 4px 16px;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card h3::before {
    content: attr(data-pretitle);
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #212121;  
    margin-top: 10px;  
}

.price {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    background-color: white;
    font-size: 2.25rem;
    font-weight: 500;
    color: #333333;
}

.description-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 24px;
}

.description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 24px;
}

.features {
    flex-grow: 1;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 12px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #e0e0e0;
    border-radius: 50%;
    color: #404040;
}

.btn {
    display: block;
    padding: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 6px;
    text-decoration: none;
}

.btn-primary {
    background: #181818;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn-outline {
    border: 1px solid #e0e0e0;
    color: #333;
}

.btn-outline:hover {
    background: #f0f0f0;
}

.pricing-footer {
    margin-top: 30px;
    margin-bottom: 60px;
}

.pricing-footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #000000;
    padding-bottom: 5px;
}

.contact-link {
    color: #000000;
    text-decoration: none;
}

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

/* Responsividade para a seção de preços */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 3rem;
    }

    .pricing-header h2::before {
        font-size: 1.25rem;
    }

    .pricing-header p {
        font-size: 0.875rem;
    }

    .pricing-card {
        padding: 22px;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .pricing-card h3::before {
        font-size: 1rem;
    }
}

/* =========================================================
   Seção de Dúvidas Atualizada
   ========================================================= */
.section_geral_duvidas {
    padding-bottom: 50px;
}

/* Container da folha A4 */
.duvidas-container {
    background-color: #fff;           /* branco total */
    border: 1px solid #c5c5c5;           /* cinza escuro */
    border-radius: 8px;               /* cantos levemente arredondados */
    padding: 40px;                     /* espaçamento interno */
    max-width: 780px;                  /* largura visual A4 */
    margin: 0 auto 15px;                    /* centralizado */
    display: flex;
    flex-direction: column;
    gap: 35px;                         /* espaçamento entre perguntas */
}

/* Título geral dentro da folha */
.titulo-geral {
    font-size: 42px;
    font-weight: 500;                  /* mais peso, mas não negrito */
    color: #000;
    margin-bottom: 25px;
    margin-top: 20px;
}

/* Cada pergunta */
.duvida {
    display: flex;
    flex-direction: column;
    gap: 12px;                         /* espaço entre título e resposta */
}

.titulo-duvida {
    font-size: 25px;                    /* maior destaque */
    font-weight: 500;                   /* mais peso visual */
    color: #000;
}

.duvida p {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin: 0;
    text-align: justify;
}

/* Rodapé da seção */
.pricing-footer {
    margin-top: 17px;
    font-size: 5px;
}

.contact-link {
    color: #000000;
    text-decoration: none;            /* sem sublinhado por padrão */
    transition: text-decoration 0.3s;
}

.contact-link:hover {
    text-decoration: underline;        /* aparece só no hover */
}





/* Planilhas Gratuitas */
.planilhas {
    display: flex; /* Usando Flexbox para layout */
    flex-direction: column; /* Empilha os itens verticalmente */
    align-items: flex-start; /* Alinha os itens à esquerda */
    justify-content: center; /* Centraliza verticalmente */
    max-width: 800px; /* Largura máxima da seção de planilhas */
    margin: 0 auto; /* Centraliza horizontalmente */
    padding: 0 0px; /* Padding lateral */
}

.lista-planilhas {
    list-style: none; /* Remove marcas de lista */
    padding: 0; /* Remove padding */
    width: 100%; /* Ocupa todo o espaço disponível */
}

.lista-planilhas li {
    display: flex; /* Usando Flexbox para layout */
    align-items: center; /* Alinha ícones e texto verticalmente */
    margin-bottom: 2px; /* Espaçamento inferior entre os itens */
    font-family: 'Poppins', sans-serif; /* Fonte dos itens da lista */
    padding: 4px; /* Espaçamento interno para as bordas */
    border-radius: 0px; /* Arredondar os cantos */
}

.lista-planilhas li img {
    width: 30px; /* Largura do ícone da planilha */
    height: auto; /* Mantém a proporção do ícone */
    margin-right: 8px; /* Espaçamento à direita do ícone */
    user-select: none; /* Impede seleção do ícone */
    pointer-events: none; /* Ignora eventos do mouse no ícone */
}

.lista-planilhas li a {
    font-family: "Poppins", system-ui; /* Fonte dos links da lista */
    font-weight: 350; /* Peso da fonte dos links */
    font-style: normal; /* Estilo da fonte dos links */
    font-size: 18px; /* Tamanho da fonte dos links */
    color: #000; /* Cor do texto dos links */
}













/* Chat Flutuante */
/* Chat Flutuante */
#chatWidget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    z-index: 9999;
}

/* Bolinha flutuante */
#chatBubble {
    width: 50px;
    height: 50px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
#chatBubble img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
#chatBubble:hover { transform: scale(1.1); }

/* Topo preto do chat */
#chatBox::before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    background: #111;
}

/* Janela de chat */
#chatBox {
    display: none;
    flex-direction: column;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    height: 400px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Mensagens */
#chatMessages {
    padding: 12px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    min-height: 300px;
}


.message {
    max-width: 85%; /* Limite de largura */
    padding: 12px 16px;
    border-radius: 12px;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.userMsg {
    align-self: flex-end;
    background: #e0e0e0;
    color: #111;
    border-radius: 12px 12px 4px 12px;
}

.botMsg {
    align-self: flex-start;
    background: #111;
    color: #fff;
    border-radius: 12px 12px 12px 4px;
    text-align: left;
}

/* Input e botão */
#chatInputWrapper {
    display: flex;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #ddd;
}
#chatInput {
    flex: 1;
    padding: 10px 14px;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    border: 1px solid #ccc;
    color: #111;
    background: #fff;
}
#chatInput::placeholder { color: #bbb; }
#sendBtn {
    margin-left: 8px;
    width: 44px;
    height: 44px;
    background: #111;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
#sendBtn:hover { background: #333; }
#sendBtn::after {
    content: '➤';
    color: #fff;
    font-size: 18px;
}










/* ============================= */
/* Seção: Catálogo de Produtos   */
/* ============================= */

.catalogo {
    max-width: 810px; /* Ajuste a largura máxima do catálogo */
    margin: 0 auto;   /* Centraliza horizontalmente */
    padding: 40px 20px; /* Espaçamento interno */
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 colunas por padrão */
    gap: 24px;
}

@media (max-width: 900px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 600px) {
    .produtos-grid {
        grid-template-columns: 1fr; /* 1 coluna em mobile */
    }
}

.produto-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.produto-card:hover {
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.produto-titulo {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.produto-descricao {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 16px;
    flex-grow: 1;
}

.produto-valor {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.produto-btn {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
    text-decoration: none;
}

.produto-btn:hover {
    background: #1a1a1a;
    color: #fff;
}










/* =========================================================
   Rodapé
   ========================================================= */
footer {
    font-size: 0.8rem; /* Tamanho da fonte do rodapé */
    color: black; /* Cor do texto do rodapé */
    padding: 10px; /* Padding do rodapé */
    user-select: none; /* Impede seleção do ícone */
    pointer-events: none; /* Ignora eventos do mouse no ícone */
}

/* Container do Rodapé */
.footer-container {
    display: flex; /* Usando Flexbox para layout */
    flex-direction: column; /* Faz os itens ficarem um embaixo do outro */
    align-items: center; /* Centraliza os itens horizontalmente */
    max-width: 100%; /* Limite máximo da largura do rodapé */
    margin: 0 auto; /* Centraliza horizontalmente */
}