/*-------- No rodapé acima dos dos blocos, produtos, páginas, links uteis etc... ------------ */
.highlight-section {
    padding: 50px 20px;
    background-color: #2e2f46; /* fundo escuro */
    color: #fff;
}

.highlight-section .content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* Espaçamento entre texto e botões */
}

.highlight-section .text-container {
    max-width: 60%;
}

.highlight-section .text-container h2,
.highlight-section .text-container p {
    color: #fff; /* texto branco explicitamente */
}

.highlight-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.highlight-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.highlight-section .button-container {
    display: flex;
    gap: 15px; /* Espaçamento horizontal entre os botões */
}

.highlight-section .primary-btn,
.highlight-section .secondary-btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px; /* Menos arredondado */
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff; /* texto branco para ambos os botões */
}

.highlight-section .primary-btn {
    background-color: #005ca3; /* Amarelo vibrante */
    border: 2px solid #fff;
}

.highlight-section .primary-btn:hover {
    background-color: #ffa000;
    transform: scale(1.05);
}

.highlight-section .secondary-btn {
    background-color: #005ca5; /* Roxo suave */
    border: 2px solid #fff;
}

.highlight-section .secondary-btn:hover {
    background-color: #5530cc;
    transform: scale(1.05);
}

/* Adaptação para telas pequenas (celulares/tablets) */
@media (max-width: 768px) {
  .highlight-section .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px; /* maior espaçamento vertical */
  }

  .highlight-section .text-container {
    max-width: 100%;
  }

  .highlight-section .button-container {
    justify-content: center;
  }
}
/*-------- No rodapé acima dos dos blocos, produtos, páginas, links uteis etc... ------------ */

/*-------- Botão instalar App ------------ */
<style>
  @keyframes pulseColors {
    0% {
      background-color: #007bff;
      box-shadow: 0 0 8px #0056b3;
    }
    25% {
      background-color: #00aaff;
      box-shadow: 0 0 12px #0077cc;
    }
    50% {
      background-color: #0056b3;
      box-shadow: 0 0 16px #003d7a;
    }
    75% {
      background-color: #0088ff;
      box-shadow: 0 0 12px #0066cc;
    }
    100% {
      background-color: #007bff;
      box-shadow: 0 0 8px #0056b3;
    }
  }

  #install-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 10000;
    font-weight: 600;
    font-size: 16px;
    display: none;
    animation: pulseColors 4s infinite ease-in-out;
    box-shadow: 0 0 12px #0056b3;
    user-select: none;
  }

 #install-tooltip {
  position: fixed;
  bottom: calc(20px + 60px); /* Acima do botão, ajustando a altura */
  left: 50%;                 /* Centraliza horizontalmente */
  transform: translateX(-50%); /* Corrige a centralização */
  background: rgba(0, 0, 0, 0.85); /* Fundo escuro com opacidade */
  color: #fff;               /* Cor do texto */
  padding: 8px 16px;         /* Espaçamento interno */
  border-radius: 8px;        /* Bordas arredondadas */
  font-size: 14px;           /* Tamanho da fonte */
  font-weight: 500;          /* Peso da fonte */
  display: none;             /* Escondido por padrão */
  z-index: 10001;            /* Alta prioridade no empilhamento */
  max-width: 90%;            /* Garante que não ultrapasse a tela no celular */
  text-align: center;        /* Centraliza o texto */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Sombra */
  word-wrap: break-word;     /* Garante quebra de linha se necessário */
  user-select: none;         /* Texto não selecionável */
}

  #countdown {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #d32f2f;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    line-height: 22px;
    text-align: center;
    box-shadow: 0 0 6px #b71c1c;
    user-select: none;
  }
</style>
/*-------- Botão instalar App ------------ */

/*-------- Depoimento de clientes ------------ */
.stars .fa-star {
    color: #ffa800; /* Amarelo mais claro */
}
.fa-quote-left {
    color: #ffa800; /* Cor do ícone */
    font-size: 24px; /* Tamanho do ícone */
    margin-right: 8px; /* Espaço entre o ícone e o texto */
}
/*-------- Depoimento de clientes ------------ */

