/* Definição de Cores e Fontes (Variáveis CSS) */
:root {
    --primary-color: #112d4e; /* Cor Principal */
    --secondary-color: #dbe2ef; /* Cor Secundária */
    --terciary-color: #b89f14d3; /* Cor Terciária */
    --text-dark: #112d4e; /* Cor do Texto Escuro */
    --text-light: #f9f7f7; /* Cor do Texto Claro */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* Importando fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* Estilos Gerais */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Cabeçalho (Atualizado) --- */
.site-head {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* NOVO: Esta regra permite que o menu do cabeçalho vá bem para a direita da tela, sem ficar "preso" no meio */
.site-head_bottom.container {
    max-width: 1500px; /* Aumenta o limite máximo só no cabeçalho */
    width: 95%; /* Garante que não fique colado nas bordas laterais */
}

.site-head_top {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 0;
    text-align: right;
}
.site-head_top--menu ul {
    list-style: none;
    margin: 0;
    padding: 0 15px;
    display: inline-flex;
}
.site-head_top--menu li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0 1rem;
    font-size: 0.9rem;
}
.site-head_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.site-head_logo img {
    max-height: 60px;
}

/* NOVO ESTILO PARA O MENU HAMBÚRGUER */
.btn-toggle-menu {
    display: none; /* Esconde em desktop */
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}
.site-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; /* Garante alinhamento vertical dos itens do menu */
}
.site-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    padding: 0 1rem;
    transition: color 0.3s;
}
.site-nav ul li a:hover,
.main-nav li a.active {
    color: var(--terciary-color);
    font-weight: bold;
}

/* --- Botão Emitir NFs no Menu --- */
.site-nav ul li.nav-btn-nfs {
    margin-left: 10px; /* Espaço para afastar do link 'Solicitar proposta' */
}
.site-nav ul li.nav-btn-nfs a {
    background-color: var(--primary-color) !important; /* Cor Primária */
    color: var(--text-light) !important; /* Texto Branco */
    padding: 10px 25px !important;
    border-radius: 30px !important; /* Bordas arredondadas */
    font-weight: bold;
    transition: all 0.3s ease !important;
    display: inline-block;
}
.site-nav ul li.nav-btn-nfs a:hover {
    background-color: var(--terciary-color) !important; /* Muda no Hover */
    color: var(--text-light) !important;
    transform: scale(1.05); /* Pequeno destaque de aproximação */
}

/* --- REGRAS DE RESPONSIVIDADE (Menu) --- */
@media (max-width: 768px) {
    /* Mostra o botão hambúrguer */
    .btn-toggle-menu {
        display: block;
        z-index: 100;
    }

    /* Esconde o menu de navegação por padrão */
    .site-nav {
        display: none;
        position: absolute;
        top: 100px; /* Posição abaixo do cabeçalho */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 8px 10px rgba(0,0,0,0.1);
        z-index: 90;
        height: auto;
        padding-bottom: 1rem;
    }

    /* CORREÇÃO: Esta classe, ativada pelo JS, faz o menu aparecer */
    .site-nav.is-open {
        display: block;
    }

    /* Estiliza os links do menu em mobile (vertical) */
    .site-nav ul {
        flex-direction: column;
        width: 100%;
    }
    .site-nav ul li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    .site-nav ul li a {
        display: block;
        padding: 0.75rem;
    }
    
    /* Ajuste do botão Emitir NFs no Mobile */
    .site-nav ul li.nav-btn-nfs {
        margin-top: 15px;
        margin-left: 0;
    }
    .site-nav ul li.nav-btn-nfs a {
        display: inline-block;
        width: auto;
    }

    /* Garante que o logo e o botão fiquem alinhados */
    .site-head_bottom {
        /* SOLUÇÃO DEFINITIVA: Inverte a ordem E garante o espaço nas pontas */
        display: flex !important; /* Garante que o flexbox esteja ativo */
        flex-direction: row-reverse !important; /* Coloca o botão à direita e o logo à esquerda */
        justify-content: space-between !important; /* Empurra os itens para as pontas */
        align-items: center !important;
        flex-wrap: nowrap;
        padding: 1rem 15px; /* Adiciona o espaçamento interno necessário em mobile */
        width: 100% !important; /* Volta ao normal no celular */
    }
}

