.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-53d8e62:#5CDFE5;--e-global-color-3bb4b4e:#527FE4;--e-global-color-740fac2:#141414;--e-global-color-bd1c6d1:#FFFFFF;--e-global-typography-primary-font-family:"Merriweather Sans";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Merriweather";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Merriweather Sans";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Merriweather Sans";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Estilo para o header fixo - aplique esta classe ao container do header */
.sticky-header {
    /* Configuração inicial */
    position: -webkit-sticky; /* Para suporte Safari */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000; /* Garante que o header fique acima dos outros elementos */
    transition: all 0.3s ease; /* Transição suave para todos os efeitos */
    background-color: #ffffff; /* Cor de fundo do header */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0); /* Sombra inicialmente invisível */
}

/* Classe adicionada via JavaScript quando o usuário rola a página */
.sticky-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra suave quando fixo */
    background-color: rgba(255, 255, 255, 0.95); /* Fundo levemente transparente */
    padding-top: 10px; /* Ajusta o padding quando fixo */
    padding-bottom: 10px;
}

/* Adiciona compatibilidade com dispositivos móveis */
@media (max-width: 767px) {
    .sticky-header {
        padding: 5px 15px; /* Padding menor em dispositivos móveis */
    }
    
    .sticky-header.scrolled {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}


/* Estilos do botão WhatsApp */
        .whatsapp-button {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25D366; /* Cor oficial do WhatsApp */
            border-radius: 50px;
            text-align: center;
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        /* Efeito de hover */
        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
            background-color: #20c05b; /* Cor um pouco mais escura no hover */
        }
        
        /* Efeito de clique */
        .whatsapp-button:active {
            transform: scale(0.9);
            background-color: #18a54a; /* Cor ainda mais escura ao clicar */
        }
        
        /* Ícone do WhatsApp */
        .whatsapp-icon {
            margin: auto;
            width: 34px;
            height: 34px;
            fill: #fff;
        }
        
        /* Balão de texto */
        .whatsapp-tooltip {
            position: absolute;
            right: 75px;
            background-color: white;
            color: #333;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 14px;
            white-space: nowrap;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        /* Seta do balão */
        .whatsapp-tooltip:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent white;
        }
        
        /* Mostrar tooltip no hover */
        .whatsapp-button:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Animação de pulso */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        .whatsapp-button {
            animation: pulse 2s infinite;
        }/* End custom CSS */