/*-------- Modal do Cupom de desconto ------------ */
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    #exitModal {
        display: none; /* Inicialmente oculto */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7); /* Fundo escuro */
        justify-content: center;
        align-items: center;
        z-index: 1000; /* Certifique-se que o modal está acima de outros elementos */
    }

    .modal-content {
        background: #fff;
        width: 100vw;
        height: 100vh;
        padding: 40px 20px;
        box-sizing: border-box;
        position: relative;
        animation: fadeIn 0.4s ease-out;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centraliza verticalmente */
        align-items: center; /* Centraliza horizontalmente */
    }

    /* Botão de fechar */
    .close-tab {
        position: absolute;
        top: 10px;
        right: 20px; /* Aumentado para afastar da lateral direita */
        background: #ff0000; /* Fundo vermelho */
        color: white; /* Cor do "X" */
        border: none;
        font-size: 24px; /* Tamanho do "X" */
        font-weight: bold;
        cursor: pointer;
        width: 40px; /* Largura do botão */
        height: 40px; /* Altura do botão */
        border-radius: 50%; /* Fundo arredondado */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1100; /* Certifique-se que está acima do conteúdo */
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .close-tab:hover {
        background: #e00000; /* Fundo mais escuro no hover */
        transform: scale(1.1); /* Efeito de "crescimento" */
    }

    /* Botão "Participar" */
    .participar-button {
        background-color: #ff6600;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 18px;
        cursor: pointer;
        width: 100%;
        max-width: 400px;
        transition: background-color 0.3s ease;
    }

    .participar-button:hover {
        background-color: #e55b00;
    }

    /* Imagem do modal */
    .modal-content img {
        width: 80px;
        height: auto;
        margin-bottom: 30px;
    }

    /* Título do modal */
    .modal-content h2 {
        font-size: 32px;
        color: #333;
        margin-bottom: 20px;
    }

    /* Texto do modal */
    .modal-content p {
        font-size: 18px;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.5;
        max-width: 600px;
        text-align: center;
    }

    /* Campo de entrada */
    .modal-content input {
        width: 100%;
        max-width: 400px;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 18px;
        box-sizing: border-box;
    }

    /* Animação do modal */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
</style>

/*-------- Modal do Cupom de desconto ------------ */


/*-------- Personalização dos icones das redes sociais ------------ */
    /* Configuração básica da lista */
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .social-icon {
        position: relative;
    }

    /* Estilo do link */
    .social-icon a {
        color: #333;
        text-decoration: none;
        font-size: 24px;
        transition: transform 0.3s ease;
    }

    .social-icon a:hover {
        transform: scale(1.2);
    }
/*-------- Personalização dos icones das redes sociais ------------ */

/*-------- Menu fixo no topo ------------ */
    /* Tooltip */
    .tooltip {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #000;
        color: #fff;
        padding: 5px 10px;
        font-size: 14px;
        border-radius: 4px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Seta */
    .tooltip::after {
        content: '';
        position: absolute;
        top: 100%; /* Seta fica abaixo do tooltip */
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: #000 transparent transparent transparent;
    }

    /* Exibir tooltip ao passar o mouse */
    .social-icon:hover .tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-5px);
    }

/* Estilo para manter o menu fixo ao rolar */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;  /* Garante que o menu fique acima de outros elementos */
    background-color: #fff;  /* Cor de fundo padrão */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Sombra sutil */
    padding: 10px 0;  /* Ajuste o espaçamento superior e inferior */
    width: 100%;  /* Garante que ocupe a largura total */
    transition: all 0.3s ease;  /* Transição suave para o menu */
}

/* Adiciona estilo quando o menu está fixo */
.sticky-header.sticky-active {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);  /* Sombra mais forte */
    background-color: #f8f9fa;  /* Cor de fundo alterada quando fixo */
}

/* Garantir que o conteúdo abaixo do menu não fique sobrepondo */
body {
    padding-top: 70px; /* Ajuste conforme necessário para o tamanho do seu menu */
}
/*-------- Menu fixo no topo ------------ */


/*-------- Formulário de contato ------------ */
        .form_style {
            width: 100%;
            padding: 10px;
            margin: 5px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        /* Mensagem de erro */
        .error-message {
            color: red;
            font-size: 12px;
            display: none;
            margin-top: 5px;
        }

        /* Estilo para os campos quando a validação falha */
        .input-error {
            border-color: red;
        }

        /* Estilo para os campos quando a validação é bem-sucedida */
        .input-success {
            border-color: green;
        }

        /* Animação para os campos com erro */
        @keyframes shake {
            0% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            50% { transform: translateX(5px); }
            75% { transform: translateX(-5px); }
            100% { transform: translateX(0); }
        }

        .shake {
            animation: shake 0.3s ease;
        }
/* Estilos para a caixa de confirmação (checkbox) */
#confirmation {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 2px solid #007bff; /* Cor da borda */
    border-radius: 4px;
    background-color: #f0f0f0; /* Cor de fundo */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Quando o checkbox é marcado */
#confirmation:checked {
    background-color: #007bff; /* Cor de fundo quando marcado */
    border-color: #0056b3; /* Cor da borda quando marcado */
}