/* --- Seção de Banner --- */
.sec-banner {
    position: relative;
    width: 100%;
    /* Altura reduzida para 50vh (50% da altura da tela) em dispositivos maiores */
    height: 82vh; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-image {
    width: 100%;
    height: 100%;
    background-image: url('logo/banner.png'); /* Sua imagem 1620x678 */
    background-size: cover; /* Garante que a imagem cubra o espaço sem distorcer, cortando as bordas, se necessário */
    background-position: center center; /* Centraliza a parte mais importante da imagem */
    background-repeat: no-repeat;
}

/* --- Responsividade para Banners (Smartphones e Tablets) --- */
@media (max-width: 768px) {
    .sec-banner {
        /* Aumenta a proporção vertical em telas menores para melhor visualização */
        height: 300px; /* Altura fixa ou uma proporção maior em telas menores */
    }
}

/* --- Seção de Serviços da Página Inicial --- */
.sec-services {
    padding: 4rem 0;
    text-align: center;
}
.sec-services h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 -10px;
}
.grid-4 {
    width: calc(33.33% - 20px);
    margin: 10px;
    box-sizing: border-box;
}
.box-service {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-radius: 10px;
    overflow: hidden;
}
.box-service:hover {
    transform: translateY(-5px);
}
.card-service {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
    background-color: #fff;
    height: 100%;
}
.card-service_img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.card-service_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}
.card-service:hover .card-service_img img {
    transform: scale(1.05);
}
.card-service_content {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
}
.card-service_content--title {
    color: var(--text-dark);
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.card-service_content p {
    font-size: 0.95rem;
}
.card-service_btn {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}
.card-service:hover .card-service_btn {
    background-color: var(--terciary-color);
}

/* --- Seção de Parcerias --- */
.sec-partnerships {
    padding: 4rem 0;
    text-align: center;
}
.partners-subtitle {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}
.parceiro-logo img {
    max-width: 100px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.parceiro-logo img:hover {
    filter: grayscale(0%);
}

/* --- Rodapé --- */
.main-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 0; 
    position: relative;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}
.site-foot_sub {
    padding: 1.25rem 0; 
}

/* GRID E ALINHAMENTO (Regras para centralizar e dividir o conteúdo)*/
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0 -10px;
}
.foot-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Definição das colunas: Esquerda (35%) | Centro (30%) | Direita (35%) */
.grid-5 {
    width: 35%; /* Direitos Autorais - Esquerda */
    padding: 0 10px;
    box-sizing: border-box;
    text-align: left;
}
.grid-6 {
    width: 30%; /* Redes Sociais - Centro (menor, pois os ícones são pequenos) */
    padding: 0 10px;
    box-sizing: border-box;
}
.grid-1 {
    width: 35%; /* Logo Dev - Direita */
    padding: 0 10px;
    box-sizing: border-box;
    text-align: right; 
}

/* Estilização dos elementos do rodapé */
.foot-copy p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3; /* Espaçamento menor entre as linhas de texto */
}

.foot-social .social-media {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* CENTRALIZA os ícones na coluna central */
    gap: 15px;
    width: 100%;
}
.foot-social .social-media a {
    color: var(--text-light); /* Garante que os ícones fiquem brancos */
    font-size: 1.2rem;
    transition: color 0.3s;
}
.foot-social .social-media a:hover {
    color: var(--terciary-color); 
}

.logo-TG img {
    max-width: 50px; /* Diminuído para caber na coluna */
    height: auto;
    display: block;
    margin-left: auto; /* Garante alinhamento à direita */
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    .main-footer {
        padding: 1rem 0;
    }
    .foot-grid {
        flex-direction: column;
        text-align: center;
    }
    /* Em mobile, todos os grids ocupam a largura total e são centralizados */
    .grid-5, .grid-6, .grid-1 {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0;
        text-align: center !important; 
    }
    .foot-social .social-media {
        justify-content: center;
    }
    .logo-TG img {
        margin: 0 auto;
    }
}

/* --- Página Sobre --- */
.page-content {
    padding-top: 2rem;
}
.sec-intro--title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}
.sec-intro--subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}
.sec-about-us {
    padding: 4rem 0;
}
.about-us_content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}
.about-us_content.reverse {
    flex-direction: row-reverse;
}
.about-us_img {
    flex: 1;
}
.about-us_img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.about-us_text {
    flex: 1;
}
.about-us_text h3 {
    font-size: 2rem;
    color: var(--text-dark);
}

