        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        /* ============================================
           BOTÃO FLUTUANTE WHATSAPP
           ============================================ */

        .whatsapp-floating-container {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 9999;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .whatsapp-main-button {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #ffffff; /* Fundo branco para o botão */
            border: 12px solid #25d366; /* Borda verde ainda mais grossa conforme solicitado */
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Sombra sutil para destaque */
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            outline: none;
        }

        .whatsapp-main-button:hover {
            border-color: #1a8e47; /* Verde mais escuro no hover */
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
        }

        .whatsapp-main-button:active {
            transform: scale(0.95);
        }

        .whatsapp-main-button.active {
            background: #f0f0f0; /* Fundo cinza claro quando ativo */
            transform: rotate(0deg); /* Desativa a rotação do botão principal */
        }

        .whatsapp-button-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 2;
        }

        .whatsapp-icon {
            color: #25d366; /* Ícone verde para contraste em fundo branco */
            width: 32px;
            height: 32px;
            transition: transform 0.3s ease;
            stroke-width: 1.5;
        }

        .whatsapp-main-button.active .whatsapp-icon {
            transform: rotate(0deg); /* Desativa a rotação do ícone */
        }

        /* Efeito de Pulso Externo */
        .whatsapp-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180%;
            height: 180%;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.4); /* Efeito de pulso restaurado e mais visível */
            animation: pulse-animation 2s infinite;
            pointer-events: none;
        }

        @keyframes pulse-animation {
            0% {
                transform: translate(-50%, -50%) scale(0.9);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(3.0);
                opacity: 0;
            }
        }

        /* Animação de Pulinhos */
        @keyframes bounce-animation {
            0%, 100% {
                transform: translateY(0);
            }
            25% {
                transform: translateY(-8px);
            }
            50% {
                transform: translateY(0);
            }
            75% {
                transform: translateY(-4px);
            }
        }

        .whatsapp-main-button:not(.active) {
            animation: bounce-animation 2.5s infinite;
        }

        .whatsapp-main-button.active {
            animation: none;
        }

        .whatsapp-main-button.active .whatsapp-pulse {
            animation: none;
            background: transparent;
        }

        /* Badge de Notificação */
        .whatsapp-badge {
            position: absolute;
            top: -20px; /* Subindo mais o badge */
            right: -18px;
            background: linear-gradient(135deg, #ff4757 0%, #ee5a6f 100%);
            border-radius: 50%;
            width: 24px; /* Diminuindo o tamanho */
            height: 24px; /* Diminuindo o tamanho */
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(255, 71, 87, 0.5);
            animation: badge-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 100;
            border: 2px solid white; /* Borda mais fina para o novo tamanho */
            font-weight: 700;
            font-size: 11px; /* Fonte menor para o novo tamanho */
            color: white;
        }

        @keyframes badge-pop {
            0% {
                transform: scale(0) rotate(-30deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.2) rotate(10deg);
            }
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        /* Menu de Opções */
        .whatsapp-menu {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: #ffffff; /* Fundo branco sólido para mais nitidez */
            border-radius: 16px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3); /* Sombra mais forte para destaque */
            overflow: hidden;
            min-width: 280px;
            animation: menu-slide-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            backdrop-filter: blur(10px);
            border: 1px solid #ddd; /* Borda sutil para definir o limite */
        }

        /* Cabeçalho do Menu */
        .whatsapp-menu-header {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
	        background: #25d366; /* Fundo verde vibrante do WhatsApp para o cabeçalho */
        }

        .whatsapp-menu-title {
            font-size: 13px;
            font-weight: 600;
	        color: #ffffff; /* Cor branca para contraste no fundo verde */
            margin: 0;
        }

        .whatsapp-menu-close {
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff; /* Cor branca para o ícone de fechar */
            transition: all 0.2s ease;
            outline: none;
        }

        .whatsapp-menu-close:hover {
            color: #f0f0f0; /* Cor de hover mais clara no fundo verde */
            transform: rotate(90deg);
        }

        .whatsapp-menu-close:active {
            transform: rotate(90deg) scale(0.9);
        }

        .whatsapp-close-icon {
            width: 18px;
            height: 18px;
            stroke-width: 2.5;
        }

        @keyframes menu-slide-up {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .whatsapp-menu-item {
            width: 100%;
            padding: 16px;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            outline: none;
            text-align: left;
        }

        .whatsapp-menu-item:last-child {
            border-bottom: none;
        }

	        .whatsapp-menu-item:hover {
	            border-left: 4px solid #25d366; /* Borda verde para destaque no hover */
	        background: #eef4f8; /* Fundo de hover mais neutro */
        }

        .whatsapp-menu-item:active {
	        background: #e0e6eb; /* Cor de fundo suave no active dos itens */
            transform: scale(0.98);
        }

        .menu-item-content {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .menu-item-icon {
	        font-size: 40px; /* Ícones maiores */
            line-height: 1;
            flex-shrink: 0;
        }

        .menu-item-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .menu-item-title {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.2;
        }

        .menu-item-description {
            margin: 0;
            font-size: 12px;
            color: #888;
            line-height: 1.2;
        }

        .menu-item-arrow {
            color: #25d366;
	        font-size: 24px; /* Seta ainda maior */
            font-weight: 600;
            margin-left: 8px;
            transition: transform 0.2s ease;
        }

        .whatsapp-menu-item:hover .menu-item-arrow {
	            transform: translateX(8px); /* Efeito de movimento mais perceptível */
        }

        /* ============================================
           RESPONSIVO
           ============================================ */

        @media (max-width: 768px) {
            .whatsapp-floating-container {
                bottom: 1.5rem;
                right: 1.5rem;
            }

            .whatsapp-main-button {
                width: 56px;
                height: 56px;
            }

            .whatsapp-icon {
                width: 26px;
                height: 26px;
            }

            .whatsapp-badge {
                width: 24px;
                height: 24px;
                top: -20px;
                right: -18px;
                border-width: 2px;
                font-size: 11px;
            }

            .whatsapp-menu {
                min-width: 260px;
                bottom: 70px;
            }

            .menu-item-content {
                gap: 10px;
            }

            .menu-item-icon {
                font-size: 20px;
            }

            .menu-item-title {
                font-size: 13px;
            }

            .menu-item-description {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-floating-container {
                bottom: 1rem;
                right: 1rem;
            }

            .whatsapp-main-button {
                width: 52px;
                height: 52px;
            }

            .whatsapp-icon {
                width: 24px;
                height: 24px;
            }

            .whatsapp-badge {
                width: 24px;
                height: 24px;
                top: -20px;
                right: -18px;
                border-width: 2px;
                font-size: 10px;
            }

            .whatsapp-menu {
                min-width: 240px;
                bottom: 65px;
                right: -10px;
            }

            .menu-item-content {
                gap: 8px;
            }

            .menu-item-icon {
                font-size: 18px;
            }

            .menu-item-title {
                font-size: 12px;
            }

            .menu-item-description {
                font-size: 10px;
            }

            .menu-item-arrow {
                font-size: 14px;
            }

            .whatsapp-menu-item {
                padding: 12px;
            }

            .container {
                padding: 20px;
            }

            h1 {
                font-size: 22px;
            }
        }

        @media (max-width: 320px) {
            .whatsapp-floating-container {
                bottom: 0.75rem;
                right: 0.75rem;
            }

            .whatsapp-main-button {
                width: 48px;
                height: 48px;
            }

            .whatsapp-icon {
                width: 22px;
                height: 22px;
            }

            .whatsapp-menu {
                min-width: 220px;
                bottom: 60px;
                right: -15px;
            }

            .menu-item-title {
                font-size: 11px;
            }

            .menu-item-description {
                font-size: 9px;
            }
        }

        /* Acessibilidade */
        .whatsapp-main-button:focus-visible,
        .whatsapp-menu-item:focus-visible {
            outline: 2px solid #25d366;
            outline-offset: 2px;
        }

        /* Modo Escuro */
        @media (prefers-color-scheme: dark) {
            .whatsapp-menu {
                background: #1e1e1e;
                border-color: rgba(255, 255, 255, 0.1);
            }

            .menu-item-title {
                color: #f0f0f0;
            }

            .menu-item-description {
                color: #999;
            }

            .whatsapp-menu-item:hover {
                background: rgba(37, 211, 102, 0.12);
            }

            .whatsapp-menu-item:active {
                background: rgba(37, 211, 102, 0.18);
            }
        }

        /* Reduzir Movimento */
        @media (prefers-reduced-motion: reduce) {
            .whatsapp-main-button,
            .whatsapp-menu,
            .whatsapp-menu-item,
            .whatsapp-badge,
            .whatsapp-menu-close {
                animation: none;
                transition: none;
            }

            .whatsapp-pulse {
                display: none;
            }
        }