/* Garantir que a cor do texto da checkbox seja branca */
form input[type="checkbox"]:checked + label,
form input[type="checkbox"]:not(:checked) + label {
    color: white !important; /* Garantir que o texto seja branco */
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    cursor: pointer;
}



/* Adiciona uma cor ao passar o mouse sobre o checkbox */
#confirmation:hover {
    border-color: #0056b3; /* Cor da borda ao passar o mouse */
}
/*-------- Formulário de contato ------------ */


/*-------- Página MEU IP FAQ ------------ */
    .faq-container {
        border-top: 1px solid #ddd;
    }
    .faq-item {
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }
    .faq-question {
        background: none;
        border: none;
        text-align: left;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        cursor: pointer;
        color: #333;
        font-weight: bold;
    }
    .faq-answer {
        display: none;
        padding: 10px;
        background-color: #f9f9f9;
        font-size: 14px;
    }
    .faq-question:focus {
        outline: none;
    }
/*-------- Página MEU IP FAQ ------------ */
/*-------- Página MEU IP Mapa ------------ */
        #mapa-ip {
            height: 300px;
            width: 100%;
        }
.resources-section .nav-tabs .nav-link {
    color: #333;
    border: none;
    font-weight: bold;
}
.resources-section .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
}
.resources-section .tab-content {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-top: 15px;
}
/*-------- Página MEU IP Mapa ------------ */

/*-------- Página MEU IP Esqueci qual é o bloco- kkkkk ------------ */
        .tab-content {
            margin-top: 20px;
        }
        .tool-box {
            margin-bottom: 30px;
        }
        .tool-box h4 {
            margin-bottom: 15px;
        }
        .tool-box input, .tool-box button {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
        }
/*-------- Página MEU IP Esqueci qual é o bloco- kkkkk ------------ */

/*-------- Página MEU IP Ajustes do estilo para abas e ferramentas ------------ */
        .tab-content {
            margin-top: 20px;
        }
        .tool-box {
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
            background-color: #f9f9f9;
        }
        .tool-box h5 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .tool-box p {
            margin-bottom: 15px;
            color: #555;
        }
        .tool-box input, .tool-box button {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            border-radius: 5px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        .tool-box button {
            background-color: #007bff;
            color: #fff;
            border: none;
            cursor: pointer;
        }
        .tool-box button:hover {
            background-color: #0056b3;
        }
        .tabs-box {
            margin-top: 30px;
        }
/*-------- Página MEU IP Ajustes do estilo para abas e ferramentas ------------ */

/*-------- Página MEU IP - Bloco IP Bloqueado ------------ */
  .feature2-con .col-lg-6.text-column {
    color: white;
  }
  .feature2-con .col-lg-6.text-column h6,
  .feature2-con .col-lg-6.text-column p {
    color: white;
  }

  /* Texto preto para telas pequenas (celular) */
  @media (max-width: 767px) {
    .feature2-con .col-lg-6.text-column {
      color: black !important;
    }
    .feature2-con .col-lg-6.text-column h6,
    .feature2-con .col-lg-6.text-column p {
      color: black !important;
    }
  }
/*-------- Página MEU IP - Bloco IP Bloqueado ------------ */

/*-------- Tooptip no cabeçalho ------------ */
.other_list {
  display: flex;
  align-items: center;
  gap: 8px;           /* Espaço entre todos os itens */
  margin-right: 8px;   /* Espaçamento da lista para a borda direita */
  box-sizing: border-box;
  padding-right: 0;
}

.other_list_item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Não use margin para não conflitar com gap */
}

.register {
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid #cbd5e0;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.register:hover {
  color: #0056b3;
  border-color: #0056b3;
}

.custom-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #cbd5e0;
  border-radius: 50%;
  background-color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.custom-tooltip:hover {
  background-color: #007bff;
  border-color: #0056b3;
}

.custom-tooltip img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}

.custom-tooltip:hover img {
  filter: invert(1);
}

.custom-tooltip::after {
  content: attr(data-custom-tooltip);
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #007bff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1000;
}