/* --- Seção do Time (NOVO ESTILO DE CARD) --- */
.sec-team {
    padding: 2rem 0;
    text-align: center;
}
.sec-team h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}
.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.team-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: 250px; /* Largura ajustada para o card */
    overflow: hidden;
    /* Ajuste a altura do card ou deixe o conteúdo definir */
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-card_img {
    width: 100%;
    height: 200px; /* Altura da imagem dentro do card */
    object-fit: cover; /* Garante que a imagem preencha sem distorcer */
    display: block;
}
.team-card_content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1; /* Faz o conteúdo ocupar o espaço restante */
}
.team-card_name {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
}
.team-card_role {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}
.team-card_btn {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}
.team-card:hover .team-card_btn {
    background-color: var(--terciary-color); /* Cor do hover do botão */
}

/* --- Página de Serviços (Detalhe) --- */
.service-detail-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}
.service-detail-section:nth-of-type(even) {
    background-color: #fff;
}
.service-detail-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.service-detail-section:nth-of-type(even) .service-detail-grid {
    flex-direction: row-reverse;
}

/* --- Página de Serviços (Detalhe) - Correção da Imagem Redonda --- */

.service-detail-img {
    /* Mantido: para que o bloco não ocupe 100% da coluna e possamos centralizar */
    max-width: 350px; 
}
.service-detail-img img {
    /* NOVO ESTILO: FORÇA UM QUADRADO PERFEITO */
    width: 450px; 
    height: 450px; 
    
    border-radius: 50%; /* Torna a forma um círculo */
    object-fit: cover; /* Faz a imagem preencher o círculo sem esmagar */
    
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block; /* Garante que a imagem se comporte como um bloco */
}

/* Regras de Responsividade para Centralizar em Mobile */
@media (max-width: 768px) {
    /* ... (outras regras de mobile) ... */
    .service-detail-img {
        order: 1;
        margin-bottom: 2rem;
        /* Centraliza o bloco da imagem em telas menores */
        margin-left: auto;
        margin-right: auto; 
    }
}

.service-detail-text {
    flex: 1;
}
.service-detail-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
}
.service-detail-text p {
    text-align: justify; /* <-- REGRA ADICIONADA AQUI */
    font-size: 1rem;
    margin-bottom: 1rem;
}
.service-detail-text ul {
    list-style: none;
    padding-left: 0;
}
.service-detail-text ul li {
    background: url('caminho/para/icone-check.png') no-repeat left 5px;
    padding-left: 25px;
    margin-bottom: 10px;
    background-size: 15px;
}

/* --- Seção de Posts do Blog --- */
.sec-blog-posts {
    padding: 2rem 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
}
.post-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    overflow: hidden;
}
.post-card:hover {
    transform: translateY(-5px);
}
.post-card_img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.post-card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}
.post-card:hover .post-card_img img {
    transform: scale(1.05);
}
.post-card_content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.post-card_title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--primary-color);
}
.post-card_date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
}
.post-card_excerpt {
    flex-grow: 1;
    margin-bottom: 1rem;
}
.post-card_read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.post-card_read-more:hover {
    text-decoration: underline;
}

