/* 
Theme Name: Max Mohr
Theme URI: https://maxmohr.com.br
Description: Tema personalizado para o Site da Max Mohr
Author: Felipe Simas
Author URI: https://felipesimas.com.br/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
html,
body {
    overflow-x: hidden !important;
}

/* ============================================================
   WhatsApp Floating Button
   ============================================================ */
.whatsapp-floater {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-floater__icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.whatsapp-floater__icon {
    width: 35px;
    height: 35px;
    color: #fff;
    fill: currentColor;
}

.whatsapp-floater__tooltip {
    background-color: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    order: -1;
    /* Display before icon */
}

/* Hover Effects */
.whatsapp-floater:hover {
    transform: scale(1.05);
}

.whatsapp-floater:hover .whatsapp-floater__tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-floater:hover .whatsapp-floater__icon-wrapper {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Pulsing effect */
.whatsapp-floater__icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-floater {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-floater__icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .whatsapp-floater__icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-floater__tooltip {
        display: none;
        /* Hide tooltip on mobile to save space */
    }
}