.custom-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

.custom-tooltip::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #007bff transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.custom-tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Adicionando efeito de pulsar apenas ao botão "Já sou cliente" */
.custom-tooltip.pulsar {
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
}

@-webkit-keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, 0.01);
  }
}

@keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, 0.01);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .register {
    display: none; /* Esconde o link "Já sou cliente" */
  }
  .other_list {
    margin-right: 0;      /* Remove margem direita */
    padding-right: 8px;   /* Garante 8px da borda direita */
    gap: 8px;             /* Espaçamento entre ícones */
  }
}

/* Ícone específico do toggle-bar (menu) */
/* Mantém fundo branco e borda padrão no hover */
.toggle-bar .custom-tooltip:hover {
  background-color: #fff !important;
  border-color: #cbd5e0 !important;
}

/* Ícone fica preto no hover */
.toggle-bar .custom-tooltip:hover img.custom-menu-icon {
  filter: invert(0) !important;
}

/* Estilo do ícone normal (fora do hover) */
.custom-menu-icon {
  width: 20px;
  height: auto;
  display: block;
  filter: invert(1); /* Ícone branco normalmente */
}
/*-------- Tooptip no cabeçalho ------------ */

/*--------- Botões do WhatsApp ------------- */
 #ws-btn {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Alterado para posicionar no lado esquerdo */
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0;
    animation: pulse 2.5s infinite;
}

  /* Badge contador */
  #ws-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Animação pulse */
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 12px 8px rgba(37, 211, 102, 0); }
  }

  /* Modal container */
  #ws-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease forwards;
    z-index: 9999;
  }
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /* Modal conteúdo */
  .ws-modal-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
    text-align: center;
  }

  .ws-modal-content h3 {
    margin-top: 0;
    font-size: 18px;
  }

  /* Inputs e selects */
  .ws-modal-content input,
  .ws-modal-content select,
  .ws-modal-content button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-sizing: border-box;
  }

  /* Input erro */
  .error {
    border-color: red !important;
  }

  /* Botões */
  #ws-send-btn {
    background-color: #2475ff;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }

  #ws-send-btn:hover {
    background-color: #1ebe57;
  }

  .ws-close-btn {
    background: red;
    color: white;
    border: none;
    cursor: pointer;
  }

  /* Ícone WhatsApp SVG */
  #ws-icon {
    width: 30px;
    height: 30px;
    fill: white;
  }

  /* Responsividade */
  @media (max-width: 480px) {
    .ws-modal-content {
      width: 95%;
      padding: 15px;
    }
    #ws-btn {
      width: 50px;
      height: 50px;
    }
  }

.ws-modal-content input:hover,
.ws-modal-content select:hover {
  border-color: #2475ff;
  box-shadow: 0 0 4px rgba(37, 211, 102, 0.5);
}

.ws-modal-content input:focus,
.ws-modal-content select:focus {
  outline: none;
  border-color: #2475ff;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.7);
}

.error {
  border-color: red !important;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.7);
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #2475ff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*--------- Botões do WhatsApp ------------- */

/*--------- Esconde o botão da seção de Depoimentos para melhorar a acessibilidade ------------- */
.owl-prev,
.owl-next {
  display: none !important;
}
/*--------- Esconde o botão da seção de Depoimentos para melhorar a acessibilidade ------------- */

/*--------- Botões de compartilhamento em redes sociais ------------- */
#social-share {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 70px;
  }

  #close-share {
    position: absolute;
    top: -15px;
    left: 60px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #close-share:hover {
    background: #f3f3f3;
  }

  /* Botão nativo inicia oculto */
  #native-share-button {
    display: none;
  }

  /* Mostra o botão nativo em telas até 767px, mas só vamos ativar via JS */
  @media (max-width: 767px) {
    #native-share-button.show {
      display: block;
      cursor: pointer;
      padding: 6px 8px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background: #007bff;
      color: white;
      transition: background 0.3s ease;
    }
    #native-share-button.show:hover {
      background: #0056b3;
    }
  }

#native-share-button {
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* Oculto por padrão */
  padding: 0;
  margin: 0;
}

#native-share-button svg {
  width: 25px;
  height: 25px;
  fill: #fff; /* Branco */
  transition: fill 0.3s;
}

#native-share-button:hover svg {
  fill: #ddd; /* Tom mais claro ao passar o mouse */
}
/*--------- Botões de compartilhamento em redes sociais ------------- */