.elementor-875 .elementor-element.elementor-element-3fe636c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:100px;--margin-bottom:100px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0e63970 */.icone-faleconosco{
            width: 20px;
        }


/* Container Principal */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideInRight 0.5s ease-out;
}

/* Título "Fale Conosco" */
.title-wpp {
    display: flex;
    text-align: right;
    gap: 6px;
    font-size: 1.25rem;
    font-weight: 500!;
    background: #000;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 0.6s 
    ease-out;
    margin-bottom: 4px;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

/* Container dos Botões */
.buttons-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

/* Base dos Botões */
.btn-wpp {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* Botão Primário (Azul) */
.btn-primary-wpp {
    background: linear-gradient(135deg, #2babe2, #3dbef0);
}

.btn-primary-wpp:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 40px -15px rgba(43, 171, 226, 0.5);
}

/* Botão Secundário (Laranja) */
.btn-secondary-wpp {
    background: linear-gradient(135deg, #ff6610, #ff7a2e);
}

.btn-secondary-wpp:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 40px -15px rgba(255, 102, 16, 0.5);
}

/* Ícone */
.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-wpp:hover .icon {
    animation: bounceGentle 2s ease-in-out infinite;
}

/* Texto dos botões */
.btn-text {
    display: inline;
}

.btn-text-mobile {
    display: none;
}

/* Animações */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceGentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Efeito de clique */
.btn-wpp:active {
    transform: scale(0.98);
}

/* Responsivo - Tablets */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .title-wpp {
        font-size: 1.125rem;
    }
    
    .buttons-container {
        flex-direction: column;
    }

    .btn-wpp {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .btn-text {
        display: none;
    }

    .btn-text-mobile {
        display: inline;
    }
}

/* Responsivo - Mobile */
@media (max-width: 480px) {
    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }
    
    .title-wpp {
        font-size: 1rem;
    }
    
    .buttons-container {
        gap: 10px;
    }

    .btn-wpp {
        padding: 12px 16px;
        font-size: 0.875rem;
        gap: 8px;
        float: right;
    }

    .icon {
        width: 18px;
        height: 18px;
    }
}/* End custom CSS */