/*
	Theme Name: Rankup Local SEO
	Theme URI: https://rankup.com.br/
	Description: Tema WordPress ultraotimizado para SEO local. Debloat completo do WP e Elementor, schema JSON-LD, variáveis dinâmicas e performance máxima. Construído para uso com Elementor.
	Author: Lucas Oliveira
	Author URI: https://rankup.com.br/
	Template: hello-elementor
	Version: 1.0.1
	Stable tag: 1.0.1
	Requires at least: 6.0
	Tested up to: 6.7
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: elementor, seo, local-business, lightweight, debloat
*/

/* O CSS customizado pode ser colocado aqui se não estiver usando o Elementor Global Styles */

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */

.rankup-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.rankup-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.rankup-whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

@media screen and (max-width: 768px) {
    .rankup-whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    .rankup-whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}