        /* Atendimento por I.A. */
        .aumodal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            animation: fadeIn 0.3s ease;
        }

        .aumodal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .aumodal-content {
            position: relative;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            max-width: 90%;
            max-height: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            animation: slideIn 0.3s ease;
        }

        .auclose-btn {
            position: absolute;
            top: -40px;
            right: 0;
            color: #fff;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .auclose-btn:hover {
            transform: scale(1.1);
        }
