.elementor-1604 .elementor-element.elementor-element-a650bdf{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1dc2ff9 *//* ✅ ESCONDE ELEMENTOS INICIALMENTE - SEM CONFLITOS */
.whatsapp-banner,
.whatsapp-float-button {
    opacity: 0 !important;
    visibility: hidden !important;
}

.chat-widget {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important; /* ✅ ADICIONE ESTA LINHA */
}

/* Reset para isolar completamente o widget */
.chat-widget,
.chat-widget *,
.whatsapp-float-button,
.whatsapp-banner {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
    font-weight: 400 !important;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float-button {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25D366 0%, #20C056 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease !important;
    z-index: 9998 !important;
    animation: pulse 2s infinite !important;
    border: none !important;
}

.whatsapp-float-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6) !important;
}

.whatsapp-float-button svg {
    width: 32px !important;
    height: 32px !important;
    fill: white !important;
}

/* Faixa "Consulte agora sobre o seu caso" */
.whatsapp-banner {
    position: fixed !important;
    bottom: 30px !important;
    right: 90px !important;
    background: #0B6156 !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
    box-shadow: 0 4px 15px rgba(11, 97, 86, 0.3) !important;
    z-index: 9997 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    max-width: 200px !important;
    text-align: center !important;
    line-height: 1.2 !important;
    display: block !important;
    border: none !important;
}

.whatsapp-banner.show {
    animation: slideInFromLeft 0.8s ease-out !important;
}

.whatsapp-banner:hover {
    background: #0a5549 !important;
    transform: translateX(-5px) !important;
}

.whatsapp-banner::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    right: -8px !important;
    transform: translateY(-50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 8px solid #0B6156 !important;
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
}

.whatsapp-banner:hover::after {
    border-left-color: #0a5549 !important;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important; }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7) !important; }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important; }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0 !important;
        transform: translateX(-20px) !important;
    }
    to {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

/* Widget do chat */
.chat-widget {
    position: fixed !important;
    bottom: 90px !important;
    right: 20px !important;
    width: 350px !important;
    max-height: 520px !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    z-index: 9999 !important;
    transform: translateY(20px) scale(0.9) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
    display: flex !important;
    flex-direction: column !important;
    border: none !important;
}

.chat-widget.show {
    display: flex !important;
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Resto do CSS igual... */
.chat-header {
    background: #0B6156 !important;
    color: white !important;
    padding: 16px 20px !important;
    border-radius: 12px 12px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-shrink: 0 !important;
}

.chat-header-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.chat-avatar {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    overflow: hidden !important;
}

.chat-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

.chat-header-text h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
}

.chat-status {
    font-size: 12px !important;
    opacity: 0.9 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
}

.status-dot {
    width: 6px !important;
    height: 6px !important;
    background: #4CAF50 !important;
    border-radius: 50% !important;
}

.chat-close {
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    padding: 4px !important;
    border-radius: 4px !important;
    transition: background 0.2s !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.chat-body {
    padding: 12px 16px 16px 16px !important;
    overflow: hidden !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    max-height: calc(520px - 72px) !important;
}

.chat-message {
    background: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 10px !important;
    margin-bottom: 12px !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    color: #333 !important;
    flex-shrink: 0 !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
}

.chat-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    flex: 1 !important;
    min-height: 0 !important;
}

.form-input {
    padding: 10px 12px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
    font-weight: 400 !important;
    transition: border-color 0.3s ease !important;
    background: white !important;
    outline: none !important;
}

.form-input:focus {
    border-color: #C8A36D !important;
}

.form-input::placeholder {
    color: #999 !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
}

.phone-input {
    display: flex !important;
    gap: 8px !important;
}

.phone-flag {
    width: 65px !important;
    padding: 10px 6px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8f9fa !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #333 !important;
    text-align: center !important;
    line-height: 1 !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
}

.phone-number {
    flex: 1 !important;
}

.form-textarea {
    min-height: 60px !important;
    resize: vertical !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
}

.chat-send-button {
    background: linear-gradient(135deg, #25D366 0%, #20C056 100%) !important;
    color: white !important;
    border: none !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Lato', 'Lato Regular', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 2px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    min-height: 40px !important;
}

.chat-send-button:hover {
    background: linear-gradient(135deg, #20C056 0%, #1da049 100%) !important;
    transform: translateY(-1px) !important;
}

.chat-send-button svg {
    width: 16px !important;
    height: 16px !important;
    fill: white !important;
}

.form-input.error {
    border-color: #e74c3c !important;
}

.loading .chat-send-button {
    background: #ccc !important;
    cursor: not-allowed !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .chat-widget {
        width: calc(100% - 40px) !important;
        right: 20px !important;
        left: 20px !important;
        bottom: 90px !important;
        max-height: 480px !important;
    }

    .chat-body {
        max-height: calc(480px - 72px) !important;
    }

    .whatsapp-float-button {
        bottom: 20px !important;
        right: 20px !important;
    }

    .whatsapp-banner {
        bottom: 25px !important;
        right: 85px !important;
        font-size: 13px !important;
        padding: 12px 18px !important;
        max-width: 180px !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

@media (max-width: 480px) {
    .chat-widget {
        width: calc(100% - 20px) !important;
        right: 10px !important;
        left: 10px !important;
        bottom: 80px !important;
        max-height: 420px !important;
    }

    .chat-body {
        max-height: calc(420px - 72px) !important;
        padding: 10px 12px 12px 12px !important;
    }

    .form-textarea {
        min-height: 50px !important;
    }

    .whatsapp-float-button {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    .whatsapp-float-button svg {
        width: 28px !important;
        height: 28px !important;
    }

    .whatsapp-banner {
        bottom: 20px !important;
        right: 70px !important;
        font-size: 12px !important;
        padding: 10px 14px !important;
        max-width: 150px !important;
        border-radius: 20px !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
}

/* ✅ MOBILE MUITO PEQUENO */
@media (max-width: 360px) {
    .whatsapp-banner {
        font-size: 11px !important;
        padding: 8px 12px !important;
        max-width: 130px !important;
        right: 65px !important;
    }
}/* End custom CSS */