/* --- Estilos para Páginas de Postagem --- */
.post-content {
    padding: 4rem 0;
}
.post-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}
.post-date {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    margin-bottom: 2rem;
}
.post-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.post-body p {
    margin-bottom: 1.5rem;
}
.post-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 10px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Página de Contato --- */
.sec-contact {
    padding: 4rem 0;
}
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}
.contato-info {
    flex: 1;
}
.contato-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.contato-info i {
    color: var(--primary-color);
    margin-right: 10px;
}
.redes-sociais {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
}
.redes-sociais a {
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: color 0.3s;
}
.redes-sociais a:hover {
    color: var(--primary-color);
}
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.mapa {
    width: 100%;
    height: 350px;
}
.contato-form {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contato-form input,
.contato-form textarea,
.contato-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.contato-form input:focus,
.contato-form textarea:focus,
.contato-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.contato-form button {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contato-form button:hover {
    background-color: #112d4e;
}
.privacidade {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}
.privacidade a {
    color: var(--primary-color);
    text-decoration: none;
}
.privacidade i {
    color: #666;
    margin-right: 5px;
}

/* --- Estilos para a seção de documentos adicionais --- */
.documents-title {
    margin-top: 3rem;
}
.documents-list {
    margin-bottom: 2rem;
}
.documents-list li {
    background: none;
    padding-left: 0;
}
.documents-list li a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}
.documents-list li a:hover {
    text-decoration: none;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .site-head_bottom {
        flex-direction: column;
        text-align: center;
    }
    .site-nav ul {
        justify-content: center;
        margin-top: 1rem;
    }
    /* Garante que os cards de serviço ocupem 100% da largura */
    .grid-4 {
        width: 100%;
        margin: 10px 0;
        padding: 0;
    }
    
    .parceiro-logo img {
        max-width: 100px;
    }
    .about-us_content, .service-detail-grid {
        flex-direction: column;
        text-align: center;
    }
    .about-us_content.reverse, .service-detail-section:nth-of-type(even) .service-detail-grid {
        flex-direction: column;
    }
    .service-detail-text {
        order: 2;
    }
    .service-detail-img {
        order: 1;
        margin-bottom: 2rem;
    }
    .service-detail-text ul {
        text-align: left;
    }
    .contato-grid {
        grid-template-columns: 1fr;
    }

}
/* --- Estilo para a página atual na navegação --- */
.main-nav li a.active {
    color: var(--terciary-color);
    font-weight: bold;
}

/* --- NOVO BOTÃO FLUTUANTE COMPLETO --- */
.whatsapp-full-link {
    /* Container principal que posiciona e agrupa TUDO */
    position: fixed;
    bottom: 90px;    /* CORREÇÃO: Altura ajustada para 90px */
    right: 40px;
    z-index: 2147483647;
    text-decoration: none;
    
    /* ORGANIZAÇÃO INTERNA: Alinha o balão (à esquerda) e o ícone (à direita) */
    display: flex;             
    flex-direction: row-reverse; /* GARANTE LADO A LADO E INVERTIDO (balão na esq e icone na dir) */
    align-items: center;       /* Alinha os itens verticalmente ao centro */
    gap: 15px;                 
    
    /* Remove a animação do container */
    animation: none; 
}

/* --- 1. Balão de Mensagem --- */
.whatsapp-callout {
    /* Estilo do balão permanece o mesmo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    
    background: #fff;
    color: var(--text-dark);
    border-radius: 25px 0px 25px 25px;
    padding: 5px 20px 5px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); 
    transition: background 0.3s;
    
    animation: none; /* Garante que o balão não pulse */
}

.whatsapp-callout-icon {
    /* Imagem do balão */
    display: block;
    height: 30px;
    width: auto;
    margin: 5px 15px 0 0;
    padding: 0;
}

.whatsapp-callout-text {
    margin: 0;
    font-weight: bold;
    white-space: nowrap;
}

/* --- 2. Ícone do WhatsApp (Círculo Verde) --- */
.whatsapp-float {
    /* Estilo do círculo verde */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* NOVO: Aplica a animação APENAS ao ícone */
    animation: pulse 2s infinite; 
}
.whatsapp-float:hover {
    background-color: #128c7e;
    animation: none; /* Remove a pulsação no hover */
}

/* --- DEFINIÇÃO DA ANIMAÇÃO DE PULSAÇÃO (APLICADA AO CONJUNTO) --- */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Reduz a animação em telas menores */
@media (max-width: 768px) {
    .whatsapp-full-link {
        right: 20px;
        bottom: 20px;
    }
}

/* Definição da Animação de Salto */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}
/* --- Aviso de Cookies --- */
.cookies-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.5s ease-in-out;
}
.cookies-notification-hidden {
    transform: translateY(100%);
}
.cookies-notification-in {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}
.cookies-notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cookies-notification-content p {
    margin: 0;
    font-size: 0.9rem;
}
.cookies-notification-content a {
    color: rgb(0, 89, 255);
    text-decoration: underline;
}
.cookies-notification-bt {
    background-color: #fff;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookies-notification-in {
        flex-direction: column;
    }
    .cookies-notification-content {
        flex-direction: column;
        text-align: center;
    }
}